From bec719e809b5ff5be3706c7c851437273e56c332 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Sun, 20 Aug 2023 20:48:30 -0700 Subject: [PATCH 01/18] V2.1rc (#4) * change to README * update README * frozen versions for v2 * frozen requirements, ISLP==0.3.19 * v2.1 notebooks excluding 10,13 * v2.1 of Ch13 * pairing notebooks * v2.1 of Ch10 * update README for v2.1 * update README * remove workflows: notebooks can be tested in ISLP --- .github/workflows/test_Ch02.yml | 40 - .github/workflows/test_Ch03.yml | 40 - .github/workflows/test_Ch04.yml | 40 - .github/workflows/test_Ch05.yml | 40 - .github/workflows/test_Ch06.yml | 40 - .github/workflows/test_Ch07.yml | 40 - .github/workflows/test_Ch08.yml | 40 - .github/workflows/test_Ch09.yml | 40 - .github/workflows/test_Ch10.yml | 40 - .github/workflows/test_Ch11.yml | 40 - .github/workflows/test_Ch12.yml | 40 - .github/workflows/test_Ch13.yml | 40 - Ch02-statlearn-lab.ipynb | 1472 +++++++++++++++---------------- Ch03-linreg-lab.Rmd | 6 +- Ch03-linreg-lab.ipynb | 469 +++++----- Ch04-classification-lab.Rmd | 2 +- Ch04-classification-lab.ipynb | 1110 +++++++++++------------ Ch05-resample-lab.Rmd | 4 +- Ch05-resample-lab.ipynb | 326 +++---- Ch06-varselect-lab.Rmd | 4 +- Ch06-varselect-lab.ipynb | 704 +++++++-------- Ch07-nonlin-lab.Rmd | 3 +- Ch07-nonlin-lab.ipynb | 599 +++++++------ Ch08-baggboost-lab.ipynb | 450 +++++----- Ch09-svm-lab.ipynb | 418 ++++----- Ch10-deeplearning-lab.Rmd | 19 +- Ch10-deeplearning-lab.ipynb | 827 +++++++++-------- Ch11-surv-lab.ipynb | 420 ++++----- Ch12-unsup-lab.Rmd | 4 +- Ch12-unsup-lab.ipynb | 708 +++++++-------- Ch13-multiple-lab.Rmd | 5 +- Ch13-multiple-lab.ipynb | 388 ++++---- README.md | 8 +- requirements.txt | 33 +- 34 files changed, 3978 insertions(+), 4481 deletions(-) delete mode 100644 .github/workflows/test_Ch02.yml delete mode 100644 .github/workflows/test_Ch03.yml delete mode 100644 .github/workflows/test_Ch04.yml delete mode 100644 .github/workflows/test_Ch05.yml delete mode 100644 .github/workflows/test_Ch06.yml delete mode 100644 .github/workflows/test_Ch07.yml delete mode 100644 .github/workflows/test_Ch08.yml delete mode 100644 .github/workflows/test_Ch09.yml delete mode 100644 .github/workflows/test_Ch10.yml delete mode 100644 .github/workflows/test_Ch11.yml delete mode 100644 .github/workflows/test_Ch12.yml delete mode 100644 .github/workflows/test_Ch13.yml diff --git a/.github/workflows/test_Ch02.yml b/.github/workflows/test_Ch02.yml deleted file mode 100644 index dfcce44..0000000 --- a/.github/workflows/test_Ch02.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch02 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch02 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch02-statlearn-lab.ipynb --allow-errors - - diff --git a/.github/workflows/test_Ch03.yml b/.github/workflows/test_Ch03.yml deleted file mode 100644 index d4022ce..0000000 --- a/.github/workflows/test_Ch03.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch03 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch03 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch03*ipynb - - diff --git a/.github/workflows/test_Ch04.yml b/.github/workflows/test_Ch04.yml deleted file mode 100644 index b148d82..0000000 --- a/.github/workflows/test_Ch04.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch04 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch04 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch04*ipynb - - diff --git a/.github/workflows/test_Ch05.yml b/.github/workflows/test_Ch05.yml deleted file mode 100644 index 2b01551..0000000 --- a/.github/workflows/test_Ch05.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch05 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch05 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch05*ipynb - - diff --git a/.github/workflows/test_Ch06.yml b/.github/workflows/test_Ch06.yml deleted file mode 100644 index 3ed430c..0000000 --- a/.github/workflows/test_Ch06.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch06 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch06 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch06*ipynb - - diff --git a/.github/workflows/test_Ch07.yml b/.github/workflows/test_Ch07.yml deleted file mode 100644 index d87d848..0000000 --- a/.github/workflows/test_Ch07.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch07 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch07 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch07*ipynb - - diff --git a/.github/workflows/test_Ch08.yml b/.github/workflows/test_Ch08.yml deleted file mode 100644 index 2b7e77b..0000000 --- a/.github/workflows/test_Ch08.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch08 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch08 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch08*ipynb - - diff --git a/.github/workflows/test_Ch09.yml b/.github/workflows/test_Ch09.yml deleted file mode 100644 index e88a6ff..0000000 --- a/.github/workflows/test_Ch09.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch09 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch09 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch09*ipynb - - diff --git a/.github/workflows/test_Ch10.yml b/.github/workflows/test_Ch10.yml deleted file mode 100644 index ce97c12..0000000 --- a/.github/workflows/test_Ch10.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch10 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch10 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch10*ipynb - - diff --git a/.github/workflows/test_Ch11.yml b/.github/workflows/test_Ch11.yml deleted file mode 100644 index a2a4ee2..0000000 --- a/.github/workflows/test_Ch11.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch11 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch11 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch11*ipynb - - diff --git a/.github/workflows/test_Ch12.yml b/.github/workflows/test_Ch12.yml deleted file mode 100644 index f231523..0000000 --- a/.github/workflows/test_Ch12.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch12 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch12 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch12*ipynb - - diff --git a/.github/workflows/test_Ch13.yml b/.github/workflows/test_Ch13.yml deleted file mode 100644 index 77ff83d..0000000 --- a/.github/workflows/test_Ch13.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Building Ch13 notebook - -# Controls when the workflow will run -on: - workflow_dispatch: - environment: - description: 'Environment to run tests against' - type: environment - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 - with: - python-version: '3.10' - cache: 'pip' - - # Install - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install ISLP jupyter - - # Runs a set of commands using the runners shell - - name: Build notebook for Ch13 (some errors, not really a test) - run: | - jupyter nbconvert --execute --inplace Ch13*ipynb - - diff --git a/Ch02-statlearn-lab.ipynb b/Ch02-statlearn-lab.ipynb index a848367..f137f1c 100644 --- a/Ch02-statlearn-lab.ipynb +++ b/Ch02-statlearn-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "4a4000ea", + "id": "245f0c86", "metadata": {}, "source": [ "\n", @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "ca503bf1", + "id": "5ab29948", "metadata": {}, "source": [ "## Getting Started" @@ -22,7 +22,7 @@ }, { "cell_type": "markdown", - "id": "4d90d49a", + "id": "ed622870", "metadata": {}, "source": [ "To run the labs in this book, you will need two things:\n", @@ -33,7 +33,7 @@ }, { "cell_type": "markdown", - "id": "c05e9a74", + "id": "844d37fc", "metadata": {}, "source": [ "You can download and install `Python3` by following the instructions available at [anaconda.com](http://anaconda.com). " @@ -41,7 +41,7 @@ }, { "cell_type": "markdown", - "id": "a4fa6a12", + "id": "462ff1fe", "metadata": {}, "source": [ " There are a number of ways to get access to `Jupyter`. Here are just a few:\n", @@ -63,7 +63,7 @@ }, { "cell_type": "markdown", - "id": "fb245ea1", + "id": "b46f9182", "metadata": {}, "source": [ "## Basic Commands\n" @@ -71,7 +71,7 @@ }, { "cell_type": "markdown", - "id": "df72fe8e", + "id": "54060fd9", "metadata": {}, "source": [ "In this lab, we will introduce some simple `Python` commands. \n", @@ -83,7 +83,7 @@ }, { "cell_type": "markdown", - "id": "713233e6", + "id": "d3dbd0e9", "metadata": {}, "source": [ "Like most programming languages, `Python` uses *functions*\n", @@ -99,13 +99,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "3e6aae64", + "id": "9e8aa21f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.279506Z", - "iopub.status.busy": "2023-08-15T18:48:57.279285Z", - "iopub.status.idle": "2023-08-15T18:48:57.289471Z", - "shell.execute_reply": "2023-08-15T18:48:57.289054Z" + "iopub.execute_input": "2023-08-21T03:36:04.654555Z", + "iopub.status.busy": "2023-08-21T03:36:04.654242Z", + "iopub.status.idle": "2023-08-21T03:36:04.664431Z", + "shell.execute_reply": "2023-08-21T03:36:04.663990Z" } }, "outputs": [ @@ -123,7 +123,7 @@ }, { "cell_type": "markdown", - "id": "790e89ef", + "id": "27d935f8", "metadata": {}, "source": [ " The following command will provide information about the `print()` function." @@ -132,13 +132,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "086066fd", + "id": "d62ec119", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.292564Z", - "iopub.status.busy": "2023-08-15T18:48:57.292381Z", - "iopub.status.idle": "2023-08-15T18:48:57.319543Z", - "shell.execute_reply": "2023-08-15T18:48:57.319262Z" + "iopub.execute_input": "2023-08-21T03:36:04.666908Z", + "iopub.status.busy": "2023-08-21T03:36:04.666727Z", + "iopub.status.idle": "2023-08-21T03:36:04.693658Z", + "shell.execute_reply": "2023-08-21T03:36:04.693389Z" } }, "outputs": [], @@ -148,7 +148,7 @@ }, { "cell_type": "markdown", - "id": "1519b474", + "id": "04b3e2a3", "metadata": {}, "source": [ "Adding two integers in `Python` is pretty intuitive." @@ -157,13 +157,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "cb86e827", + "id": "c64e9f4d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.321132Z", - "iopub.status.busy": "2023-08-15T18:48:57.321031Z", - "iopub.status.idle": "2023-08-15T18:48:57.324040Z", - "shell.execute_reply": "2023-08-15T18:48:57.323786Z" + "iopub.execute_input": "2023-08-21T03:36:04.695168Z", + "iopub.status.busy": "2023-08-21T03:36:04.695071Z", + "iopub.status.idle": "2023-08-21T03:36:04.697996Z", + "shell.execute_reply": "2023-08-21T03:36:04.697736Z" } }, "outputs": [ @@ -184,7 +184,7 @@ }, { "cell_type": "markdown", - "id": "995ac4a8", + "id": "cd754cba", "metadata": {}, "source": [ "In `Python`, textual data is handled using\n", @@ -197,13 +197,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "f4d45d80", + "id": "9abccc1f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.325425Z", - "iopub.status.busy": "2023-08-15T18:48:57.325349Z", - "iopub.status.idle": "2023-08-15T18:48:57.327462Z", - "shell.execute_reply": "2023-08-15T18:48:57.327221Z" + "iopub.execute_input": "2023-08-21T03:36:04.699502Z", + "iopub.status.busy": "2023-08-21T03:36:04.699420Z", + "iopub.status.idle": "2023-08-21T03:36:04.701419Z", + "shell.execute_reply": "2023-08-21T03:36:04.701183Z" } }, "outputs": [ @@ -224,7 +224,7 @@ }, { "cell_type": "markdown", - "id": "54a86535", + "id": "c28db903", "metadata": {}, "source": [ " A string is actually a type of *sequence*: this is a generic term for an ordered list. \n", @@ -234,7 +234,7 @@ }, { "cell_type": "markdown", - "id": "f2cd64af", + "id": "5fdcc5a1", "metadata": {}, "source": [ "The following command instructs `Python` to join together\n", @@ -246,13 +246,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "e386aff9", + "id": "802ca33c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.328950Z", - "iopub.status.busy": "2023-08-15T18:48:57.328870Z", - "iopub.status.idle": "2023-08-15T18:48:57.331048Z", - "shell.execute_reply": "2023-08-15T18:48:57.330802Z" + "iopub.execute_input": "2023-08-21T03:36:04.702877Z", + "iopub.status.busy": "2023-08-21T03:36:04.702786Z", + "iopub.status.idle": "2023-08-21T03:36:04.704849Z", + "shell.execute_reply": "2023-08-21T03:36:04.704596Z" } }, "outputs": [ @@ -274,7 +274,7 @@ }, { "cell_type": "markdown", - "id": "185fdcfa", + "id": "5492ecd1", "metadata": {}, "source": [ "Note that we used the brackets\n", @@ -287,13 +287,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "f81b1212", + "id": "a8c72744", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.332609Z", - "iopub.status.busy": "2023-08-15T18:48:57.332515Z", - "iopub.status.idle": "2023-08-15T18:48:57.334649Z", - "shell.execute_reply": "2023-08-15T18:48:57.334387Z" + "iopub.execute_input": "2023-08-21T03:36:04.706312Z", + "iopub.status.busy": "2023-08-21T03:36:04.706207Z", + "iopub.status.idle": "2023-08-21T03:36:04.708359Z", + "shell.execute_reply": "2023-08-21T03:36:04.708116Z" } }, "outputs": [ @@ -315,7 +315,7 @@ }, { "cell_type": "markdown", - "id": "f421a679", + "id": "8f42ea1d", "metadata": {}, "source": [ "The result may appear slightly counterintuitive: why did `Python` not add the entries of the lists\n", @@ -327,7 +327,7 @@ }, { "cell_type": "markdown", - "id": "911db9e2", + "id": "69015df5", "metadata": {}, "source": [ "This example reflects the fact that \n", @@ -340,7 +340,7 @@ }, { "cell_type": "markdown", - "id": "2045f04d", + "id": "16bfc4a2", "metadata": {}, "source": [ "## Introduction to Numerical Python\n", @@ -352,7 +352,7 @@ }, { "cell_type": "markdown", - "id": "b4ef08ea", + "id": "f5bed3f0", "metadata": {}, "source": [ " To access `numpy`, we must first `import` it." @@ -361,13 +361,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "13739a14", + "id": "f1c7d1db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.336173Z", - "iopub.status.busy": "2023-08-15T18:48:57.336085Z", - "iopub.status.idle": "2023-08-15T18:48:57.487183Z", - "shell.execute_reply": "2023-08-15T18:48:57.486459Z" + "iopub.execute_input": "2023-08-21T03:36:04.709873Z", + "iopub.status.busy": "2023-08-21T03:36:04.709781Z", + "iopub.status.idle": "2023-08-21T03:36:04.767425Z", + "shell.execute_reply": "2023-08-21T03:36:04.766663Z" }, "lines_to_next_cell": 0 }, @@ -378,7 +378,7 @@ }, { "cell_type": "markdown", - "id": "587207d9", + "id": "5c8614e7", "metadata": {}, "source": [ "In the previous line, we named the `numpy` *module* `np`; an abbreviation for easier referencing." @@ -386,7 +386,7 @@ }, { "cell_type": "markdown", - "id": "c485aeb9", + "id": "ba1224a6", "metadata": {}, "source": [ "In `numpy`, an *array* is a generic term for a multidimensional\n", @@ -397,13 +397,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "f3f62d0a", + "id": "e2ea2bfd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.492222Z", - "iopub.status.busy": "2023-08-15T18:48:57.491645Z", - "iopub.status.idle": "2023-08-15T18:48:57.497340Z", - "shell.execute_reply": "2023-08-15T18:48:57.496428Z" + "iopub.execute_input": "2023-08-21T03:36:04.772015Z", + "iopub.status.busy": "2023-08-21T03:36:04.771631Z", + "iopub.status.idle": "2023-08-21T03:36:04.777911Z", + "shell.execute_reply": "2023-08-21T03:36:04.777302Z" }, "lines_to_next_cell": 0 }, @@ -415,7 +415,7 @@ }, { "cell_type": "markdown", - "id": "d5e7e5e3", + "id": "a977e05a", "metadata": {}, "source": [ "Note that if you forgot to run the `import numpy as np` command earlier, then\n", @@ -426,7 +426,7 @@ }, { "cell_type": "markdown", - "id": "5ba313c6", + "id": "742431b6", "metadata": {}, "source": [ "Since `x` and `y` have been defined using `np.array()`, we get a sensible result when we add them together. Compare this to our results in the previous section,\n", @@ -436,13 +436,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "3cff111f", + "id": "59fbf9fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.501566Z", - "iopub.status.busy": "2023-08-15T18:48:57.501206Z", - "iopub.status.idle": "2023-08-15T18:48:57.515553Z", - "shell.execute_reply": "2023-08-15T18:48:57.514659Z" + "iopub.execute_input": "2023-08-21T03:36:04.781791Z", + "iopub.status.busy": "2023-08-21T03:36:04.781430Z", + "iopub.status.idle": "2023-08-21T03:36:04.788256Z", + "shell.execute_reply": "2023-08-21T03:36:04.787586Z" }, "lines_to_next_cell": 0 }, @@ -464,7 +464,7 @@ }, { "cell_type": "markdown", - "id": "96db430f", + "id": "2ceccc2b", "metadata": {}, "source": [ " \n", @@ -473,7 +473,7 @@ }, { "cell_type": "markdown", - "id": "801647e7", + "id": "74be6d74", "metadata": {}, "source": [ "In `numpy`, matrices are typically represented as two-dimensional arrays, and vectors as one-dimensional arrays. {While it is also possible to create matrices using `np.matrix()`, we will use `np.array()` throughout the labs in this book.}\n", @@ -483,13 +483,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "30d6c7f8", + "id": "2279437e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.520927Z", - "iopub.status.busy": "2023-08-15T18:48:57.520636Z", - "iopub.status.idle": "2023-08-15T18:48:57.528716Z", - "shell.execute_reply": "2023-08-15T18:48:57.528048Z" + "iopub.execute_input": "2023-08-21T03:36:04.792995Z", + "iopub.status.busy": "2023-08-21T03:36:04.792549Z", + "iopub.status.idle": "2023-08-21T03:36:04.800387Z", + "shell.execute_reply": "2023-08-21T03:36:04.799738Z" }, "lines_to_next_cell": 0 }, @@ -513,7 +513,7 @@ }, { "cell_type": "markdown", - "id": "5df2b6c3", + "id": "f96f304d", "metadata": {}, "source": [ " \n", @@ -522,7 +522,7 @@ }, { "cell_type": "markdown", - "id": "d7804f5e", + "id": "f764f7d1", "metadata": {}, "source": [ "The object `x` has several \n", @@ -534,13 +534,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "42d49be4", + "id": "75bf1b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.532634Z", - "iopub.status.busy": "2023-08-15T18:48:57.532261Z", - "iopub.status.idle": "2023-08-15T18:48:57.543935Z", - "shell.execute_reply": "2023-08-15T18:48:57.543179Z" + "iopub.execute_input": "2023-08-21T03:36:04.804503Z", + "iopub.status.busy": "2023-08-21T03:36:04.804231Z", + "iopub.status.idle": "2023-08-21T03:36:04.810136Z", + "shell.execute_reply": "2023-08-21T03:36:04.809353Z" } }, "outputs": [ @@ -561,7 +561,7 @@ }, { "cell_type": "markdown", - "id": "765e1496", + "id": "4e3b83bf", "metadata": {}, "source": [ "The output indicates that `x` is a two-dimensional array. \n", @@ -572,13 +572,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "de32b275", + "id": "58292240", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.549690Z", - "iopub.status.busy": "2023-08-15T18:48:57.549447Z", - "iopub.status.idle": "2023-08-15T18:48:57.554487Z", - "shell.execute_reply": "2023-08-15T18:48:57.553790Z" + "iopub.execute_input": "2023-08-21T03:36:04.813981Z", + "iopub.status.busy": "2023-08-21T03:36:04.813417Z", + "iopub.status.idle": "2023-08-21T03:36:04.819511Z", + "shell.execute_reply": "2023-08-21T03:36:04.818936Z" }, "lines_to_next_cell": 0 }, @@ -600,7 +600,7 @@ }, { "cell_type": "markdown", - "id": "044bf011", + "id": "cf9cf94b", "metadata": {}, "source": [ "Why is `x` comprised of integers? This is because we created `x` by passing in exclusively integers to the `np.array()` function.\n", @@ -612,13 +612,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "528c3fa0", + "id": "fc5fff57", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.558246Z", - "iopub.status.busy": "2023-08-15T18:48:57.557892Z", - "iopub.status.idle": "2023-08-15T18:48:57.564135Z", - "shell.execute_reply": "2023-08-15T18:48:57.563353Z" + "iopub.execute_input": "2023-08-21T03:36:04.823519Z", + "iopub.status.busy": "2023-08-21T03:36:04.823222Z", + "iopub.status.idle": "2023-08-21T03:36:04.829861Z", + "shell.execute_reply": "2023-08-21T03:36:04.829223Z" }, "lines_to_next_cell": 2 }, @@ -640,7 +640,7 @@ }, { "cell_type": "markdown", - "id": "053da117", + "id": "41a79641", "metadata": {}, "source": [ "Typing `fun?` will cause `Python` to display \n", @@ -651,13 +651,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "fbf8763b", + "id": "762562a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.567429Z", - "iopub.status.busy": "2023-08-15T18:48:57.567214Z", - "iopub.status.idle": "2023-08-15T18:48:57.571774Z", - "shell.execute_reply": "2023-08-15T18:48:57.570942Z" + "iopub.execute_input": "2023-08-21T03:36:04.833747Z", + "iopub.status.busy": "2023-08-21T03:36:04.833468Z", + "iopub.status.idle": "2023-08-21T03:36:04.838421Z", + "shell.execute_reply": "2023-08-21T03:36:04.837747Z" }, "lines_to_next_cell": 0 }, @@ -668,7 +668,7 @@ }, { "cell_type": "markdown", - "id": "0df45f3d", + "id": "d4d82167", "metadata": {}, "source": [ "This documentation indicates that we could create a floating point array by passing a `dtype` argument into `np.array()`." @@ -677,13 +677,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "482d0c05", + "id": "66d2b82a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.575374Z", - "iopub.status.busy": "2023-08-15T18:48:57.575055Z", - "iopub.status.idle": "2023-08-15T18:48:57.581818Z", - "shell.execute_reply": "2023-08-15T18:48:57.580921Z" + "iopub.execute_input": "2023-08-21T03:36:04.842127Z", + "iopub.status.busy": "2023-08-21T03:36:04.841891Z", + "iopub.status.idle": "2023-08-21T03:36:04.848885Z", + "shell.execute_reply": "2023-08-21T03:36:04.848125Z" }, "lines_to_next_cell": 2 }, @@ -705,7 +705,7 @@ }, { "cell_type": "markdown", - "id": "757c10a0", + "id": "1e3ba5be", "metadata": {}, "source": [ "The array `x` is two-dimensional. We can find out the number of rows and columns by looking\n", @@ -715,13 +715,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "192cdf26", + "id": "89881402", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.585609Z", - "iopub.status.busy": "2023-08-15T18:48:57.585283Z", - "iopub.status.idle": "2023-08-15T18:48:57.590942Z", - "shell.execute_reply": "2023-08-15T18:48:57.589913Z" + "iopub.execute_input": "2023-08-21T03:36:04.853039Z", + "iopub.status.busy": "2023-08-21T03:36:04.852643Z", + "iopub.status.idle": "2023-08-21T03:36:04.859072Z", + "shell.execute_reply": "2023-08-21T03:36:04.858149Z" }, "lines_to_next_cell": 2 }, @@ -743,7 +743,7 @@ }, { "cell_type": "markdown", - "id": "b3d091f4", + "id": "2967b644", "metadata": {}, "source": [ "A *method* is a function that is associated with an\n", @@ -758,13 +758,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "4420b967", + "id": "0572d3f6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.596192Z", - "iopub.status.busy": "2023-08-15T18:48:57.595890Z", - "iopub.status.idle": "2023-08-15T18:48:57.600791Z", - "shell.execute_reply": "2023-08-15T18:48:57.600018Z" + "iopub.execute_input": "2023-08-21T03:36:04.863011Z", + "iopub.status.busy": "2023-08-21T03:36:04.862610Z", + "iopub.status.idle": "2023-08-21T03:36:04.869722Z", + "shell.execute_reply": "2023-08-21T03:36:04.869078Z" }, "lines_to_next_cell": 0 }, @@ -787,7 +787,7 @@ }, { "cell_type": "markdown", - "id": "ca0ff297", + "id": "e3f49995", "metadata": {}, "source": [ "We could also sum the elements of `x` by passing in `x` as an argument to the `np.sum()` function. " @@ -796,13 +796,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "5af5e20f", + "id": "33b10a6f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.605039Z", - "iopub.status.busy": "2023-08-15T18:48:57.604654Z", - "iopub.status.idle": "2023-08-15T18:48:57.611781Z", - "shell.execute_reply": "2023-08-15T18:48:57.609766Z" + "iopub.execute_input": "2023-08-21T03:36:04.874228Z", + "iopub.status.busy": "2023-08-21T03:36:04.873632Z", + "iopub.status.idle": "2023-08-21T03:36:04.879222Z", + "shell.execute_reply": "2023-08-21T03:36:04.878606Z" }, "lines_to_next_cell": 0 }, @@ -825,7 +825,7 @@ }, { "cell_type": "markdown", - "id": "355ad58f", + "id": "2f3dd2c3", "metadata": {}, "source": [ " As another example, the\n", @@ -842,13 +842,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "77a0df31", + "id": "a32716db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.615659Z", - "iopub.status.busy": "2023-08-15T18:48:57.615422Z", - "iopub.status.idle": "2023-08-15T18:48:57.619501Z", - "shell.execute_reply": "2023-08-15T18:48:57.619211Z" + "iopub.execute_input": "2023-08-21T03:36:04.882833Z", + "iopub.status.busy": "2023-08-21T03:36:04.882354Z", + "iopub.status.idle": "2023-08-21T03:36:04.887384Z", + "shell.execute_reply": "2023-08-21T03:36:04.886127Z" } }, "outputs": [ @@ -873,7 +873,7 @@ }, { "cell_type": "markdown", - "id": "e68cddfa", + "id": "2483179e", "metadata": {}, "source": [ "The previous output reveals that `numpy` arrays are specified as a sequence\n", @@ -882,7 +882,7 @@ }, { "cell_type": "markdown", - "id": "4b16c07d", + "id": "e256575f", "metadata": {}, "source": [ "`Python` (and hence `numpy`) uses 0-based\n", @@ -893,13 +893,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "c57ce2ca", + "id": "3db6e1cf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.622217Z", - "iopub.status.busy": "2023-08-15T18:48:57.622128Z", - "iopub.status.idle": "2023-08-15T18:48:57.624279Z", - "shell.execute_reply": "2023-08-15T18:48:57.624023Z" + "iopub.execute_input": "2023-08-21T03:36:04.890861Z", + "iopub.status.busy": "2023-08-21T03:36:04.890532Z", + "iopub.status.idle": "2023-08-21T03:36:04.894815Z", + "shell.execute_reply": "2023-08-21T03:36:04.894149Z" }, "lines_to_next_cell": 0 }, @@ -921,7 +921,7 @@ }, { "cell_type": "markdown", - "id": "9a4feee5", + "id": "0e10119e", "metadata": {}, "source": [ "Similarly, `x_reshape[1,2]` yields the element in the second row and the third column \n", @@ -931,13 +931,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "ea55b034", + "id": "e15c753f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.626107Z", - "iopub.status.busy": "2023-08-15T18:48:57.625991Z", - "iopub.status.idle": "2023-08-15T18:48:57.628267Z", - "shell.execute_reply": "2023-08-15T18:48:57.627959Z" + "iopub.execute_input": "2023-08-21T03:36:04.898049Z", + "iopub.status.busy": "2023-08-21T03:36:04.897796Z", + "iopub.status.idle": "2023-08-21T03:36:04.902137Z", + "shell.execute_reply": "2023-08-21T03:36:04.901538Z" }, "lines_to_next_cell": 0 }, @@ -959,7 +959,7 @@ }, { "cell_type": "markdown", - "id": "7a3c27dd", + "id": "f9c55622", "metadata": {}, "source": [ "Similarly, `x[2]` yields the\n", @@ -972,13 +972,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "b897a965", + "id": "91c6e7d8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.629860Z", - "iopub.status.busy": "2023-08-15T18:48:57.629753Z", - "iopub.status.idle": "2023-08-15T18:48:57.631845Z", - "shell.execute_reply": "2023-08-15T18:48:57.631576Z" + "iopub.execute_input": "2023-08-21T03:36:04.905358Z", + "iopub.status.busy": "2023-08-21T03:36:04.905148Z", + "iopub.status.idle": "2023-08-21T03:36:04.910143Z", + "shell.execute_reply": "2023-08-21T03:36:04.909500Z" } }, "outputs": [ @@ -1009,7 +1009,7 @@ }, { "cell_type": "markdown", - "id": "77ab8534", + "id": "8a840507", "metadata": {}, "source": [ "Modifying `x_reshape` also modified `x` because the two objects occupy the same space in memory.\n", @@ -1020,7 +1020,7 @@ }, { "cell_type": "markdown", - "id": "8d5214bc", + "id": "ec551f3e", "metadata": {}, "source": [ "We just saw that we can modify an element of an array. Can we also modify a tuple? It turns out that we cannot --- and trying to do so introduces\n", @@ -1030,13 +1030,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "1de2f886", + "id": "59d95dce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.633340Z", - "iopub.status.busy": "2023-08-15T18:48:57.633238Z", - "iopub.status.idle": "2023-08-15T18:48:57.752298Z", - "shell.execute_reply": "2023-08-15T18:48:57.751937Z" + "iopub.execute_input": "2023-08-21T03:36:04.913411Z", + "iopub.status.busy": "2023-08-21T03:36:04.912985Z", + "iopub.status.idle": "2023-08-21T03:36:05.037046Z", + "shell.execute_reply": "2023-08-21T03:36:05.036755Z" }, "lines_to_next_cell": 2 }, @@ -1060,7 +1060,7 @@ }, { "cell_type": "markdown", - "id": "5f8a5095", + "id": "d594f1af", "metadata": {}, "source": [ "We now briefly mention some attributes of arrays that will come in handy. An array's `shape` attribute contains its dimension; this is always a tuple.\n", @@ -1070,13 +1070,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "634a18d8", + "id": "a6fde9af", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.754084Z", - "iopub.status.busy": "2023-08-15T18:48:57.753976Z", - "iopub.status.idle": "2023-08-15T18:48:57.756236Z", - "shell.execute_reply": "2023-08-15T18:48:57.756009Z" + "iopub.execute_input": "2023-08-21T03:36:05.038645Z", + "iopub.status.busy": "2023-08-21T03:36:05.038536Z", + "iopub.status.idle": "2023-08-21T03:36:05.040823Z", + "shell.execute_reply": "2023-08-21T03:36:05.040589Z" } }, "outputs": [ @@ -1101,7 +1101,7 @@ }, { "cell_type": "markdown", - "id": "1db9f878", + "id": "76d20b98", "metadata": {}, "source": [ "Notice that the three individual outputs `(2,3)`, `2`, and `array([[5, 4],[2, 5], [3,6]])` are themselves output as a tuple. \n", @@ -1114,13 +1114,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "38563574", + "id": "fadb6b45", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.757698Z", - "iopub.status.busy": "2023-08-15T18:48:57.757600Z", - "iopub.status.idle": "2023-08-15T18:48:57.759735Z", - "shell.execute_reply": "2023-08-15T18:48:57.759486Z" + "iopub.execute_input": "2023-08-21T03:36:05.042203Z", + "iopub.status.busy": "2023-08-21T03:36:05.042112Z", + "iopub.status.idle": "2023-08-21T03:36:05.044185Z", + "shell.execute_reply": "2023-08-21T03:36:05.043940Z" } }, "outputs": [ @@ -1142,7 +1142,7 @@ }, { "cell_type": "markdown", - "id": "cdee1904", + "id": "22fab2ce", "metadata": {}, "source": [ "We can also square the elements:" @@ -1151,13 +1151,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "6d7eb044", + "id": "fda3134b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.761258Z", - "iopub.status.busy": "2023-08-15T18:48:57.761155Z", - "iopub.status.idle": "2023-08-15T18:48:57.764201Z", - "shell.execute_reply": "2023-08-15T18:48:57.763942Z" + "iopub.execute_input": "2023-08-21T03:36:05.045709Z", + "iopub.status.busy": "2023-08-21T03:36:05.045601Z", + "iopub.status.idle": "2023-08-21T03:36:05.047665Z", + "shell.execute_reply": "2023-08-21T03:36:05.047412Z" } }, "outputs": [ @@ -1178,7 +1178,7 @@ }, { "cell_type": "markdown", - "id": "7322f04a", + "id": "1278f26b", "metadata": {}, "source": [ "We can compute the square roots using the same notation, raising to the power of $1/2$ instead of 2." @@ -1187,13 +1187,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "dcf49c32", + "id": "52eb335b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.765568Z", - "iopub.status.busy": "2023-08-15T18:48:57.765489Z", - "iopub.status.idle": "2023-08-15T18:48:57.767687Z", - "shell.execute_reply": "2023-08-15T18:48:57.767416Z" + "iopub.execute_input": "2023-08-21T03:36:05.049290Z", + "iopub.status.busy": "2023-08-21T03:36:05.049191Z", + "iopub.status.idle": "2023-08-21T03:36:05.051249Z", + "shell.execute_reply": "2023-08-21T03:36:05.051004Z" }, "lines_to_next_cell": 2 }, @@ -1216,7 +1216,7 @@ }, { "cell_type": "markdown", - "id": "a4ccea4f", + "id": "299a5a85", "metadata": {}, "source": [ "Throughout this book, we will often want to generate random data. \n", @@ -1234,29 +1234,29 @@ { "cell_type": "code", "execution_count": 28, - "id": "dec2f36f", + "id": "ac5e9d29", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.769038Z", - "iopub.status.busy": "2023-08-15T18:48:57.768966Z", - "iopub.status.idle": "2023-08-15T18:48:57.772119Z", - "shell.execute_reply": "2023-08-15T18:48:57.771880Z" + "iopub.execute_input": "2023-08-21T03:36:05.052622Z", + "iopub.status.busy": "2023-08-21T03:36:05.052529Z", + "iopub.status.idle": "2023-08-21T03:36:05.054818Z", + "shell.execute_reply": "2023-08-21T03:36:05.054569Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([ 0.29014042, -1.86056555, -1.03145717, -0.07365371, -0.28189692,\n", - " -0.71611404, 0.05880048, 0.46770064, 0.79645167, -0.0162479 ,\n", - " 0.47130365, 1.05609834, -0.68946797, 1.41358519, 0.73655573,\n", - " -0.54189331, -0.44411721, -1.5708482 , -1.52047945, 1.32694248,\n", - " -1.18915043, -0.32868506, 1.38578859, -0.36928554, 0.42589616,\n", - " -0.4244271 , 0.80408062, 0.43856581, -0.17138868, -0.84893759,\n", - " 1.13046227, 0.22826387, 0.13787643, 1.01904386, -0.29545438,\n", - " -0.62502879, 1.2120335 , -0.82664507, -1.41961403, 1.7012509 ,\n", - " 0.04141695, 2.63161733, 0.40039857, 0.82556693, 0.13357677,\n", - " 0.12961134, 0.62829697, 0.05220314, 0.66114213, 0.68263063])" + "array([-0.97992307, 0.29561095, 0.60481929, -0.20482365, -1.01517527,\n", + " 2.76594674, -0.65748447, 1.27396181, -1.01573869, 1.37373688,\n", + " 0.93524901, -2.41971622, -0.58080017, 0.13777341, 1.35936356,\n", + " 0.61747629, 0.82550921, 0.7943598 , 1.0905082 , 1.80820045,\n", + " -1.31320321, 2.0651966 , -0.78632522, -2.01068042, -1.36562571,\n", + " 1.43466837, -0.16848093, -1.57211786, 0.49888498, -1.86050966,\n", + " 1.08743609, 0.53059599, 0.02172848, -0.41808062, 1.88343414,\n", + " 0.09112977, 1.23489568, 0.53207714, -1.62670383, 1.29859234,\n", + " 0.30311344, 1.01143392, -1.64596169, 1.58876421, -1.85189683,\n", + " -0.53929878, -2.19895144, -0.36691225, 1.03621761, 0.25278481])" ] }, "execution_count": 28, @@ -1271,7 +1271,7 @@ }, { "cell_type": "markdown", - "id": "9c60001d", + "id": "d77cf45a", "metadata": {}, "source": [ "We create an array `y` by adding an independent $N(50,1)$ random variable to each element of `x`." @@ -1280,13 +1280,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "f535fba4", + "id": "55fa905e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.773475Z", - "iopub.status.busy": "2023-08-15T18:48:57.773381Z", - "iopub.status.idle": "2023-08-15T18:48:57.775112Z", - "shell.execute_reply": "2023-08-15T18:48:57.774870Z" + "iopub.execute_input": "2023-08-21T03:36:05.056219Z", + "iopub.status.busy": "2023-08-21T03:36:05.056124Z", + "iopub.status.idle": "2023-08-21T03:36:05.057790Z", + "shell.execute_reply": "2023-08-21T03:36:05.057543Z" }, "lines_to_next_cell": 0 }, @@ -1297,7 +1297,7 @@ }, { "cell_type": "markdown", - "id": "b267be24", + "id": "eacfecc9", "metadata": {}, "source": [ "The `np.corrcoef()` function computes the correlation matrix between `x` and `y`. The off-diagonal elements give the \n", @@ -1307,21 +1307,21 @@ { "cell_type": "code", "execution_count": 30, - "id": "faf3be25", + "id": "fde0dc19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.776482Z", - "iopub.status.busy": "2023-08-15T18:48:57.776392Z", - "iopub.status.idle": "2023-08-15T18:48:57.778813Z", - "shell.execute_reply": "2023-08-15T18:48:57.778571Z" + "iopub.execute_input": "2023-08-21T03:36:05.059163Z", + "iopub.status.busy": "2023-08-21T03:36:05.059091Z", + "iopub.status.idle": "2023-08-21T03:36:05.061351Z", + "shell.execute_reply": "2023-08-21T03:36:05.061105Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([[1. , 0.76729831],\n", - " [0.76729831, 1. ]])" + "array([[1. , 0.66045794],\n", + " [0.66045794, 1. ]])" ] }, "execution_count": 30, @@ -1335,7 +1335,7 @@ }, { "cell_type": "markdown", - "id": "c6d0e0ce", + "id": "8a594218", "metadata": {}, "source": [ "If you're following along in your own `Jupyter` notebook, then you probably noticed that you got a different set of results when you ran the past few \n", @@ -1347,13 +1347,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "b6a756e0", + "id": "5099cf54", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.780187Z", - "iopub.status.busy": "2023-08-15T18:48:57.780099Z", - "iopub.status.idle": "2023-08-15T18:48:57.782068Z", - "shell.execute_reply": "2023-08-15T18:48:57.781835Z" + "iopub.execute_input": "2023-08-21T03:36:05.062721Z", + "iopub.status.busy": "2023-08-21T03:36:05.062630Z", + "iopub.status.idle": "2023-08-21T03:36:05.064539Z", + "shell.execute_reply": "2023-08-21T03:36:05.064300Z" }, "lines_to_next_cell": 0 }, @@ -1362,8 +1362,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "[1.14627413 4.27059779]\n", - "[ 0.8049877 -5.40386206]\n" + "[-9.63514647 -0.12742473]\n", + "[0.85490033 0.05488893]\n" ] } ], @@ -1374,7 +1374,7 @@ }, { "cell_type": "markdown", - "id": "a1071413", + "id": "2e209118", "metadata": {}, "source": [ " " @@ -1382,7 +1382,7 @@ }, { "cell_type": "markdown", - "id": "31d9911e", + "id": "ed7697a4", "metadata": {}, "source": [ "In order to ensure that our code provides exactly the same results\n", @@ -1398,13 +1398,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "921b634a", + "id": "9d8074e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.783469Z", - "iopub.status.busy": "2023-08-15T18:48:57.783382Z", - "iopub.status.idle": "2023-08-15T18:48:57.786255Z", - "shell.execute_reply": "2023-08-15T18:48:57.786022Z" + "iopub.execute_input": "2023-08-21T03:36:05.065999Z", + "iopub.status.busy": "2023-08-21T03:36:05.065912Z", + "iopub.status.idle": "2023-08-21T03:36:05.068039Z", + "shell.execute_reply": "2023-08-21T03:36:05.067820Z" } }, "outputs": [ @@ -1426,7 +1426,7 @@ }, { "cell_type": "markdown", - "id": "7a4da703", + "id": "93f826ef", "metadata": {}, "source": [ "Throughout the labs in this book, we use `np.random.default_rng()` whenever we\n", @@ -1444,13 +1444,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "fe28973e", + "id": "e98472df", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.787657Z", - "iopub.status.busy": "2023-08-15T18:48:57.787557Z", - "iopub.status.idle": "2023-08-15T18:48:57.790025Z", - "shell.execute_reply": "2023-08-15T18:48:57.789788Z" + "iopub.execute_input": "2023-08-21T03:36:05.069438Z", + "iopub.status.busy": "2023-08-21T03:36:05.069347Z", + "iopub.status.idle": "2023-08-21T03:36:05.071564Z", + "shell.execute_reply": "2023-08-21T03:36:05.071324Z" }, "lines_to_next_cell": 0 }, @@ -1474,7 +1474,7 @@ }, { "cell_type": "markdown", - "id": "b6092d9c", + "id": "2870d61f", "metadata": {}, "source": [ " \n" @@ -1483,13 +1483,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "04c26742", + "id": "8c2784fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.791368Z", - "iopub.status.busy": "2023-08-15T18:48:57.791283Z", - "iopub.status.idle": "2023-08-15T18:48:57.793457Z", - "shell.execute_reply": "2023-08-15T18:48:57.793225Z" + "iopub.execute_input": "2023-08-21T03:36:05.072967Z", + "iopub.status.busy": "2023-08-21T03:36:05.072873Z", + "iopub.status.idle": "2023-08-21T03:36:05.075053Z", + "shell.execute_reply": "2023-08-21T03:36:05.074833Z" }, "lines_to_next_cell": 2 }, @@ -1511,7 +1511,7 @@ }, { "cell_type": "markdown", - "id": "b9212f82", + "id": "86261a69", "metadata": {}, "source": [ "Notice that by default `np.var()` divides by the sample size $n$ rather\n", @@ -1521,13 +1521,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "e35cdcbf", + "id": "7e7205f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.794778Z", - "iopub.status.busy": "2023-08-15T18:48:57.794692Z", - "iopub.status.idle": "2023-08-15T18:48:57.796774Z", - "shell.execute_reply": "2023-08-15T18:48:57.796540Z" + "iopub.execute_input": "2023-08-21T03:36:05.076473Z", + "iopub.status.busy": "2023-08-21T03:36:05.076373Z", + "iopub.status.idle": "2023-08-21T03:36:05.078474Z", + "shell.execute_reply": "2023-08-21T03:36:05.078224Z" } }, "outputs": [ @@ -1548,7 +1548,7 @@ }, { "cell_type": "markdown", - "id": "41eb4c38", + "id": "d4faf901", "metadata": {}, "source": [ "The `np.mean()`, `np.var()`, and `np.std()` functions can also be applied to the rows and columns of a matrix. \n", @@ -1558,13 +1558,13 @@ { "cell_type": "code", "execution_count": 36, - "id": "fbd49766", + "id": "fce06849", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.798111Z", - "iopub.status.busy": "2023-08-15T18:48:57.798040Z", - "iopub.status.idle": "2023-08-15T18:48:57.800173Z", - "shell.execute_reply": "2023-08-15T18:48:57.799940Z" + "iopub.execute_input": "2023-08-21T03:36:05.079856Z", + "iopub.status.busy": "2023-08-21T03:36:05.079755Z", + "iopub.status.idle": "2023-08-21T03:36:05.081961Z", + "shell.execute_reply": "2023-08-21T03:36:05.081709Z" } }, "outputs": [ @@ -1595,7 +1595,7 @@ }, { "cell_type": "markdown", - "id": "5520aeae", + "id": "6cc355d2", "metadata": {}, "source": [ "Since arrays are row-major ordered, the first axis, i.e. `axis=0`, refers to its rows. We pass this argument into the `mean()` method for the object `X`. " @@ -1604,13 +1604,13 @@ { "cell_type": "code", "execution_count": 37, - "id": "f5865859", + "id": "1403ff7a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.801565Z", - "iopub.status.busy": "2023-08-15T18:48:57.801490Z", - "iopub.status.idle": "2023-08-15T18:48:57.803669Z", - "shell.execute_reply": "2023-08-15T18:48:57.803436Z" + "iopub.execute_input": "2023-08-21T03:36:05.083361Z", + "iopub.status.busy": "2023-08-21T03:36:05.083273Z", + "iopub.status.idle": "2023-08-21T03:36:05.085366Z", + "shell.execute_reply": "2023-08-21T03:36:05.085112Z" } }, "outputs": [ @@ -1631,7 +1631,7 @@ }, { "cell_type": "markdown", - "id": "8aedc41d", + "id": "6785c0ec", "metadata": {}, "source": [ "The following yields the same result." @@ -1640,13 +1640,13 @@ { "cell_type": "code", "execution_count": 38, - "id": "e27b30bf", + "id": "7e9255ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.804972Z", - "iopub.status.busy": "2023-08-15T18:48:57.804902Z", - "iopub.status.idle": "2023-08-15T18:48:57.806941Z", - "shell.execute_reply": "2023-08-15T18:48:57.806694Z" + "iopub.execute_input": "2023-08-21T03:36:05.086730Z", + "iopub.status.busy": "2023-08-21T03:36:05.086636Z", + "iopub.status.idle": "2023-08-21T03:36:05.088698Z", + "shell.execute_reply": "2023-08-21T03:36:05.088470Z" }, "lines_to_next_cell": 0 }, @@ -1668,7 +1668,7 @@ }, { "cell_type": "markdown", - "id": "4ee7f516", + "id": "5de246dc", "metadata": {}, "source": [ " " @@ -1676,7 +1676,7 @@ }, { "cell_type": "markdown", - "id": "80ab3209", + "id": "30b002fa", "metadata": {}, "source": [ "## Graphics\n", @@ -1710,13 +1710,13 @@ { "cell_type": "code", "execution_count": 39, - "id": "fed2376c", + "id": "8236e5f7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:57.808301Z", - "iopub.status.busy": "2023-08-15T18:48:57.808228Z", - "iopub.status.idle": "2023-08-15T18:48:58.138590Z", - "shell.execute_reply": "2023-08-15T18:48:58.138241Z" + "iopub.execute_input": "2023-08-21T03:36:05.090105Z", + "iopub.status.busy": "2023-08-21T03:36:05.090015Z", + "iopub.status.idle": "2023-08-21T03:36:05.390499Z", + "shell.execute_reply": "2023-08-21T03:36:05.390143Z" } }, "outputs": [ @@ -1741,7 +1741,7 @@ }, { "cell_type": "markdown", - "id": "9b697b2a", + "id": "bbef67e6", "metadata": {}, "source": [ "We pause here to note that we have *unpacked* the tuple of length two returned by `subplots()` into the two distinct\n", @@ -1752,13 +1752,13 @@ { "cell_type": "code", "execution_count": 40, - "id": "228ee04d", + "id": "ddc9ed4f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.140540Z", - "iopub.status.busy": "2023-08-15T18:48:58.140403Z", - "iopub.status.idle": "2023-08-15T18:48:58.212007Z", - "shell.execute_reply": "2023-08-15T18:48:58.211693Z" + "iopub.execute_input": "2023-08-21T03:36:05.392242Z", + "iopub.status.busy": "2023-08-21T03:36:05.392127Z", + "iopub.status.idle": "2023-08-21T03:36:05.464507Z", + "shell.execute_reply": "2023-08-21T03:36:05.464208Z" } }, "outputs": [ @@ -1781,7 +1781,7 @@ }, { "cell_type": "markdown", - "id": "e040ba84", + "id": "104d6b8f", "metadata": {}, "source": [ "We see that our earlier cell produced a line plot, which is the default. To create a scatterplot, we provide an additional argument to `ax.plot()`, indicating that circles should be displayed." @@ -1790,13 +1790,13 @@ { "cell_type": "code", "execution_count": 41, - "id": "e1dc79d2", + "id": "c64ed600", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.213756Z", - "iopub.status.busy": "2023-08-15T18:48:58.213640Z", - "iopub.status.idle": "2023-08-15T18:48:58.289684Z", - "shell.execute_reply": "2023-08-15T18:48:58.289374Z" + "iopub.execute_input": "2023-08-21T03:36:05.466274Z", + "iopub.status.busy": "2023-08-21T03:36:05.466157Z", + "iopub.status.idle": "2023-08-21T03:36:05.540801Z", + "shell.execute_reply": "2023-08-21T03:36:05.540543Z" }, "lines_to_next_cell": 0 }, @@ -1819,7 +1819,7 @@ }, { "cell_type": "markdown", - "id": "960d0ceb", + "id": "840be2a9", "metadata": {}, "source": [ "Different values\n", @@ -1829,7 +1829,7 @@ }, { "cell_type": "markdown", - "id": "833d6751", + "id": "971b98bd", "metadata": {}, "source": [ "As an alternative, we could use the `ax.scatter()` function to create a scatterplot." @@ -1838,13 +1838,13 @@ { "cell_type": "code", "execution_count": 42, - "id": "d6e6bf34", + "id": "bc6245e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.291440Z", - "iopub.status.busy": "2023-08-15T18:48:58.291326Z", - "iopub.status.idle": "2023-08-15T18:48:58.373922Z", - "shell.execute_reply": "2023-08-15T18:48:58.373639Z" + "iopub.execute_input": "2023-08-21T03:36:05.542497Z", + "iopub.status.busy": "2023-08-21T03:36:05.542378Z", + "iopub.status.idle": "2023-08-21T03:36:05.621061Z", + "shell.execute_reply": "2023-08-21T03:36:05.620765Z" } }, "outputs": [ @@ -1866,7 +1866,7 @@ }, { "cell_type": "markdown", - "id": "ff56b51f", + "id": "97f36df0", "metadata": {}, "source": [ "Notice that in the code blocks above, we have ended\n", @@ -1878,13 +1878,13 @@ { "cell_type": "code", "execution_count": 43, - "id": "9c1ea81c", + "id": "2454807b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.375715Z", - "iopub.status.busy": "2023-08-15T18:48:58.375585Z", - "iopub.status.idle": "2023-08-15T18:48:58.454702Z", - "shell.execute_reply": "2023-08-15T18:48:58.454405Z" + "iopub.execute_input": "2023-08-21T03:36:05.622738Z", + "iopub.status.busy": "2023-08-21T03:36:05.622624Z", + "iopub.status.idle": "2023-08-21T03:36:05.700853Z", + "shell.execute_reply": "2023-08-21T03:36:05.700564Z" }, "lines_to_next_cell": 0 }, @@ -1892,7 +1892,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 43, @@ -1917,7 +1917,7 @@ }, { "cell_type": "markdown", - "id": "abdc9ceb", + "id": "1230c0a6", "metadata": {}, "source": [ "In what follows, we will use\n", @@ -1930,7 +1930,7 @@ }, { "cell_type": "markdown", - "id": "4b9491f5", + "id": "0ccb9964", "metadata": {}, "source": [ "To label our plot, we make use of the `set_xlabel()`, `set_ylabel()`, and `set_title()` methods\n", @@ -1941,13 +1941,13 @@ { "cell_type": "code", "execution_count": 44, - "id": "e6217bc8", + "id": "1e18a793", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.456512Z", - "iopub.status.busy": "2023-08-15T18:48:58.456386Z", - "iopub.status.idle": "2023-08-15T18:48:58.551777Z", - "shell.execute_reply": "2023-08-15T18:48:58.551466Z" + "iopub.execute_input": "2023-08-21T03:36:05.702667Z", + "iopub.status.busy": "2023-08-21T03:36:05.702545Z", + "iopub.status.idle": "2023-08-21T03:36:05.797850Z", + "shell.execute_reply": "2023-08-21T03:36:05.797545Z" } }, "outputs": [ @@ -1972,7 +1972,7 @@ }, { "cell_type": "markdown", - "id": "e8228a39", + "id": "f2d818ee", "metadata": {}, "source": [ " Having access to the figure object `fig` itself means that we can go in and change some aspects and then redisplay it. Here, we change\n", @@ -1982,13 +1982,13 @@ { "cell_type": "code", "execution_count": 45, - "id": "2feef77c", + "id": "aec3f009", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.553489Z", - "iopub.status.busy": "2023-08-15T18:48:58.553368Z", - "iopub.status.idle": "2023-08-15T18:48:58.616077Z", - "shell.execute_reply": "2023-08-15T18:48:58.615653Z" + "iopub.execute_input": "2023-08-21T03:36:05.799658Z", + "iopub.status.busy": "2023-08-21T03:36:05.799529Z", + "iopub.status.idle": "2023-08-21T03:36:05.861021Z", + "shell.execute_reply": "2023-08-21T03:36:05.860749Z" }, "lines_to_next_cell": 0 }, @@ -2012,7 +2012,7 @@ }, { "cell_type": "markdown", - "id": "d22f3886", + "id": "dee531cc", "metadata": {}, "source": [ " " @@ -2020,7 +2020,7 @@ }, { "cell_type": "markdown", - "id": "e9187ea8", + "id": "011bf802", "metadata": {}, "source": [ "Occasionally we will want to create several plots within a figure. This can be\n", @@ -2036,13 +2036,13 @@ { "cell_type": "code", "execution_count": 46, - "id": "24c9bd3c", + "id": "2cbc7fd4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.617956Z", - "iopub.status.busy": "2023-08-15T18:48:58.617675Z", - "iopub.status.idle": "2023-08-15T18:48:58.904869Z", - "shell.execute_reply": "2023-08-15T18:48:58.904534Z" + "iopub.execute_input": "2023-08-21T03:36:05.862740Z", + "iopub.status.busy": "2023-08-21T03:36:05.862621Z", + "iopub.status.idle": "2023-08-21T03:36:06.143924Z", + "shell.execute_reply": "2023-08-21T03:36:06.143646Z" }, "lines_to_next_cell": 0 }, @@ -2066,7 +2066,7 @@ }, { "cell_type": "markdown", - "id": "7c6bdba5", + "id": "b8ff2e6d", "metadata": {}, "source": [ "We now produce a scatter plot with `'o'` in the second column of the first row and\n", @@ -2076,13 +2076,13 @@ { "cell_type": "code", "execution_count": 47, - "id": "dbe7d87c", + "id": "702f80d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:58.906555Z", - "iopub.status.busy": "2023-08-15T18:48:58.906430Z", - "iopub.status.idle": "2023-08-15T18:48:59.089062Z", - "shell.execute_reply": "2023-08-15T18:48:59.088760Z" + "iopub.execute_input": "2023-08-21T03:36:06.145683Z", + "iopub.status.busy": "2023-08-21T03:36:06.145574Z", + "iopub.status.idle": "2023-08-21T03:36:06.326301Z", + "shell.execute_reply": "2023-08-21T03:36:06.326007Z" }, "lines_to_next_cell": 0 }, @@ -2107,7 +2107,7 @@ }, { "cell_type": "markdown", - "id": "81d8fa9f", + "id": "5b265f8b", "metadata": {}, "source": [ "Type `subplots?` to learn more about \n", @@ -2118,7 +2118,7 @@ }, { "cell_type": "markdown", - "id": "d3760a25", + "id": "1bd7e707", "metadata": {}, "source": [ "To save the output of `fig`, we call its `savefig()`\n", @@ -2129,13 +2129,13 @@ { "cell_type": "code", "execution_count": 48, - "id": "c86bffe6", + "id": "5493d229", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:48:59.090755Z", - "iopub.status.busy": "2023-08-15T18:48:59.090646Z", - "iopub.status.idle": "2023-08-15T18:49:00.169920Z", - "shell.execute_reply": "2023-08-15T18:49:00.169634Z" + "iopub.execute_input": "2023-08-21T03:36:06.327958Z", + "iopub.status.busy": "2023-08-21T03:36:06.327847Z", + "iopub.status.idle": "2023-08-21T03:36:07.432805Z", + "shell.execute_reply": "2023-08-21T03:36:07.432429Z" }, "lines_to_next_cell": 2 }, @@ -2147,7 +2147,7 @@ }, { "cell_type": "markdown", - "id": "fd9dbb47", + "id": "7152d0c7", "metadata": {}, "source": [ "We can continue to modify `fig` using step-by-step updates; for example, we can modify the range of the $x$-axis, re-save the figure, and even re-display it. " @@ -2156,13 +2156,13 @@ { "cell_type": "code", "execution_count": 49, - "id": "07f180e1", + "id": "bd07af12", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.172125Z", - "iopub.status.busy": "2023-08-15T18:49:00.171883Z", - "iopub.status.idle": "2023-08-15T18:49:00.406313Z", - "shell.execute_reply": "2023-08-15T18:49:00.405904Z" + "iopub.execute_input": "2023-08-21T03:36:07.434785Z", + "iopub.status.busy": "2023-08-21T03:36:07.434614Z", + "iopub.status.idle": "2023-08-21T03:36:07.663475Z", + "shell.execute_reply": "2023-08-21T03:36:07.663165Z" } }, "outputs": [ @@ -2186,7 +2186,7 @@ }, { "cell_type": "markdown", - "id": "8e013a6f", + "id": "b5278857", "metadata": {}, "source": [ "We now create some more sophisticated plots. The \n", @@ -2206,13 +2206,13 @@ { "cell_type": "code", "execution_count": 50, - "id": "a465c3aa", + "id": "01019508", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.408153Z", - "iopub.status.busy": "2023-08-15T18:49:00.408030Z", - "iopub.status.idle": "2023-08-15T18:49:00.529270Z", - "shell.execute_reply": "2023-08-15T18:49:00.528966Z" + "iopub.execute_input": "2023-08-21T03:36:07.665255Z", + "iopub.status.busy": "2023-08-21T03:36:07.665128Z", + "iopub.status.idle": "2023-08-21T03:36:07.766569Z", + "shell.execute_reply": "2023-08-21T03:36:07.766244Z" }, "lines_to_next_cell": 0 }, @@ -2238,7 +2238,7 @@ }, { "cell_type": "markdown", - "id": "df35daed", + "id": "9ef3c475", "metadata": {}, "source": [ "We can increase the resolution by adding more levels to the image." @@ -2247,13 +2247,13 @@ { "cell_type": "code", "execution_count": 51, - "id": "469979b0", + "id": "7d08992f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.531056Z", - "iopub.status.busy": "2023-08-15T18:49:00.530927Z", - "iopub.status.idle": "2023-08-15T18:49:00.658628Z", - "shell.execute_reply": "2023-08-15T18:49:00.658295Z" + "iopub.execute_input": "2023-08-21T03:36:07.768244Z", + "iopub.status.busy": "2023-08-21T03:36:07.768130Z", + "iopub.status.idle": "2023-08-21T03:36:07.893027Z", + "shell.execute_reply": "2023-08-21T03:36:07.892660Z" }, "lines_to_next_cell": 0 }, @@ -2276,7 +2276,7 @@ }, { "cell_type": "markdown", - "id": "e6aa9a72", + "id": "8e1d37a2", "metadata": {}, "source": [ "To fine-tune the output of the\n", @@ -2293,13 +2293,13 @@ { "cell_type": "code", "execution_count": 52, - "id": "31092abb", + "id": "1f89d704", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.660299Z", - "iopub.status.busy": "2023-08-15T18:49:00.660207Z", - "iopub.status.idle": "2023-08-15T18:49:00.765408Z", - "shell.execute_reply": "2023-08-15T18:49:00.765121Z" + "iopub.execute_input": "2023-08-21T03:36:07.894802Z", + "iopub.status.busy": "2023-08-21T03:36:07.894695Z", + "iopub.status.idle": "2023-08-21T03:36:07.995202Z", + "shell.execute_reply": "2023-08-21T03:36:07.994863Z" }, "lines_to_next_cell": 2 }, @@ -2322,7 +2322,7 @@ }, { "cell_type": "markdown", - "id": "aba44db2", + "id": "2500a6ec", "metadata": {}, "source": [ "## Sequences and Slice Notation" @@ -2330,7 +2330,7 @@ }, { "cell_type": "markdown", - "id": "f0edc818", + "id": "07001b88", "metadata": {}, "source": [ "As seen above, the\n", @@ -2341,13 +2341,13 @@ { "cell_type": "code", "execution_count": 53, - "id": "4e834c17", + "id": "cd971131", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.767103Z", - "iopub.status.busy": "2023-08-15T18:49:00.766990Z", - "iopub.status.idle": "2023-08-15T18:49:00.769572Z", - "shell.execute_reply": "2023-08-15T18:49:00.769310Z" + "iopub.execute_input": "2023-08-21T03:36:07.996961Z", + "iopub.status.busy": "2023-08-21T03:36:07.996836Z", + "iopub.status.idle": "2023-08-21T03:36:07.999447Z", + "shell.execute_reply": "2023-08-21T03:36:07.999154Z" }, "lines_to_next_cell": 2 }, @@ -2370,7 +2370,7 @@ }, { "cell_type": "markdown", - "id": "e95ff002", + "id": "926f96fc", "metadata": {}, "source": [ "The function `np.arange()`\n", @@ -2381,13 +2381,13 @@ { "cell_type": "code", "execution_count": 54, - "id": "65d67d22", + "id": "aa630d16", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.771217Z", - "iopub.status.busy": "2023-08-15T18:49:00.771065Z", - "iopub.status.idle": "2023-08-15T18:49:00.773408Z", - "shell.execute_reply": "2023-08-15T18:49:00.773113Z" + "iopub.execute_input": "2023-08-21T03:36:08.001028Z", + "iopub.status.busy": "2023-08-21T03:36:08.000925Z", + "iopub.status.idle": "2023-08-21T03:36:08.003185Z", + "shell.execute_reply": "2023-08-21T03:36:08.002908Z" } }, "outputs": [ @@ -2409,7 +2409,7 @@ }, { "cell_type": "markdown", - "id": "09d51db7", + "id": "6908bad7", "metadata": {}, "source": [ "Why isn't $10$ output above? This has to do with *slice* notation in `Python`. \n", @@ -2422,13 +2422,13 @@ { "cell_type": "code", "execution_count": 55, - "id": "676ab564", + "id": "89955ee2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.774895Z", - "iopub.status.busy": "2023-08-15T18:49:00.774790Z", - "iopub.status.idle": "2023-08-15T18:49:00.776727Z", - "shell.execute_reply": "2023-08-15T18:49:00.776499Z" + "iopub.execute_input": "2023-08-21T03:36:08.004703Z", + "iopub.status.busy": "2023-08-21T03:36:08.004594Z", + "iopub.status.idle": "2023-08-21T03:36:08.006692Z", + "shell.execute_reply": "2023-08-21T03:36:08.006429Z" }, "lines_to_next_cell": 0 }, @@ -2450,7 +2450,7 @@ }, { "cell_type": "markdown", - "id": "d51b85fc", + "id": "17d73e4d", "metadata": {}, "source": [ "In the code block above, the notation `3:6` is shorthand for `slice(3,6)` when used inside\n", @@ -2460,13 +2460,13 @@ { "cell_type": "code", "execution_count": 56, - "id": "569f45ab", + "id": "517f592d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.778176Z", - "iopub.status.busy": "2023-08-15T18:49:00.778073Z", - "iopub.status.idle": "2023-08-15T18:49:00.780149Z", - "shell.execute_reply": "2023-08-15T18:49:00.779889Z" + "iopub.execute_input": "2023-08-21T03:36:08.008158Z", + "iopub.status.busy": "2023-08-21T03:36:08.008062Z", + "iopub.status.idle": "2023-08-21T03:36:08.010083Z", + "shell.execute_reply": "2023-08-21T03:36:08.009819Z" } }, "outputs": [ @@ -2487,7 +2487,7 @@ }, { "cell_type": "markdown", - "id": "b82b891c", + "id": "680fe656", "metadata": {}, "source": [ "You might have expected `slice(3,6)` to output the fourth through seventh characters in the text string (recalling that `Python` begins its indexing at zero), but instead it output the fourth through sixth. \n", @@ -2517,7 +2517,7 @@ }, { "cell_type": "markdown", - "id": "46aa45f7", + "id": "522a2761", "metadata": {}, "source": [ "## Indexing Data\n", @@ -2527,13 +2527,13 @@ { "cell_type": "code", "execution_count": 57, - "id": "7cf343bd", + "id": "35927abd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.781654Z", - "iopub.status.busy": "2023-08-15T18:49:00.781547Z", - "iopub.status.idle": "2023-08-15T18:49:00.783829Z", - "shell.execute_reply": "2023-08-15T18:49:00.783563Z" + "iopub.execute_input": "2023-08-21T03:36:08.011518Z", + "iopub.status.busy": "2023-08-21T03:36:08.011425Z", + "iopub.status.idle": "2023-08-21T03:36:08.013558Z", + "shell.execute_reply": "2023-08-21T03:36:08.013317Z" } }, "outputs": [ @@ -2558,7 +2558,7 @@ }, { "cell_type": "markdown", - "id": "a396d5a6", + "id": "27c88984", "metadata": {}, "source": [ "Typing `A[1,2]` retrieves the element corresponding to the second row and third\n", @@ -2568,13 +2568,13 @@ { "cell_type": "code", "execution_count": 58, - "id": "2f4c1b37", + "id": "78ee7f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.785421Z", - "iopub.status.busy": "2023-08-15T18:49:00.785315Z", - "iopub.status.idle": "2023-08-15T18:49:00.787314Z", - "shell.execute_reply": "2023-08-15T18:49:00.787066Z" + "iopub.execute_input": "2023-08-21T03:36:08.014962Z", + "iopub.status.busy": "2023-08-21T03:36:08.014871Z", + "iopub.status.idle": "2023-08-21T03:36:08.016938Z", + "shell.execute_reply": "2023-08-21T03:36:08.016689Z" } }, "outputs": [ @@ -2595,7 +2595,7 @@ }, { "cell_type": "markdown", - "id": "839feee0", + "id": "dd65ec1c", "metadata": {}, "source": [ "The first number after the open-bracket symbol `[`\n", @@ -2609,13 +2609,13 @@ { "cell_type": "code", "execution_count": 59, - "id": "a8ef1be5", + "id": "16212696", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.788866Z", - "iopub.status.busy": "2023-08-15T18:49:00.788741Z", - "iopub.status.idle": "2023-08-15T18:49:00.791048Z", - "shell.execute_reply": "2023-08-15T18:49:00.790773Z" + "iopub.execute_input": "2023-08-21T03:36:08.018506Z", + "iopub.status.busy": "2023-08-21T03:36:08.018407Z", + "iopub.status.idle": "2023-08-21T03:36:08.020572Z", + "shell.execute_reply": "2023-08-21T03:36:08.020301Z" } }, "outputs": [ @@ -2637,7 +2637,7 @@ }, { "cell_type": "markdown", - "id": "abe68415", + "id": "0b8b3ce3", "metadata": {}, "source": [ "To select the first and third columns, we pass in `[0,2]` as the second argument in the square brackets.\n", @@ -2648,13 +2648,13 @@ { "cell_type": "code", "execution_count": 60, - "id": "830897a9", + "id": "d5f473d2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.792551Z", - "iopub.status.busy": "2023-08-15T18:49:00.792448Z", - "iopub.status.idle": "2023-08-15T18:49:00.794695Z", - "shell.execute_reply": "2023-08-15T18:49:00.794378Z" + "iopub.execute_input": "2023-08-21T03:36:08.022048Z", + "iopub.status.busy": "2023-08-21T03:36:08.021947Z", + "iopub.status.idle": "2023-08-21T03:36:08.024301Z", + "shell.execute_reply": "2023-08-21T03:36:08.024006Z" } }, "outputs": [ @@ -2678,7 +2678,7 @@ }, { "cell_type": "markdown", - "id": "004f3600", + "id": "471ed1b4", "metadata": {}, "source": [ "Now, suppose that we want to select the submatrix made up of the second and fourth \n", @@ -2689,13 +2689,13 @@ { "cell_type": "code", "execution_count": 61, - "id": "12e88036", + "id": "c89646d6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.796240Z", - "iopub.status.busy": "2023-08-15T18:49:00.796133Z", - "iopub.status.idle": "2023-08-15T18:49:00.798381Z", - "shell.execute_reply": "2023-08-15T18:49:00.798108Z" + "iopub.execute_input": "2023-08-21T03:36:08.025864Z", + "iopub.status.busy": "2023-08-21T03:36:08.025745Z", + "iopub.status.idle": "2023-08-21T03:36:08.027990Z", + "shell.execute_reply": "2023-08-21T03:36:08.027692Z" } }, "outputs": [ @@ -2716,7 +2716,7 @@ }, { "cell_type": "markdown", - "id": "9b978348", + "id": "9cbf1ff9", "metadata": {}, "source": [ " Oops --- what happened? We got a one-dimensional array of length two identical to" @@ -2725,13 +2725,13 @@ { "cell_type": "code", "execution_count": 62, - "id": "c4098144", + "id": "87f6b4f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.799924Z", - "iopub.status.busy": "2023-08-15T18:49:00.799822Z", - "iopub.status.idle": "2023-08-15T18:49:00.801953Z", - "shell.execute_reply": "2023-08-15T18:49:00.801652Z" + "iopub.execute_input": "2023-08-21T03:36:08.029541Z", + "iopub.status.busy": "2023-08-21T03:36:08.029439Z", + "iopub.status.idle": "2023-08-21T03:36:08.031650Z", + "shell.execute_reply": "2023-08-21T03:36:08.031378Z" } }, "outputs": [ @@ -2752,7 +2752,7 @@ }, { "cell_type": "markdown", - "id": "2dcd98eb", + "id": "9a93dc96", "metadata": {}, "source": [ " Similarly, the following code fails to extract the submatrix comprised of the second and fourth rows and the first, third, and fourth columns:" @@ -2761,13 +2761,13 @@ { "cell_type": "code", "execution_count": 63, - "id": "b4d6bd49", + "id": "5da5bda8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.803507Z", - "iopub.status.busy": "2023-08-15T18:49:00.803385Z", - "iopub.status.idle": "2023-08-15T18:49:00.827278Z", - "shell.execute_reply": "2023-08-15T18:49:00.826930Z" + "iopub.execute_input": "2023-08-21T03:36:08.033127Z", + "iopub.status.busy": "2023-08-21T03:36:08.033016Z", + "iopub.status.idle": "2023-08-21T03:36:08.056275Z", + "shell.execute_reply": "2023-08-21T03:36:08.056014Z" } }, "outputs": [ @@ -2789,7 +2789,7 @@ }, { "cell_type": "markdown", - "id": "dcac422f", + "id": "f4fd2f83", "metadata": {}, "source": [ "We can see what has gone wrong here. When supplied with two indexing lists, the `numpy` interpretation is that these provide pairs of $i,j$ indices for a series of entries. That is why the pair of lists must have the same length. However, that was not our intent, since we are looking for a submatrix.\n", @@ -2800,13 +2800,13 @@ { "cell_type": "code", "execution_count": 64, - "id": "e46c3267", + "id": "ac48a95b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.828896Z", - "iopub.status.busy": "2023-08-15T18:49:00.828781Z", - "iopub.status.idle": "2023-08-15T18:49:00.831271Z", - "shell.execute_reply": "2023-08-15T18:49:00.831008Z" + "iopub.execute_input": "2023-08-21T03:36:08.057926Z", + "iopub.status.busy": "2023-08-21T03:36:08.057815Z", + "iopub.status.idle": "2023-08-21T03:36:08.060231Z", + "shell.execute_reply": "2023-08-21T03:36:08.059980Z" }, "lines_to_next_cell": 0 }, @@ -2829,7 +2829,7 @@ }, { "cell_type": "markdown", - "id": "d14bb320", + "id": "5e8388aa", "metadata": {}, "source": [ " " @@ -2837,7 +2837,7 @@ }, { "cell_type": "markdown", - "id": "a3d7e667", + "id": "a09467cd", "metadata": {}, "source": [ "There are more efficient ways of achieving the same result.\n", @@ -2849,13 +2849,13 @@ { "cell_type": "code", "execution_count": 65, - "id": "96d2355e", + "id": "ee195cc4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.832787Z", - "iopub.status.busy": "2023-08-15T18:49:00.832688Z", - "iopub.status.idle": "2023-08-15T18:49:00.835031Z", - "shell.execute_reply": "2023-08-15T18:49:00.834787Z" + "iopub.execute_input": "2023-08-21T03:36:08.061798Z", + "iopub.status.busy": "2023-08-21T03:36:08.061686Z", + "iopub.status.idle": "2023-08-21T03:36:08.063979Z", + "shell.execute_reply": "2023-08-21T03:36:08.063715Z" }, "lines_to_next_cell": 2 }, @@ -2879,7 +2879,7 @@ }, { "cell_type": "markdown", - "id": "d462675f", + "id": "b7177cb9", "metadata": {}, "source": [ "Alternatively, we can subset matrices efficiently using slices.\n", @@ -2892,13 +2892,13 @@ { "cell_type": "code", "execution_count": 66, - "id": "326ef740", + "id": "48917bb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.836551Z", - "iopub.status.busy": "2023-08-15T18:49:00.836441Z", - "iopub.status.idle": "2023-08-15T18:49:00.838682Z", - "shell.execute_reply": "2023-08-15T18:49:00.838419Z" + "iopub.execute_input": "2023-08-21T03:36:08.067067Z", + "iopub.status.busy": "2023-08-21T03:36:08.066955Z", + "iopub.status.idle": "2023-08-21T03:36:08.069279Z", + "shell.execute_reply": "2023-08-21T03:36:08.068966Z" }, "lines_to_next_cell": 0 }, @@ -2921,7 +2921,7 @@ }, { "cell_type": "markdown", - "id": "e2eeed28", + "id": "697c5ab0", "metadata": {}, "source": [ " " @@ -2929,7 +2929,7 @@ }, { "cell_type": "markdown", - "id": "5139b99f", + "id": "c647dbf0", "metadata": {}, "source": [ "Why are we able to retrieve a submatrix directly using slices but not using lists?\n", @@ -2951,7 +2951,7 @@ }, { "cell_type": "markdown", - "id": "417c640e", + "id": "2dce8961", "metadata": {}, "source": [ "### Boolean Indexing\n", @@ -2962,13 +2962,13 @@ { "cell_type": "code", "execution_count": 67, - "id": "62ad65f2", + "id": "5d4caf22", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.840331Z", - "iopub.status.busy": "2023-08-15T18:49:00.840207Z", - "iopub.status.idle": "2023-08-15T18:49:00.842474Z", - "shell.execute_reply": "2023-08-15T18:49:00.842219Z" + "iopub.execute_input": "2023-08-21T03:36:08.070903Z", + "iopub.status.busy": "2023-08-21T03:36:08.070799Z", + "iopub.status.idle": "2023-08-21T03:36:08.072959Z", + "shell.execute_reply": "2023-08-21T03:36:08.072701Z" }, "lines_to_next_cell": 0 }, @@ -2991,7 +2991,7 @@ }, { "cell_type": "markdown", - "id": "117d1718", + "id": "d83fadb5", "metadata": {}, "source": [ "We now set two of the elements to `True`. " @@ -3000,13 +3000,13 @@ { "cell_type": "code", "execution_count": 68, - "id": "683f49a3", + "id": "348820e3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.843979Z", - "iopub.status.busy": "2023-08-15T18:49:00.843879Z", - "iopub.status.idle": "2023-08-15T18:49:00.846073Z", - "shell.execute_reply": "2023-08-15T18:49:00.845769Z" + "iopub.execute_input": "2023-08-21T03:36:08.074422Z", + "iopub.status.busy": "2023-08-21T03:36:08.074322Z", + "iopub.status.idle": "2023-08-21T03:36:08.076398Z", + "shell.execute_reply": "2023-08-21T03:36:08.076106Z" } }, "outputs": [ @@ -3028,7 +3028,7 @@ }, { "cell_type": "markdown", - "id": "5036e0f2", + "id": "a0fb487d", "metadata": {}, "source": [ "Note that the elements of `keep_rows`, when viewed as integers, are the same as the\n", @@ -3039,13 +3039,13 @@ { "cell_type": "code", "execution_count": 69, - "id": "ede73656", + "id": "4aafe45b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.847573Z", - "iopub.status.busy": "2023-08-15T18:49:00.847472Z", - "iopub.status.idle": "2023-08-15T18:49:00.849818Z", - "shell.execute_reply": "2023-08-15T18:49:00.849531Z" + "iopub.execute_input": "2023-08-21T03:36:08.077952Z", + "iopub.status.busy": "2023-08-21T03:36:08.077853Z", + "iopub.status.idle": "2023-08-21T03:36:08.080163Z", + "shell.execute_reply": "2023-08-21T03:36:08.079901Z" } }, "outputs": [ @@ -3066,7 +3066,7 @@ }, { "cell_type": "markdown", - "id": "45587df2", + "id": "603c0c53", "metadata": {}, "source": [ "(Here, the function `np.all()` has checked whether\n", @@ -3075,7 +3075,7 @@ }, { "cell_type": "markdown", - "id": "cd3e2b53", + "id": "b0a449d1", "metadata": {}, "source": [ " However, even though `np.array([0,1,0,1])` and `keep_rows` are equal according to `==`, they index different sets of rows!\n", @@ -3085,13 +3085,13 @@ { "cell_type": "code", "execution_count": 70, - "id": "f65c75d6", + "id": "1be6a588", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.851339Z", - "iopub.status.busy": "2023-08-15T18:49:00.851241Z", - "iopub.status.idle": "2023-08-15T18:49:00.853566Z", - "shell.execute_reply": "2023-08-15T18:49:00.853301Z" + "iopub.execute_input": "2023-08-21T03:36:08.081637Z", + "iopub.status.busy": "2023-08-21T03:36:08.081537Z", + "iopub.status.idle": "2023-08-21T03:36:08.083796Z", + "shell.execute_reply": "2023-08-21T03:36:08.083505Z" } }, "outputs": [ @@ -3115,7 +3115,7 @@ }, { "cell_type": "markdown", - "id": "12479298", + "id": "e45bbebe", "metadata": {}, "source": [ " By contrast, `keep_rows` retrieves only the second and fourth rows of `A` --- i.e. the rows for which the Boolean equals `TRUE`. " @@ -3124,13 +3124,13 @@ { "cell_type": "code", "execution_count": 71, - "id": "31a8ff76", + "id": "e83da57b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.855023Z", - "iopub.status.busy": "2023-08-15T18:49:00.854922Z", - "iopub.status.idle": "2023-08-15T18:49:00.857083Z", - "shell.execute_reply": "2023-08-15T18:49:00.856833Z" + "iopub.execute_input": "2023-08-21T03:36:08.085319Z", + "iopub.status.busy": "2023-08-21T03:36:08.085216Z", + "iopub.status.idle": "2023-08-21T03:36:08.087359Z", + "shell.execute_reply": "2023-08-21T03:36:08.087095Z" } }, "outputs": [ @@ -3152,7 +3152,7 @@ }, { "cell_type": "markdown", - "id": "40932333", + "id": "374d34a7", "metadata": {}, "source": [ "This example shows that Booleans and integers are treated differently by `numpy`." @@ -3160,7 +3160,7 @@ }, { "cell_type": "markdown", - "id": "8751cf99", + "id": "25db74bf", "metadata": {}, "source": [ "We again make use of the `np.ix_()` function\n", @@ -3171,13 +3171,13 @@ { "cell_type": "code", "execution_count": 72, - "id": "c91f330e", + "id": "09675294", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.858714Z", - "iopub.status.busy": "2023-08-15T18:49:00.858613Z", - "iopub.status.idle": "2023-08-15T18:49:00.861203Z", - "shell.execute_reply": "2023-08-15T18:49:00.860913Z" + "iopub.execute_input": "2023-08-21T03:36:08.088904Z", + "iopub.status.busy": "2023-08-21T03:36:08.088804Z", + "iopub.status.idle": "2023-08-21T03:36:08.091266Z", + "shell.execute_reply": "2023-08-21T03:36:08.090985Z" } }, "outputs": [ @@ -3202,7 +3202,7 @@ }, { "cell_type": "markdown", - "id": "e8b9619b", + "id": "0166c179", "metadata": {}, "source": [ "We can also mix a list with an array of Booleans in the arguments to `np.ix_()`:" @@ -3211,13 +3211,13 @@ { "cell_type": "code", "execution_count": 73, - "id": "fb53de70", + "id": "a85614e4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.862684Z", - "iopub.status.busy": "2023-08-15T18:49:00.862579Z", - "iopub.status.idle": "2023-08-15T18:49:00.864973Z", - "shell.execute_reply": "2023-08-15T18:49:00.864715Z" + "iopub.execute_input": "2023-08-21T03:36:08.092757Z", + "iopub.status.busy": "2023-08-21T03:36:08.092664Z", + "iopub.status.idle": "2023-08-21T03:36:08.094873Z", + "shell.execute_reply": "2023-08-21T03:36:08.094581Z" }, "lines_to_next_cell": 0 }, @@ -3241,7 +3241,7 @@ }, { "cell_type": "markdown", - "id": "18f16a0a", + "id": "f6a338f1", "metadata": {}, "source": [ " " @@ -3249,7 +3249,7 @@ }, { "cell_type": "markdown", - "id": "f6e932f4", + "id": "b3541e0c", "metadata": {}, "source": [ "For more details on indexing in `numpy`, readers are referred\n", @@ -3258,7 +3258,7 @@ }, { "cell_type": "markdown", - "id": "8c59352f", + "id": "ab75f168", "metadata": {}, "source": [ "## Loading Data\n", @@ -3275,7 +3275,7 @@ }, { "cell_type": "markdown", - "id": "4417d4d4", + "id": "ca018d13", "metadata": {}, "source": [ "### Reading in a Data Set\n", @@ -3294,7 +3294,7 @@ }, { "cell_type": "markdown", - "id": "f9fd0896", + "id": "b76342df", "metadata": {}, "source": [ "We will begin by reading in `Auto.csv`, available on the book website. This is a comma-separated file, and can be read in using `pd.read_csv()`: " @@ -3303,13 +3303,13 @@ { "cell_type": "code", "execution_count": 74, - "id": "cc87ed8c", + "id": "ff81e644", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:00.866686Z", - "iopub.status.busy": "2023-08-15T18:49:00.866579Z", - "iopub.status.idle": "2023-08-15T18:49:01.152579Z", - "shell.execute_reply": "2023-08-15T18:49:01.152290Z" + "iopub.execute_input": "2023-08-21T03:36:08.096546Z", + "iopub.status.busy": "2023-08-21T03:36:08.096449Z", + "iopub.status.idle": "2023-08-21T03:36:08.317557Z", + "shell.execute_reply": "2023-08-21T03:36:08.317278Z" } }, "outputs": [ @@ -3526,7 +3526,7 @@ }, { "cell_type": "markdown", - "id": "5c4cf682", + "id": "42d6a799", "metadata": {}, "source": [ "The book website also has a whitespace-delimited version of this data, called `Auto.data`. This can be read in as follows:" @@ -3535,13 +3535,13 @@ { "cell_type": "code", "execution_count": 75, - "id": "69b34e00", + "id": "5b45aa7f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.154192Z", - "iopub.status.busy": "2023-08-15T18:49:01.154082Z", - "iopub.status.idle": "2023-08-15T18:49:01.157257Z", - "shell.execute_reply": "2023-08-15T18:49:01.157026Z" + "iopub.execute_input": "2023-08-21T03:36:08.319194Z", + "iopub.status.busy": "2023-08-21T03:36:08.319082Z", + "iopub.status.idle": "2023-08-21T03:36:08.322312Z", + "shell.execute_reply": "2023-08-21T03:36:08.322063Z" }, "lines_to_next_cell": 0 }, @@ -3552,7 +3552,7 @@ }, { "cell_type": "markdown", - "id": "61b12987", + "id": "f942c457", "metadata": {}, "source": [ " Both `Auto.csv` and `Auto.data` are simply text\n", @@ -3563,7 +3563,7 @@ }, { "cell_type": "markdown", - "id": "8de34877", + "id": "1aceff38", "metadata": {}, "source": [ "We now take a look at the column of `Auto` corresponding to the variable `horsepower`: " @@ -3572,13 +3572,13 @@ { "cell_type": "code", "execution_count": 76, - "id": "c45b3e32", + "id": "413f626a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.158784Z", - "iopub.status.busy": "2023-08-15T18:49:01.158680Z", - "iopub.status.idle": "2023-08-15T18:49:01.161285Z", - "shell.execute_reply": "2023-08-15T18:49:01.161037Z" + "iopub.execute_input": "2023-08-21T03:36:08.323776Z", + "iopub.status.busy": "2023-08-21T03:36:08.323686Z", + "iopub.status.idle": "2023-08-21T03:36:08.326230Z", + "shell.execute_reply": "2023-08-21T03:36:08.325989Z" }, "lines_to_next_cell": 0 }, @@ -3611,7 +3611,7 @@ }, { "cell_type": "markdown", - "id": "7b5df8f9", + "id": "fd11e757", "metadata": {}, "source": [ "We see that the `dtype` of this column is `object`. \n", @@ -3623,13 +3623,13 @@ { "cell_type": "code", "execution_count": 77, - "id": "fdac0ada", + "id": "57b86346", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.162652Z", - "iopub.status.busy": "2023-08-15T18:49:01.162556Z", - "iopub.status.idle": "2023-08-15T18:49:01.164858Z", - "shell.execute_reply": "2023-08-15T18:49:01.164626Z" + "iopub.execute_input": "2023-08-21T03:36:08.327630Z", + "iopub.status.busy": "2023-08-21T03:36:08.327527Z", + "iopub.status.idle": "2023-08-21T03:36:08.329871Z", + "shell.execute_reply": "2023-08-21T03:36:08.329620Z" }, "lines_to_next_cell": 0 }, @@ -3664,7 +3664,7 @@ }, { "cell_type": "markdown", - "id": "dc6e92aa", + "id": "f0aee233", "metadata": {}, "source": [ "We see the culprit is the value `?`, which is being used to encode missing values.\n", @@ -3673,7 +3673,7 @@ }, { "cell_type": "markdown", - "id": "f15457ad", + "id": "b7b032d4", "metadata": {}, "source": [ "To fix the problem, we must provide `pd.read_csv()` with an argument called `na_values`.\n", @@ -3684,13 +3684,13 @@ { "cell_type": "code", "execution_count": 78, - "id": "883e0b73", + "id": "a9698b26", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.166263Z", - "iopub.status.busy": "2023-08-15T18:49:01.166173Z", - "iopub.status.idle": "2023-08-15T18:49:01.169588Z", - "shell.execute_reply": "2023-08-15T18:49:01.169351Z" + "iopub.execute_input": "2023-08-21T03:36:08.331328Z", + "iopub.status.busy": "2023-08-21T03:36:08.331230Z", + "iopub.status.idle": "2023-08-21T03:36:08.334947Z", + "shell.execute_reply": "2023-08-21T03:36:08.334715Z" }, "lines_to_next_cell": 2 }, @@ -3715,7 +3715,7 @@ }, { "cell_type": "markdown", - "id": "cbc53f2a", + "id": "13cb364e", "metadata": {}, "source": [ "The `Auto.shape` attribute tells us that the data has 397\n", @@ -3725,13 +3725,13 @@ { "cell_type": "code", "execution_count": 79, - "id": "c733c1e8", + "id": "4877cb2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.170985Z", - "iopub.status.busy": "2023-08-15T18:49:01.170894Z", - "iopub.status.idle": "2023-08-15T18:49:01.173006Z", - "shell.execute_reply": "2023-08-15T18:49:01.172777Z" + "iopub.execute_input": "2023-08-21T03:36:08.336400Z", + "iopub.status.busy": "2023-08-21T03:36:08.336322Z", + "iopub.status.idle": "2023-08-21T03:36:08.338340Z", + "shell.execute_reply": "2023-08-21T03:36:08.338101Z" } }, "outputs": [ @@ -3752,7 +3752,7 @@ }, { "cell_type": "markdown", - "id": "94c32cfb", + "id": "3fdc6f47", "metadata": {}, "source": [ "There are\n", @@ -3764,13 +3764,13 @@ { "cell_type": "code", "execution_count": 80, - "id": "0e0e9956", + "id": "2ba1d33d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.174378Z", - "iopub.status.busy": "2023-08-15T18:49:01.174286Z", - "iopub.status.idle": "2023-08-15T18:49:01.177052Z", - "shell.execute_reply": "2023-08-15T18:49:01.176811Z" + "iopub.execute_input": "2023-08-21T03:36:08.339714Z", + "iopub.status.busy": "2023-08-21T03:36:08.339640Z", + "iopub.status.idle": "2023-08-21T03:36:08.342116Z", + "shell.execute_reply": "2023-08-21T03:36:08.341883Z" }, "lines_to_next_cell": 2 }, @@ -3793,7 +3793,7 @@ }, { "cell_type": "markdown", - "id": "7250498b", + "id": "ac9748d9", "metadata": {}, "source": [ "### Basics of Selecting Rows and Columns\n", @@ -3804,13 +3804,13 @@ { "cell_type": "code", "execution_count": 81, - "id": "0477b4ff", + "id": "3d03baab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.178507Z", - "iopub.status.busy": "2023-08-15T18:49:01.178399Z", - "iopub.status.idle": "2023-08-15T18:49:01.180581Z", - "shell.execute_reply": "2023-08-15T18:49:01.180288Z" + "iopub.execute_input": "2023-08-21T03:36:08.343548Z", + "iopub.status.busy": "2023-08-21T03:36:08.343471Z", + "iopub.status.idle": "2023-08-21T03:36:08.345627Z", + "shell.execute_reply": "2023-08-21T03:36:08.345379Z" }, "lines_to_next_cell": 2 }, @@ -3835,7 +3835,7 @@ }, { "cell_type": "markdown", - "id": "c2084300", + "id": "d24d4d42", "metadata": {}, "source": [ "Accessing the rows and columns of a data frame is similar, but not identical, to accessing the rows and columns of an array. \n", @@ -3848,13 +3848,13 @@ { "cell_type": "code", "execution_count": 82, - "id": "a989e541", + "id": "410b4dd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.182149Z", - "iopub.status.busy": "2023-08-15T18:49:01.182047Z", - "iopub.status.idle": "2023-08-15T18:49:01.186385Z", - "shell.execute_reply": "2023-08-15T18:49:01.186138Z" + "iopub.execute_input": "2023-08-21T03:36:08.347031Z", + "iopub.status.busy": "2023-08-21T03:36:08.346955Z", + "iopub.status.idle": "2023-08-21T03:36:08.351303Z", + "shell.execute_reply": "2023-08-21T03:36:08.351081Z" }, "lines_to_next_cell": 0 }, @@ -3955,7 +3955,7 @@ }, { "cell_type": "markdown", - "id": "b5af114e", + "id": "4ea0be7b", "metadata": {}, "source": [ "Similarly, an array of Booleans can be used to subset the rows:" @@ -3964,13 +3964,13 @@ { "cell_type": "code", "execution_count": 83, - "id": "d336e7ce", + "id": "3540804d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.187796Z", - "iopub.status.busy": "2023-08-15T18:49:01.187719Z", - "iopub.status.idle": "2023-08-15T18:49:01.200825Z", - "shell.execute_reply": "2023-08-15T18:49:01.200533Z" + "iopub.execute_input": "2023-08-21T03:36:08.352671Z", + "iopub.status.busy": "2023-08-21T03:36:08.352588Z", + "iopub.status.idle": "2023-08-21T03:36:08.365290Z", + "shell.execute_reply": "2023-08-21T03:36:08.365017Z" }, "lines_to_next_cell": 0 }, @@ -4842,7 +4842,7 @@ }, { "cell_type": "markdown", - "id": "2f09c4df", + "id": "a02221a2", "metadata": {}, "source": [ "However, if we pass in a list of strings to the `[]` method, then we obtain a data frame containing the corresponding set of *columns*. " @@ -4851,13 +4851,13 @@ { "cell_type": "code", "execution_count": 84, - "id": "88e9a63b", + "id": "66d174f1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.202619Z", - "iopub.status.busy": "2023-08-15T18:49:01.202479Z", - "iopub.status.idle": "2023-08-15T18:49:01.207774Z", - "shell.execute_reply": "2023-08-15T18:49:01.207524Z" + "iopub.execute_input": "2023-08-21T03:36:08.366746Z", + "iopub.status.busy": "2023-08-21T03:36:08.366648Z", + "iopub.status.idle": "2023-08-21T03:36:08.371142Z", + "shell.execute_reply": "2023-08-21T03:36:08.370889Z" }, "lines_to_next_cell": 0 }, @@ -4976,7 +4976,7 @@ }, { "cell_type": "markdown", - "id": "b372687d", + "id": "54bef6a3", "metadata": {}, "source": [ "Since we did not specify an *index* column when we loaded our data frame, the rows are labeled using integers\n", @@ -4986,13 +4986,13 @@ { "cell_type": "code", "execution_count": 85, - "id": "aed049d8", + "id": "52789c77", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.209353Z", - "iopub.status.busy": "2023-08-15T18:49:01.209247Z", - "iopub.status.idle": "2023-08-15T18:49:01.211692Z", - "shell.execute_reply": "2023-08-15T18:49:01.211381Z" + "iopub.execute_input": "2023-08-21T03:36:08.372548Z", + "iopub.status.busy": "2023-08-21T03:36:08.372468Z", + "iopub.status.idle": "2023-08-21T03:36:08.374676Z", + "shell.execute_reply": "2023-08-21T03:36:08.374427Z" }, "lines_to_next_cell": 0 }, @@ -5017,7 +5017,7 @@ }, { "cell_type": "markdown", - "id": "f18f3695", + "id": "3f5fcb26", "metadata": {}, "source": [ "We can use the\n", @@ -5027,13 +5027,13 @@ { "cell_type": "code", "execution_count": 86, - "id": "c93cefd3", + "id": "d83650bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.213226Z", - "iopub.status.busy": "2023-08-15T18:49:01.213124Z", - "iopub.status.idle": "2023-08-15T18:49:01.219346Z", - "shell.execute_reply": "2023-08-15T18:49:01.219084Z" + "iopub.execute_input": "2023-08-21T03:36:08.376096Z", + "iopub.status.busy": "2023-08-21T03:36:08.376016Z", + "iopub.status.idle": "2023-08-21T03:36:08.382023Z", + "shell.execute_reply": "2023-08-21T03:36:08.381780Z" } }, "outputs": [ @@ -5251,13 +5251,13 @@ { "cell_type": "code", "execution_count": 87, - "id": "84947a78", + "id": "880d79d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.220731Z", - "iopub.status.busy": "2023-08-15T18:49:01.220656Z", - "iopub.status.idle": "2023-08-15T18:49:01.222770Z", - "shell.execute_reply": "2023-08-15T18:49:01.222521Z" + "iopub.execute_input": "2023-08-21T03:36:08.383342Z", + "iopub.status.busy": "2023-08-21T03:36:08.383266Z", + "iopub.status.idle": "2023-08-21T03:36:08.385348Z", + "shell.execute_reply": "2023-08-21T03:36:08.385111Z" }, "lines_to_next_cell": 0 }, @@ -5281,7 +5281,7 @@ }, { "cell_type": "markdown", - "id": "fc160806", + "id": "dbee53b8", "metadata": {}, "source": [ "We see that the column `'name'` is no longer there.\n", @@ -5294,13 +5294,13 @@ { "cell_type": "code", "execution_count": 88, - "id": "7ee59fae", + "id": "c01f4095", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.224183Z", - "iopub.status.busy": "2023-08-15T18:49:01.224083Z", - "iopub.status.idle": "2023-08-15T18:49:01.229143Z", - "shell.execute_reply": "2023-08-15T18:49:01.228880Z" + "iopub.execute_input": "2023-08-21T03:36:08.386800Z", + "iopub.status.busy": "2023-08-21T03:36:08.386719Z", + "iopub.status.idle": "2023-08-21T03:36:08.390900Z", + "shell.execute_reply": "2023-08-21T03:36:08.390675Z" }, "lines_to_next_cell": 0 }, @@ -5398,7 +5398,7 @@ }, { "cell_type": "markdown", - "id": "232fe34c", + "id": "29688cab", "metadata": {}, "source": [ "As an alternative to using the index name, we could retrieve the 4th and 5th rows of `Auto` using the `{iloc[]`} method:" @@ -5407,13 +5407,13 @@ { "cell_type": "code", "execution_count": 89, - "id": "4b5a0e01", + "id": "a4202eb8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.230515Z", - "iopub.status.busy": "2023-08-15T18:49:01.230412Z", - "iopub.status.idle": "2023-08-15T18:49:01.234647Z", - "shell.execute_reply": "2023-08-15T18:49:01.234396Z" + "iopub.execute_input": "2023-08-21T03:36:08.392405Z", + "iopub.status.busy": "2023-08-21T03:36:08.392322Z", + "iopub.status.idle": "2023-08-21T03:36:08.396509Z", + "shell.execute_reply": "2023-08-21T03:36:08.396244Z" }, "lines_to_next_cell": 0 }, @@ -5510,7 +5510,7 @@ }, { "cell_type": "markdown", - "id": "6c409a01", + "id": "5427ede0", "metadata": {}, "source": [ "We can also use it to retrieve the 1st, 3rd and and 4th columns of `Auto_re`:" @@ -5519,13 +5519,13 @@ { "cell_type": "code", "execution_count": 90, - "id": "8814803e", + "id": "948b2d07", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.236161Z", - "iopub.status.busy": "2023-08-15T18:49:01.236068Z", - "iopub.status.idle": "2023-08-15T18:49:01.240725Z", - "shell.execute_reply": "2023-08-15T18:49:01.240476Z" + "iopub.execute_input": "2023-08-21T03:36:08.397917Z", + "iopub.status.busy": "2023-08-21T03:36:08.397838Z", + "iopub.status.idle": "2023-08-21T03:36:08.402447Z", + "shell.execute_reply": "2023-08-21T03:36:08.402192Z" }, "lines_to_next_cell": 0 }, @@ -5663,7 +5663,7 @@ }, { "cell_type": "markdown", - "id": "f02f0d24", + "id": "b83d56eb", "metadata": {}, "source": [ "We can extract the 4th and 5th rows, as well as the 1st, 3rd and 4th columns, using\n", @@ -5673,13 +5673,13 @@ { "cell_type": "code", "execution_count": 91, - "id": "c7567dd0", + "id": "1cfdcc5c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.242172Z", - "iopub.status.busy": "2023-08-15T18:49:01.242093Z", - "iopub.status.idle": "2023-08-15T18:49:01.245535Z", - "shell.execute_reply": "2023-08-15T18:49:01.245278Z" + "iopub.execute_input": "2023-08-21T03:36:08.403773Z", + "iopub.status.busy": "2023-08-21T03:36:08.403692Z", + "iopub.status.idle": "2023-08-21T03:36:08.407036Z", + "shell.execute_reply": "2023-08-21T03:36:08.406794Z" }, "lines_to_next_cell": 0 }, @@ -5751,7 +5751,7 @@ }, { "cell_type": "markdown", - "id": "3073ab09", + "id": "2bde6514", "metadata": {}, "source": [ "Index entries need not be unique: there are several cars in the data frame named `ford galaxie 500`." @@ -5760,13 +5760,13 @@ { "cell_type": "code", "execution_count": 92, - "id": "63638341", + "id": "fd9c5cda", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.246909Z", - "iopub.status.busy": "2023-08-15T18:49:01.246831Z", - "iopub.status.idle": "2023-08-15T18:49:01.250226Z", - "shell.execute_reply": "2023-08-15T18:49:01.249979Z" + "iopub.execute_input": "2023-08-21T03:36:08.408461Z", + "iopub.status.busy": "2023-08-21T03:36:08.408387Z", + "iopub.status.idle": "2023-08-21T03:36:08.411673Z", + "shell.execute_reply": "2023-08-21T03:36:08.411429Z" }, "lines_to_next_cell": 0 }, @@ -5840,7 +5840,7 @@ }, { "cell_type": "markdown", - "id": "2fbe4a9b", + "id": "4d097282", "metadata": {}, "source": [ "### More on Selecting Rows and Columns\n", @@ -5853,13 +5853,13 @@ { "cell_type": "code", "execution_count": 93, - "id": "57d6de11", + "id": "6d431cb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.251615Z", - "iopub.status.busy": "2023-08-15T18:49:01.251531Z", - "iopub.status.idle": "2023-08-15T18:49:01.257033Z", - "shell.execute_reply": "2023-08-15T18:49:01.256798Z" + "iopub.execute_input": "2023-08-21T03:36:08.413092Z", + "iopub.status.busy": "2023-08-21T03:36:08.413016Z", + "iopub.status.idle": "2023-08-21T03:36:08.418535Z", + "shell.execute_reply": "2023-08-21T03:36:08.418303Z" }, "lines_to_next_cell": 2 }, @@ -6264,7 +6264,7 @@ }, { "cell_type": "markdown", - "id": "a58067ce", + "id": "838a03e0", "metadata": {}, "source": [ "To do this more concisely, we can use an anonymous function called a `lambda`: " @@ -6273,13 +6273,13 @@ { "cell_type": "code", "execution_count": 94, - "id": "ed95866c", + "id": "fac41ce1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.258351Z", - "iopub.status.busy": "2023-08-15T18:49:01.258278Z", - "iopub.status.idle": "2023-08-15T18:49:01.263791Z", - "shell.execute_reply": "2023-08-15T18:49:01.263537Z" + "iopub.execute_input": "2023-08-21T03:36:08.419882Z", + "iopub.status.busy": "2023-08-21T03:36:08.419806Z", + "iopub.status.idle": "2023-08-21T03:36:08.425319Z", + "shell.execute_reply": "2023-08-21T03:36:08.425073Z" }, "lines_to_next_cell": 0 }, @@ -6683,7 +6683,7 @@ }, { "cell_type": "markdown", - "id": "13bb6d1f", + "id": "08e61254", "metadata": {}, "source": [ "The `lambda` call creates a function that takes a single\n", @@ -6697,13 +6697,13 @@ { "cell_type": "code", "execution_count": 95, - "id": "e3725c98", + "id": "b0885654", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.265199Z", - "iopub.status.busy": "2023-08-15T18:49:01.265115Z", - "iopub.status.idle": "2023-08-15T18:49:01.269816Z", - "shell.execute_reply": "2023-08-15T18:49:01.269583Z" + "iopub.execute_input": "2023-08-21T03:36:08.426701Z", + "iopub.status.busy": "2023-08-21T03:36:08.426621Z", + "iopub.status.idle": "2023-08-21T03:36:08.431378Z", + "shell.execute_reply": "2023-08-21T03:36:08.431148Z" }, "lines_to_next_cell": 0 }, @@ -6965,7 +6965,7 @@ }, { "cell_type": "markdown", - "id": "6da7a099", + "id": "d87fc459", "metadata": {}, "source": [ "The symbol `&` computes an element-wise *and* operation.\n", @@ -6977,13 +6977,13 @@ { "cell_type": "code", "execution_count": 96, - "id": "f617c333", + "id": "213945a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.271218Z", - "iopub.status.busy": "2023-08-15T18:49:01.271142Z", - "iopub.status.idle": "2023-08-15T18:49:01.277457Z", - "shell.execute_reply": "2023-08-15T18:49:01.277189Z" + "iopub.execute_input": "2023-08-21T03:36:08.432780Z", + "iopub.status.busy": "2023-08-21T03:36:08.432696Z", + "iopub.status.idle": "2023-08-21T03:36:08.438473Z", + "shell.execute_reply": "2023-08-21T03:36:08.438250Z" }, "lines_to_next_cell": 0 }, @@ -7349,7 +7349,7 @@ }, { "cell_type": "markdown", - "id": "924428a0", + "id": "8a940fd1", "metadata": {}, "source": [ "Here, the symbol `|` computes an element-wise *or* operation.\n", @@ -7368,13 +7368,13 @@ { "cell_type": "code", "execution_count": 97, - "id": "17f13a72", + "id": "a3c4060a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.278887Z", - "iopub.status.busy": "2023-08-15T18:49:01.278782Z", - "iopub.status.idle": "2023-08-15T18:49:01.280597Z", - "shell.execute_reply": "2023-08-15T18:49:01.280357Z" + "iopub.execute_input": "2023-08-21T03:36:08.439902Z", + "iopub.status.busy": "2023-08-21T03:36:08.439825Z", + "iopub.status.idle": "2023-08-21T03:36:08.441707Z", + "shell.execute_reply": "2023-08-21T03:36:08.441464Z" }, "lines_to_next_cell": 0 }, @@ -7396,7 +7396,7 @@ }, { "cell_type": "markdown", - "id": "15f0c1b1", + "id": "9117e3a1", "metadata": {}, "source": [ "The indented code beneath the line with the `for` statement is run\n", @@ -7412,13 +7412,13 @@ { "cell_type": "code", "execution_count": 98, - "id": "07e6a011", + "id": "f2bffb69", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.282018Z", - "iopub.status.busy": "2023-08-15T18:49:01.281918Z", - "iopub.status.idle": "2023-08-15T18:49:01.283785Z", - "shell.execute_reply": "2023-08-15T18:49:01.283534Z" + "iopub.execute_input": "2023-08-21T03:36:08.443349Z", + "iopub.status.busy": "2023-08-21T03:36:08.443241Z", + "iopub.status.idle": "2023-08-21T03:36:08.445173Z", + "shell.execute_reply": "2023-08-21T03:36:08.444935Z" }, "lines_to_next_cell": 0 }, @@ -7441,7 +7441,7 @@ }, { "cell_type": "markdown", - "id": "fd8124cb", + "id": "9f99e85b", "metadata": {}, "source": [ "Above, we summed over each combination of `value` and `weight`.\n", @@ -7464,13 +7464,13 @@ { "cell_type": "code", "execution_count": 99, - "id": "377ab16f", + "id": "ee827a53", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.285159Z", - "iopub.status.busy": "2023-08-15T18:49:01.285060Z", - "iopub.status.idle": "2023-08-15T18:49:01.286977Z", - "shell.execute_reply": "2023-08-15T18:49:01.286756Z" + "iopub.execute_input": "2023-08-21T03:36:08.446610Z", + "iopub.status.busy": "2023-08-21T03:36:08.446520Z", + "iopub.status.idle": "2023-08-21T03:36:08.448323Z", + "shell.execute_reply": "2023-08-21T03:36:08.448070Z" } }, "outputs": [ @@ -7492,7 +7492,7 @@ }, { "cell_type": "markdown", - "id": "345a595b", + "id": "dec18466", "metadata": {}, "source": [ "### String Formatting\n", @@ -7519,13 +7519,13 @@ { "cell_type": "code", "execution_count": 100, - "id": "91276344", + "id": "3a097fbc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.288402Z", - "iopub.status.busy": "2023-08-15T18:49:01.288304Z", - "iopub.status.idle": "2023-08-15T18:49:01.293596Z", - "shell.execute_reply": "2023-08-15T18:49:01.293335Z" + "iopub.execute_input": "2023-08-21T03:36:08.449714Z", + "iopub.status.busy": "2023-08-21T03:36:08.449623Z", + "iopub.status.idle": "2023-08-21T03:36:08.454097Z", + "shell.execute_reply": "2023-08-21T03:36:08.453813Z" }, "lines_to_next_cell": 2 }, @@ -7615,13 +7615,13 @@ { "cell_type": "code", "execution_count": 101, - "id": "c655fcd1", + "id": "e064e170", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.294914Z", - "iopub.status.busy": "2023-08-15T18:49:01.294824Z", - "iopub.status.idle": "2023-08-15T18:49:01.297196Z", - "shell.execute_reply": "2023-08-15T18:49:01.296959Z" + "iopub.execute_input": "2023-08-21T03:36:08.455528Z", + "iopub.status.busy": "2023-08-21T03:36:08.455447Z", + "iopub.status.idle": "2023-08-21T03:36:08.457783Z", + "shell.execute_reply": "2023-08-21T03:36:08.457543Z" }, "lines_to_next_cell": 0 }, @@ -7647,7 +7647,7 @@ }, { "cell_type": "markdown", - "id": "7267a350", + "id": "7a3e4dd8", "metadata": {}, "source": [ "We see that the `template.format()` method expects two arguments `{0}`\n", @@ -7661,7 +7661,7 @@ }, { "cell_type": "markdown", - "id": "763fe84a", + "id": "d8fd496a", "metadata": {}, "source": [ "## Additional Graphical and Numerical Summaries\n", @@ -7672,13 +7672,13 @@ { "cell_type": "code", "execution_count": 102, - "id": "cd9e0046", + "id": "c915ca52", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.298614Z", - "iopub.status.busy": "2023-08-15T18:49:01.298525Z", - "iopub.status.idle": "2023-08-15T18:49:01.391402Z", - "shell.execute_reply": "2023-08-15T18:49:01.391128Z" + "iopub.execute_input": "2023-08-21T03:36:08.459248Z", + "iopub.status.busy": "2023-08-21T03:36:08.459155Z", + "iopub.status.idle": "2023-08-21T03:36:08.552220Z", + "shell.execute_reply": "2023-08-21T03:36:08.551914Z" }, "lines_to_next_cell": 0 }, @@ -7712,7 +7712,7 @@ }, { "cell_type": "markdown", - "id": "0f0f16b8", + "id": "63d47021", "metadata": {}, "source": [ "We can address this by accessing the columns directly:" @@ -7721,13 +7721,13 @@ { "cell_type": "code", "execution_count": 103, - "id": "49d239e5", + "id": "65cd6d02", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.393117Z", - "iopub.status.busy": "2023-08-15T18:49:01.393003Z", - "iopub.status.idle": "2023-08-15T18:49:01.483359Z", - "shell.execute_reply": "2023-08-15T18:49:01.483063Z" + "iopub.execute_input": "2023-08-21T03:36:08.553877Z", + "iopub.status.busy": "2023-08-21T03:36:08.553770Z", + "iopub.status.idle": "2023-08-21T03:36:08.640715Z", + "shell.execute_reply": "2023-08-21T03:36:08.640411Z" }, "lines_to_next_cell": 0 }, @@ -7750,7 +7750,7 @@ }, { "cell_type": "markdown", - "id": "154e405c", + "id": "726836f0", "metadata": {}, "source": [ "Alternatively, we can use the `plot()` method with the call `Auto.plot()`.\n", @@ -7763,13 +7763,13 @@ { "cell_type": "code", "execution_count": 104, - "id": "5c892a6a", + "id": "76b5c0b1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.485105Z", - "iopub.status.busy": "2023-08-15T18:49:01.484987Z", - "iopub.status.idle": "2023-08-15T18:49:01.581202Z", - "shell.execute_reply": "2023-08-15T18:49:01.580905Z" + "iopub.execute_input": "2023-08-21T03:36:08.642311Z", + "iopub.status.busy": "2023-08-21T03:36:08.642208Z", + "iopub.status.idle": "2023-08-21T03:36:08.737860Z", + "shell.execute_reply": "2023-08-21T03:36:08.737565Z" }, "lines_to_next_cell": 0 }, @@ -7792,7 +7792,7 @@ }, { "cell_type": "markdown", - "id": "74ed42da", + "id": "69c46251", "metadata": {}, "source": [ "If we want to save\n", @@ -7803,13 +7803,13 @@ { "cell_type": "code", "execution_count": 105, - "id": "92a626b0", + "id": "183a2c2b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.582802Z", - "iopub.status.busy": "2023-08-15T18:49:01.582688Z", - "iopub.status.idle": "2023-08-15T18:49:01.623968Z", - "shell.execute_reply": "2023-08-15T18:49:01.623675Z" + "iopub.execute_input": "2023-08-21T03:36:08.739490Z", + "iopub.status.busy": "2023-08-21T03:36:08.739374Z", + "iopub.status.idle": "2023-08-21T03:36:08.779690Z", + "shell.execute_reply": "2023-08-21T03:36:08.779420Z" } }, "outputs": [], @@ -7820,7 +7820,7 @@ }, { "cell_type": "markdown", - "id": "7c47c9a8", + "id": "6f10cb46", "metadata": {}, "source": [ "We can further instruct the data frame to plot to a particular axes object. In this\n", @@ -7834,13 +7834,13 @@ { "cell_type": "code", "execution_count": 106, - "id": "bf9771b9", + "id": "75fbb981", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.625586Z", - "iopub.status.busy": "2023-08-15T18:49:01.625474Z", - "iopub.status.idle": "2023-08-15T18:49:01.795305Z", - "shell.execute_reply": "2023-08-15T18:49:01.795005Z" + "iopub.execute_input": "2023-08-21T03:36:08.781309Z", + "iopub.status.busy": "2023-08-21T03:36:08.781225Z", + "iopub.status.idle": "2023-08-21T03:36:08.949186Z", + "shell.execute_reply": "2023-08-21T03:36:08.948871Z" } }, "outputs": [ @@ -7862,7 +7862,7 @@ }, { "cell_type": "markdown", - "id": "a27e61c6", + "id": "53ffc0da", "metadata": {}, "source": [ "Note also that the columns of a data frame can be accessed as attributes: try typing in `Auto.horsepower`. " @@ -7870,7 +7870,7 @@ }, { "cell_type": "markdown", - "id": "7d4e028a", + "id": "1c4705e0", "metadata": {}, "source": [ "We now consider the `cylinders` variable. Typing in `Auto.cylinders.dtype` reveals that it is being treated as a quantitative variable. \n", @@ -7882,13 +7882,13 @@ { "cell_type": "code", "execution_count": 107, - "id": "745d2c5f", + "id": "55b3a1cc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.797116Z", - "iopub.status.busy": "2023-08-15T18:49:01.796991Z", - "iopub.status.idle": "2023-08-15T18:49:01.802339Z", - "shell.execute_reply": "2023-08-15T18:49:01.802067Z" + "iopub.execute_input": "2023-08-21T03:36:08.950967Z", + "iopub.status.busy": "2023-08-21T03:36:08.950852Z", + "iopub.status.idle": "2023-08-21T03:36:08.953871Z", + "shell.execute_reply": "2023-08-21T03:36:08.953602Z" }, "lines_to_next_cell": 0 }, @@ -7911,7 +7911,7 @@ }, { "cell_type": "markdown", - "id": "d9c6dc9e", + "id": "adc75408", "metadata": {}, "source": [ " Now that `cylinders` is qualitative, we can display it using\n", @@ -7921,13 +7921,13 @@ { "cell_type": "code", "execution_count": 108, - "id": "8b1069bc", + "id": "f3d88794", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.803789Z", - "iopub.status.busy": "2023-08-15T18:49:01.803689Z", - "iopub.status.idle": "2023-08-15T18:49:01.912221Z", - "shell.execute_reply": "2023-08-15T18:49:01.911925Z" + "iopub.execute_input": "2023-08-21T03:36:08.955394Z", + "iopub.status.busy": "2023-08-21T03:36:08.955297Z", + "iopub.status.idle": "2023-08-21T03:36:09.060746Z", + "shell.execute_reply": "2023-08-21T03:36:09.060425Z" } }, "outputs": [ @@ -7949,7 +7949,7 @@ }, { "cell_type": "markdown", - "id": "f96288b4", + "id": "62d6582f", "metadata": {}, "source": [ "The `hist()` method can be used to plot a *histogram*." @@ -7958,13 +7958,13 @@ { "cell_type": "code", "execution_count": 109, - "id": "d9faa85a", + "id": "eea49f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:01.914205Z", - "iopub.status.busy": "2023-08-15T18:49:01.914091Z", - "iopub.status.idle": "2023-08-15T18:49:02.015255Z", - "shell.execute_reply": "2023-08-15T18:49:02.014946Z" + "iopub.execute_input": "2023-08-21T03:36:09.062393Z", + "iopub.status.busy": "2023-08-21T03:36:09.062272Z", + "iopub.status.idle": "2023-08-21T03:36:09.164120Z", + "shell.execute_reply": "2023-08-21T03:36:09.163816Z" }, "lines_to_next_cell": 0 }, @@ -7987,7 +7987,7 @@ }, { "cell_type": "markdown", - "id": "8f743bb2", + "id": "c5a5933c", "metadata": {}, "source": [ "The color of the bars and the number of bins can be changed:" @@ -7996,13 +7996,13 @@ { "cell_type": "code", "execution_count": 110, - "id": "59d4a0b6", + "id": "d5bcfff8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:02.016993Z", - "iopub.status.busy": "2023-08-15T18:49:02.016874Z", - "iopub.status.idle": "2023-08-15T18:49:02.114274Z", - "shell.execute_reply": "2023-08-15T18:49:02.113961Z" + "iopub.execute_input": "2023-08-21T03:36:09.165860Z", + "iopub.status.busy": "2023-08-21T03:36:09.165745Z", + "iopub.status.idle": "2023-08-21T03:36:09.262378Z", + "shell.execute_reply": "2023-08-21T03:36:09.262095Z" }, "lines_to_next_cell": 0 }, @@ -8025,7 +8025,7 @@ }, { "cell_type": "markdown", - "id": "59d4f72f", + "id": "60c36b6c", "metadata": {}, "source": [ " See `Auto.hist?` for more plotting\n", @@ -8038,13 +8038,13 @@ { "cell_type": "code", "execution_count": 111, - "id": "fb5ed57d", + "id": "edb66cae", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:02.115927Z", - "iopub.status.busy": "2023-08-15T18:49:02.115815Z", - "iopub.status.idle": "2023-08-15T18:49:03.055465Z", - "shell.execute_reply": "2023-08-15T18:49:03.055199Z" + "iopub.execute_input": "2023-08-21T03:36:09.264050Z", + "iopub.status.busy": "2023-08-21T03:36:09.263936Z", + "iopub.status.idle": "2023-08-21T03:36:10.182139Z", + "shell.execute_reply": "2023-08-21T03:36:10.181842Z" }, "lines_to_next_cell": 0 }, @@ -8066,7 +8066,7 @@ }, { "cell_type": "markdown", - "id": "7f671845", + "id": "0b162bd9", "metadata": {}, "source": [ " We can also produce scatterplots\n", @@ -8076,13 +8076,13 @@ { "cell_type": "code", "execution_count": 112, - "id": "8e117e38", + "id": "4f5d25d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:03.057178Z", - "iopub.status.busy": "2023-08-15T18:49:03.057073Z", - "iopub.status.idle": "2023-08-15T18:49:03.291546Z", - "shell.execute_reply": "2023-08-15T18:49:03.291171Z" + "iopub.execute_input": "2023-08-21T03:36:10.183868Z", + "iopub.status.busy": "2023-08-21T03:36:10.183754Z", + "iopub.status.idle": "2023-08-21T03:36:10.401318Z", + "shell.execute_reply": "2023-08-21T03:36:10.401033Z" }, "lines_to_next_cell": 0 }, @@ -8106,7 +8106,7 @@ }, { "cell_type": "markdown", - "id": "97921078", + "id": "8cae5dfc", "metadata": {}, "source": [ "The `describe()` method produces a numerical summary of each column in a data frame." @@ -8115,13 +8115,13 @@ { "cell_type": "code", "execution_count": 113, - "id": "9e0b12f2", + "id": "ce7b23e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:03.293251Z", - "iopub.status.busy": "2023-08-15T18:49:03.293122Z", - "iopub.status.idle": "2023-08-15T18:49:03.299440Z", - "shell.execute_reply": "2023-08-15T18:49:03.299052Z" + "iopub.execute_input": "2023-08-21T03:36:10.403067Z", + "iopub.status.busy": "2023-08-21T03:36:10.402953Z", + "iopub.status.idle": "2023-08-21T03:36:10.408957Z", + "shell.execute_reply": "2023-08-21T03:36:10.408683Z" }, "lines_to_next_cell": 0 }, @@ -8219,7 +8219,7 @@ }, { "cell_type": "markdown", - "id": "93fc12de", + "id": "d5042294", "metadata": {}, "source": [ "We can also produce a summary of just a single column." @@ -8228,13 +8228,13 @@ { "cell_type": "code", "execution_count": 114, - "id": "ba4aa0f6", + "id": "a6545d2f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-15T18:49:03.300968Z", - "iopub.status.busy": "2023-08-15T18:49:03.300854Z", - "iopub.status.idle": "2023-08-15T18:49:03.304996Z", - "shell.execute_reply": "2023-08-15T18:49:03.304715Z" + "iopub.execute_input": "2023-08-21T03:36:10.410500Z", + "iopub.status.busy": "2023-08-21T03:36:10.410393Z", + "iopub.status.idle": "2023-08-21T03:36:10.414627Z", + "shell.execute_reply": "2023-08-21T03:36:10.414350Z" }, "lines_to_next_cell": 0 }, @@ -8265,7 +8265,7 @@ }, { "cell_type": "markdown", - "id": "c029ae61", + "id": "c2ea7f81", "metadata": {}, "source": [ "To exit `Jupyter`, select `File / Close and Halt`.\n", diff --git a/Ch03-linreg-lab.Rmd b/Ch03-linreg-lab.Rmd index 4ea50d2..930176c 100644 --- a/Ch03-linreg-lab.Rmd +++ b/Ch03-linreg-lab.Rmd @@ -15,8 +15,6 @@ jupyter: # Chapter 3 - - # Lab: Linear Regression ## Importing packages @@ -277,7 +275,7 @@ value of 25.05 for `medv` when `lstat` equals 10), but the latter are substantially wider. Next we will plot `medv` and `lstat` -using `DataFrame.plot.scatter()`, +using `DataFrame.plot.scatter()`, \definelongblankMR{plot.scatter()}{plot.slashslashscatter()} and wish to add the regression line to the resulting plot. @@ -399,7 +397,7 @@ Notice how we have compacted the first line into a succinct expression describin The `Boston` data set contains 12 variables, and so it would be cumbersome to have to type all of these in order to perform a regression using all of the predictors. -Instead, we can use the following short-hand: +Instead, we can use the following short-hand:\definelongblankMR{columns.drop()}{columns.slashslashdrop()} ```{python} terms = Boston.columns.drop('medv') diff --git a/Ch03-linreg-lab.ipynb b/Ch03-linreg-lab.ipynb index 1b5c61b..f039622 100644 --- a/Ch03-linreg-lab.ipynb +++ b/Ch03-linreg-lab.ipynb @@ -2,17 +2,16 @@ "cells": [ { "cell_type": "markdown", - "id": "82bce88a", + "id": "cfd81b34", "metadata": {}, "source": [ "\n", - "# Chapter 3\n", - "\n" + "# Chapter 3" ] }, { "cell_type": "markdown", - "id": "dcffdceb", + "id": "52e6256f", "metadata": {}, "source": [ "# Lab: Linear Regression\n", @@ -25,13 +24,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "ca5277a6", + "id": "b18c1628", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:29.402170Z", - "iopub.status.busy": "2023-08-07T00:18:29.401851Z", - "iopub.status.idle": "2023-08-07T00:18:29.884854Z", - "shell.execute_reply": "2023-08-07T00:18:29.884559Z" + "iopub.execute_input": "2023-08-21T02:28:52.978537Z", + "iopub.status.busy": "2023-08-21T02:28:52.978403Z", + "iopub.status.idle": "2023-08-21T02:28:53.456488Z", + "shell.execute_reply": "2023-08-21T02:28:53.456172Z" }, "lines_to_next_cell": 2 }, @@ -44,7 +43,7 @@ }, { "cell_type": "markdown", - "id": "95b0ae8c", + "id": "735a61a6", "metadata": {}, "source": [ "### New imports\n", @@ -58,13 +57,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "675f24e6", + "id": "a10a1d7d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:29.886827Z", - "iopub.status.busy": "2023-08-07T00:18:29.886604Z", - "iopub.status.idle": "2023-08-07T00:18:30.513216Z", - "shell.execute_reply": "2023-08-07T00:18:30.512918Z" + "iopub.execute_input": "2023-08-21T02:28:53.458574Z", + "iopub.status.busy": "2023-08-21T02:28:53.458356Z", + "iopub.status.idle": "2023-08-21T02:28:54.074306Z", + "shell.execute_reply": "2023-08-21T02:28:54.073950Z" }, "lines_to_next_cell": 0 }, @@ -75,7 +74,7 @@ }, { "cell_type": "markdown", - "id": "1fb0799f", + "id": "4c10ec5f", "metadata": {}, "source": [ " We will provide relevant details about the\n", @@ -91,13 +90,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "a0ee23c2", + "id": "756c0524", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.515096Z", - "iopub.status.busy": "2023-08-07T00:18:30.514948Z", - "iopub.status.idle": "2023-08-07T00:18:30.517757Z", - "shell.execute_reply": "2023-08-07T00:18:30.517502Z" + "iopub.execute_input": "2023-08-21T02:28:54.076206Z", + "iopub.status.busy": "2023-08-21T02:28:54.076055Z", + "iopub.status.idle": "2023-08-21T02:28:54.079277Z", + "shell.execute_reply": "2023-08-21T02:28:54.079022Z" } }, "outputs": [], @@ -109,7 +108,7 @@ }, { "cell_type": "markdown", - "id": "dbfd346e", + "id": "686eb4ee", "metadata": {}, "source": [ "As one of the import statements above is quite a long line, we inserted a line break `\\` to\n", @@ -122,13 +121,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "b35eb887", + "id": "2c370a6e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.519241Z", - "iopub.status.busy": "2023-08-07T00:18:30.519152Z", - "iopub.status.idle": "2023-08-07T00:18:30.676458Z", - "shell.execute_reply": "2023-08-07T00:18:30.675986Z" + "iopub.execute_input": "2023-08-21T02:28:54.080812Z", + "iopub.status.busy": "2023-08-21T02:28:54.080717Z", + "iopub.status.idle": "2023-08-21T02:28:54.212489Z", + "shell.execute_reply": "2023-08-21T02:28:54.212195Z" } }, "outputs": [], @@ -141,7 +140,7 @@ }, { "cell_type": "markdown", - "id": "84a8177e", + "id": "163af4a1", "metadata": {}, "source": [ "### Inspecting Objects and Namespaces\n", @@ -154,13 +153,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "961908f7", + "id": "43bcb3a9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.678594Z", - "iopub.status.busy": "2023-08-07T00:18:30.678317Z", - "iopub.status.idle": "2023-08-07T00:18:30.682161Z", - "shell.execute_reply": "2023-08-07T00:18:30.681889Z" + "iopub.execute_input": "2023-08-21T02:28:54.214288Z", + "iopub.status.busy": "2023-08-21T02:28:54.214131Z", + "iopub.status.idle": "2023-08-21T02:28:54.218521Z", + "shell.execute_reply": "2023-08-21T02:28:54.217256Z" }, "lines_to_next_cell": 0 }, @@ -218,7 +217,7 @@ }, { "cell_type": "markdown", - "id": "3efc6d99", + "id": "3d936b00", "metadata": {}, "source": [ " This shows you everything that `Python` can find at the top level.\n", @@ -235,13 +234,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "662caa15", + "id": "cb81bfb0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.683690Z", - "iopub.status.busy": "2023-08-07T00:18:30.683590Z", - "iopub.status.idle": "2023-08-07T00:18:30.686573Z", - "shell.execute_reply": "2023-08-07T00:18:30.686323Z" + "iopub.execute_input": "2023-08-21T02:28:54.228152Z", + "iopub.status.busy": "2023-08-21T02:28:54.227968Z", + "iopub.status.idle": "2023-08-21T02:28:54.231888Z", + "shell.execute_reply": "2023-08-21T02:28:54.231418Z" }, "lines_to_next_cell": 0 }, @@ -429,7 +428,7 @@ }, { "cell_type": "markdown", - "id": "49bdd416", + "id": "c5693cc8", "metadata": {}, "source": [ " This indicates that the object `A.sum` exists. In this case it is a method\n", @@ -439,13 +438,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "ebb7d126", + "id": "29e9bdab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.688076Z", - "iopub.status.busy": "2023-08-07T00:18:30.687980Z", - "iopub.status.idle": "2023-08-07T00:18:30.690330Z", - "shell.execute_reply": "2023-08-07T00:18:30.690041Z" + "iopub.execute_input": "2023-08-21T02:28:54.233644Z", + "iopub.status.busy": "2023-08-21T02:28:54.233538Z", + "iopub.status.idle": "2023-08-21T02:28:54.236077Z", + "shell.execute_reply": "2023-08-21T02:28:54.235804Z" }, "lines_to_next_cell": 0 }, @@ -467,7 +466,7 @@ }, { "cell_type": "markdown", - "id": "3b9db985", + "id": "d000df26", "metadata": {}, "source": [ " " @@ -475,7 +474,7 @@ }, { "cell_type": "markdown", - "id": "9fbed3f3", + "id": "2fff2f42", "metadata": {}, "source": [ "## Simple Linear Regression\n", @@ -497,13 +496,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "1ea46cee", + "id": "72a15de5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.693238Z", - "iopub.status.busy": "2023-08-07T00:18:30.693135Z", - "iopub.status.idle": "2023-08-07T00:18:30.700216Z", - "shell.execute_reply": "2023-08-07T00:18:30.699965Z" + "iopub.execute_input": "2023-08-21T02:28:54.237580Z", + "iopub.status.busy": "2023-08-21T02:28:54.237492Z", + "iopub.status.idle": "2023-08-21T02:28:54.242855Z", + "shell.execute_reply": "2023-08-21T02:28:54.242574Z" } }, "outputs": [ @@ -527,7 +526,7 @@ }, { "cell_type": "markdown", - "id": "a8cceee6", + "id": "d4fefb35", "metadata": {}, "source": [ "Type `Boston?` to find out more about these data.\n", @@ -541,13 +540,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "26c0ba88", + "id": "26837cfe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.701638Z", - "iopub.status.busy": "2023-08-07T00:18:30.701559Z", - "iopub.status.idle": "2023-08-07T00:18:30.706894Z", - "shell.execute_reply": "2023-08-07T00:18:30.706635Z" + "iopub.execute_input": "2023-08-21T02:28:54.244219Z", + "iopub.status.busy": "2023-08-21T02:28:54.244127Z", + "iopub.status.idle": "2023-08-21T02:28:54.249714Z", + "shell.execute_reply": "2023-08-21T02:28:54.249432Z" } }, "outputs": [ @@ -622,7 +621,7 @@ }, { "cell_type": "markdown", - "id": "5ac7f183", + "id": "73cb41ca", "metadata": {}, "source": [ "We extract the response, and fit the model." @@ -631,13 +630,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "d4dd511b", + "id": "c70cbdb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.708348Z", - "iopub.status.busy": "2023-08-07T00:18:30.708254Z", - "iopub.status.idle": "2023-08-07T00:18:30.710731Z", - "shell.execute_reply": "2023-08-07T00:18:30.710460Z" + "iopub.execute_input": "2023-08-21T02:28:54.251263Z", + "iopub.status.busy": "2023-08-21T02:28:54.251136Z", + "iopub.status.idle": "2023-08-21T02:28:54.253671Z", + "shell.execute_reply": "2023-08-21T02:28:54.253397Z" }, "lines_to_next_cell": 0 }, @@ -650,7 +649,7 @@ }, { "cell_type": "markdown", - "id": "ddf44723", + "id": "e87fbd51", "metadata": {}, "source": [ "Note that `sm.OLS()` does\n", @@ -666,13 +665,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "eef9f8e3", + "id": "6f2d7c78", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.712145Z", - "iopub.status.busy": "2023-08-07T00:18:30.712039Z", - "iopub.status.idle": "2023-08-07T00:18:30.771318Z", - "shell.execute_reply": "2023-08-07T00:18:30.771048Z" + "iopub.execute_input": "2023-08-21T02:28:54.255193Z", + "iopub.status.busy": "2023-08-21T02:28:54.255089Z", + "iopub.status.idle": "2023-08-21T02:28:54.314793Z", + "shell.execute_reply": "2023-08-21T02:28:54.314504Z" }, "lines_to_next_cell": 2 }, @@ -740,7 +739,7 @@ }, { "cell_type": "markdown", - "id": "db916e19", + "id": "cf6f045c", "metadata": {}, "source": [ "Before we describe other methods for working with fitted models, we outline a more useful and general framework for constructing a model matrix~`X`.\n", @@ -777,13 +776,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "557170d4", + "id": "cdec4294", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.772908Z", - "iopub.status.busy": "2023-08-07T00:18:30.772767Z", - "iopub.status.idle": "2023-08-07T00:18:30.777533Z", - "shell.execute_reply": "2023-08-07T00:18:30.777292Z" + "iopub.execute_input": "2023-08-21T02:28:54.316521Z", + "iopub.status.busy": "2023-08-21T02:28:54.316363Z", + "iopub.status.idle": "2023-08-21T02:28:54.323224Z", + "shell.execute_reply": "2023-08-21T02:28:54.322970Z" }, "lines_to_next_cell": 0 }, @@ -860,7 +859,7 @@ }, { "cell_type": "markdown", - "id": "86615813", + "id": "1de3a91e", "metadata": {}, "source": [ "In this simple case, the `fit()` method does very little; it simply checks that the variable `'lstat'` specified in `design` exists in `Boston`. Then `transform()` constructs the model matrix with two columns: an `intercept` and the variable `lstat`.\n", @@ -872,13 +871,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "b83ec097", + "id": "edf2efcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.778980Z", - "iopub.status.busy": "2023-08-07T00:18:30.778901Z", - "iopub.status.idle": "2023-08-07T00:18:30.783086Z", - "shell.execute_reply": "2023-08-07T00:18:30.782821Z" + "iopub.execute_input": "2023-08-21T02:28:54.324750Z", + "iopub.status.busy": "2023-08-21T02:28:54.324644Z", + "iopub.status.idle": "2023-08-21T02:28:54.330945Z", + "shell.execute_reply": "2023-08-21T02:28:54.330680Z" }, "lines_to_next_cell": 0 }, @@ -954,7 +953,7 @@ }, { "cell_type": "markdown", - "id": "c6becbcb", + "id": "4eab8574", "metadata": {}, "source": [ "Note that, as in the previous code chunk when the two steps were done separately, the `design` object is changed as a result of the `fit()` operation. The power of this pipeline will become clearer when we fit more complex models that involve interactions and transformations." @@ -962,7 +961,7 @@ }, { "cell_type": "markdown", - "id": "e097120f", + "id": "7336a90b", "metadata": {}, "source": [ "Let's return to our fitted regression model.\n", @@ -976,13 +975,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "d4dce5f6", + "id": "49fc8992", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.784600Z", - "iopub.status.busy": "2023-08-07T00:18:30.784504Z", - "iopub.status.idle": "2023-08-07T00:18:30.793701Z", - "shell.execute_reply": "2023-08-07T00:18:30.793458Z" + "iopub.execute_input": "2023-08-21T02:28:54.332402Z", + "iopub.status.busy": "2023-08-21T02:28:54.332319Z", + "iopub.status.idle": "2023-08-21T02:28:54.341724Z", + "shell.execute_reply": "2023-08-21T02:28:54.341409Z" } }, "outputs": [ @@ -1001,10 +1000,10 @@ " Method: Least Squares F-statistic: 601.6\n", "\n", "\n", - " Date: Sun, 06 Aug 2023 Prob (F-statistic): 5.08e-88\n", + " Date: Sun, 20 Aug 2023 Prob (F-statistic): 5.08e-88\n", "\n", "\n", - " Time: 17:18:30 Log-Likelihood: -1641.5\n", + " Time: 19:28:54 Log-Likelihood: -1641.5\n", "\n", "\n", " No. Observations: 506 AIC: 3287.\n", @@ -1052,8 +1051,8 @@ "\\textbf{Dep. Variable:} & medv & \\textbf{ R-squared: } & 0.544 \\\\\n", "\\textbf{Model:} & OLS & \\textbf{ Adj. R-squared: } & 0.543 \\\\\n", "\\textbf{Method:} & Least Squares & \\textbf{ F-statistic: } & 601.6 \\\\\n", - "\\textbf{Date:} & Sun, 06 Aug 2023 & \\textbf{ Prob (F-statistic):} & 5.08e-88 \\\\\n", - "\\textbf{Time:} & 17:18:30 & \\textbf{ Log-Likelihood: } & -1641.5 \\\\\n", + "\\textbf{Date:} & Sun, 20 Aug 2023 & \\textbf{ Prob (F-statistic):} & 5.08e-88 \\\\\n", + "\\textbf{Time:} & 19:28:54 & \\textbf{ Log-Likelihood: } & -1641.5 \\\\\n", "\\textbf{No. Observations:} & 506 & \\textbf{ AIC: } & 3287. \\\\\n", "\\textbf{Df Residuals:} & 504 & \\textbf{ BIC: } & 3295. \\\\\n", "\\textbf{Df Model:} & 1 & \\textbf{ } & \\\\\n", @@ -1088,8 +1087,8 @@ "Dep. Variable: medv R-squared: 0.544\n", "Model: OLS Adj. R-squared: 0.543\n", "Method: Least Squares F-statistic: 601.6\n", - "Date: Sun, 06 Aug 2023 Prob (F-statistic): 5.08e-88\n", - "Time: 17:18:30 Log-Likelihood: -1641.5\n", + "Date: Sun, 20 Aug 2023 Prob (F-statistic): 5.08e-88\n", + "Time: 19:28:54 Log-Likelihood: -1641.5\n", "No. Observations: 506 AIC: 3287.\n", "Df Residuals: 504 BIC: 3295.\n", "Df Model: 1 \n", @@ -1122,7 +1121,7 @@ }, { "cell_type": "markdown", - "id": "9a367738", + "id": "cbadf6fb", "metadata": {}, "source": [ "The fitted coefficients can also be retrieved as the\n", @@ -1132,13 +1131,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "a0edf555", + "id": "6d0f4c3a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.795155Z", - "iopub.status.busy": "2023-08-07T00:18:30.795070Z", - "iopub.status.idle": "2023-08-07T00:18:30.797528Z", - "shell.execute_reply": "2023-08-07T00:18:30.797283Z" + "iopub.execute_input": "2023-08-21T02:28:54.343317Z", + "iopub.status.busy": "2023-08-21T02:28:54.343206Z", + "iopub.status.idle": "2023-08-21T02:28:54.345604Z", + "shell.execute_reply": "2023-08-21T02:28:54.345339Z" }, "lines_to_next_cell": 2 }, @@ -1162,7 +1161,7 @@ }, { "cell_type": "markdown", - "id": "4472913f", + "id": "f97d477a", "metadata": {}, "source": [ "The `get_prediction()` method can be used to obtain predictions, and produce confidence intervals and\n", @@ -1175,13 +1174,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "fdc5a3f3", + "id": "132ffded", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.798957Z", - "iopub.status.busy": "2023-08-07T00:18:30.798873Z", - "iopub.status.idle": "2023-08-07T00:18:30.802562Z", - "shell.execute_reply": "2023-08-07T00:18:30.802313Z" + "iopub.execute_input": "2023-08-21T02:28:54.347097Z", + "iopub.status.busy": "2023-08-21T02:28:54.346984Z", + "iopub.status.idle": "2023-08-21T02:28:54.350802Z", + "shell.execute_reply": "2023-08-21T02:28:54.350563Z" } }, "outputs": [ @@ -1250,7 +1249,7 @@ }, { "cell_type": "markdown", - "id": "590d6b7d", + "id": "e99b90dc", "metadata": {}, "source": [ "Next we compute the predictions at `newX`, and view them by extracting the `predicted_mean` attribute." @@ -1259,13 +1258,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "2c6acbf0", + "id": "b654a050", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.803979Z", - "iopub.status.busy": "2023-08-07T00:18:30.803903Z", - "iopub.status.idle": "2023-08-07T00:18:30.806278Z", - "shell.execute_reply": "2023-08-07T00:18:30.806017Z" + "iopub.execute_input": "2023-08-21T02:28:54.352369Z", + "iopub.status.busy": "2023-08-21T02:28:54.352275Z", + "iopub.status.idle": "2023-08-21T02:28:54.354743Z", + "shell.execute_reply": "2023-08-21T02:28:54.354502Z" }, "lines_to_next_cell": 0 }, @@ -1288,7 +1287,7 @@ }, { "cell_type": "markdown", - "id": "f2d7e037", + "id": "cca6cef5", "metadata": {}, "source": [ "We can produce confidence intervals for the predicted values." @@ -1297,13 +1296,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "c472ef33", + "id": "148ed59d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.807645Z", - "iopub.status.busy": "2023-08-07T00:18:30.807570Z", - "iopub.status.idle": "2023-08-07T00:18:30.809883Z", - "shell.execute_reply": "2023-08-07T00:18:30.809646Z" + "iopub.execute_input": "2023-08-21T02:28:54.356140Z", + "iopub.status.busy": "2023-08-21T02:28:54.356063Z", + "iopub.status.idle": "2023-08-21T02:28:54.358315Z", + "shell.execute_reply": "2023-08-21T02:28:54.358059Z" }, "lines_to_next_cell": 0 }, @@ -1327,7 +1326,7 @@ }, { "cell_type": "markdown", - "id": "dfabf8a7", + "id": "c217e5e2", "metadata": {}, "source": [ "Prediction intervals are computing by setting `obs=True`:" @@ -1336,13 +1335,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "3e2ffc7a", + "id": "d9d7b844", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.811226Z", - "iopub.status.busy": "2023-08-07T00:18:30.811154Z", - "iopub.status.idle": "2023-08-07T00:18:30.813455Z", - "shell.execute_reply": "2023-08-07T00:18:30.813210Z" + "iopub.execute_input": "2023-08-21T02:28:54.359757Z", + "iopub.status.busy": "2023-08-21T02:28:54.359678Z", + "iopub.status.idle": "2023-08-21T02:28:54.362165Z", + "shell.execute_reply": "2023-08-21T02:28:54.361908Z" }, "lines_to_next_cell": 0 }, @@ -1366,7 +1365,7 @@ }, { "cell_type": "markdown", - "id": "65463c75", + "id": "a26d3660", "metadata": {}, "source": [ " For instance, the 95% confidence interval associated with an\n", @@ -1377,14 +1376,14 @@ "10), but the latter are substantially wider.\n", "\n", "Next we will plot `medv` and `lstat` \n", - "using `DataFrame.plot.scatter()`, \n", + "using `DataFrame.plot.scatter()`, \\definelongblankMR{plot.scatter()}{plot.slashslashscatter()}\n", "and wish to\n", "add the regression line to the resulting plot." ] }, { "cell_type": "markdown", - "id": "f699e856", + "id": "50db5bf6", "metadata": {}, "source": [ "### Defining Functions\n", @@ -1396,13 +1395,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "4e56a1d3", + "id": "79de2913", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.814985Z", - "iopub.status.busy": "2023-08-07T00:18:30.814910Z", - "iopub.status.idle": "2023-08-07T00:18:30.816725Z", - "shell.execute_reply": "2023-08-07T00:18:30.816494Z" + "iopub.execute_input": "2023-08-21T02:28:54.363741Z", + "iopub.status.busy": "2023-08-21T02:28:54.363634Z", + "iopub.status.idle": "2023-08-21T02:28:54.365531Z", + "shell.execute_reply": "2023-08-21T02:28:54.365292Z" }, "lines_to_next_cell": 0 }, @@ -1417,7 +1416,7 @@ }, { "cell_type": "markdown", - "id": "e0a0dce5", + "id": "f66dd38d", "metadata": {}, "source": [ " A few things are illustrated above. First we see the syntax for defining a function:\n", @@ -1430,13 +1429,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "7f43ffe7", + "id": "a9b843c7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.818143Z", - "iopub.status.busy": "2023-08-07T00:18:30.818041Z", - "iopub.status.idle": "2023-08-07T00:18:30.819998Z", - "shell.execute_reply": "2023-08-07T00:18:30.819773Z" + "iopub.execute_input": "2023-08-21T02:28:54.366874Z", + "iopub.status.busy": "2023-08-21T02:28:54.366784Z", + "iopub.status.idle": "2023-08-21T02:28:54.368713Z", + "shell.execute_reply": "2023-08-21T02:28:54.368464Z" }, "lines_to_next_cell": 0 }, @@ -1451,7 +1450,7 @@ }, { "cell_type": "markdown", - "id": "4f4981fa", + "id": "25ba4401", "metadata": {}, "source": [ "The addition of `*args` allows any number of\n", @@ -1470,13 +1469,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "3f7b67c9", + "id": "7e116800", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.821345Z", - "iopub.status.busy": "2023-08-07T00:18:30.821254Z", - "iopub.status.idle": "2023-08-07T00:18:30.930375Z", - "shell.execute_reply": "2023-08-07T00:18:30.929550Z" + "iopub.execute_input": "2023-08-21T02:28:54.370163Z", + "iopub.status.busy": "2023-08-21T02:28:54.370073Z", + "iopub.status.idle": "2023-08-21T02:28:54.466696Z", + "shell.execute_reply": "2023-08-21T02:28:54.466338Z" }, "lines_to_next_cell": 0 }, @@ -1503,7 +1502,7 @@ }, { "cell_type": "markdown", - "id": "50d7066f", + "id": "9a3e8b26", "metadata": {}, "source": [ "Thus, the final call to `ax.plot()` is `ax.plot(xlim, ylim, 'r--', linewidth=3)`.\n", @@ -1517,7 +1516,7 @@ }, { "cell_type": "markdown", - "id": "82ab1913", + "id": "1d78b981", "metadata": {}, "source": [ "Next we examine some diagnostic plots, several of which were discussed\n", @@ -1534,13 +1533,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "b35a2fd3", + "id": "b524399e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:30.934324Z", - "iopub.status.busy": "2023-08-07T00:18:30.934035Z", - "iopub.status.idle": "2023-08-07T00:18:31.102742Z", - "shell.execute_reply": "2023-08-07T00:18:31.101921Z" + "iopub.execute_input": "2023-08-21T02:28:54.468561Z", + "iopub.status.busy": "2023-08-21T02:28:54.468356Z", + "iopub.status.idle": "2023-08-21T02:28:54.566644Z", + "shell.execute_reply": "2023-08-21T02:28:54.566337Z" }, "lines_to_next_cell": 0 }, @@ -1566,7 +1565,7 @@ }, { "cell_type": "markdown", - "id": "4deb547b", + "id": "590a8be9", "metadata": {}, "source": [ " We add a horizontal line at 0 for reference using the\n", @@ -1582,13 +1581,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "82673b80", + "id": "8c95b6b0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.106724Z", - "iopub.status.busy": "2023-08-07T00:18:31.106292Z", - "iopub.status.idle": "2023-08-07T00:18:31.200890Z", - "shell.execute_reply": "2023-08-07T00:18:31.200597Z" + "iopub.execute_input": "2023-08-21T02:28:54.568423Z", + "iopub.status.busy": "2023-08-21T02:28:54.568307Z", + "iopub.status.idle": "2023-08-21T02:28:54.658553Z", + "shell.execute_reply": "2023-08-21T02:28:54.658267Z" }, "lines_to_next_cell": 0 }, @@ -1625,7 +1624,7 @@ }, { "cell_type": "markdown", - "id": "7eb69d75", + "id": "7712b1e1", "metadata": {}, "source": [ " The `np.argmax()` function identifies the index of the largest element of an array, optionally computed over an axis of the array.\n", @@ -1635,7 +1634,7 @@ }, { "cell_type": "markdown", - "id": "94c0a8c1", + "id": "c17dacc1", "metadata": {}, "source": [ "## Multiple Linear Regression\n", @@ -1650,13 +1649,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "54596dc4", + "id": "04ed8362", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.202583Z", - "iopub.status.busy": "2023-08-07T00:18:31.202480Z", - "iopub.status.idle": "2023-08-07T00:18:31.212391Z", - "shell.execute_reply": "2023-08-07T00:18:31.212135Z" + "iopub.execute_input": "2023-08-21T02:28:54.660197Z", + "iopub.status.busy": "2023-08-21T02:28:54.660075Z", + "iopub.status.idle": "2023-08-21T02:28:54.672237Z", + "shell.execute_reply": "2023-08-21T02:28:54.671994Z" }, "lines_to_next_cell": 0 }, @@ -1735,26 +1734,26 @@ }, { "cell_type": "markdown", - "id": "88450596", + "id": "3af076fd", "metadata": {}, "source": [ "Notice how we have compacted the first line into a succinct expression describing the construction of `X`.\n", "\n", "The `Boston` data set contains 12 variables, and so it would be cumbersome\n", "to have to type all of these in order to perform a regression using all of the predictors.\n", - "Instead, we can use the following short-hand:" + "Instead, we can use the following short-hand:\\definelongblankMR{columns.drop()}{columns.slashslashdrop()}" ] }, { "cell_type": "code", "execution_count": 26, - "id": "75c78238", + "id": "6483e190", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.214024Z", - "iopub.status.busy": "2023-08-07T00:18:31.213941Z", - "iopub.status.idle": "2023-08-07T00:18:31.216399Z", - "shell.execute_reply": "2023-08-07T00:18:31.216121Z" + "iopub.execute_input": "2023-08-21T02:28:54.673721Z", + "iopub.status.busy": "2023-08-21T02:28:54.673628Z", + "iopub.status.idle": "2023-08-21T02:28:54.676304Z", + "shell.execute_reply": "2023-08-21T02:28:54.675993Z" } }, "outputs": [ @@ -1778,7 +1777,7 @@ }, { "cell_type": "markdown", - "id": "653715b5", + "id": "b79a6810", "metadata": {}, "source": [ "We can now fit the model with all the variables in `terms` using\n", @@ -1788,13 +1787,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "f14b9e1a", + "id": "99a6f9d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.217829Z", - "iopub.status.busy": "2023-08-07T00:18:31.217726Z", - "iopub.status.idle": "2023-08-07T00:18:31.232053Z", - "shell.execute_reply": "2023-08-07T00:18:31.231736Z" + "iopub.execute_input": "2023-08-21T02:28:54.677828Z", + "iopub.status.busy": "2023-08-21T02:28:54.677709Z", + "iopub.status.idle": "2023-08-21T02:28:54.696704Z", + "shell.execute_reply": "2023-08-21T02:28:54.696381Z" } }, "outputs": [ @@ -1952,7 +1951,7 @@ }, { "cell_type": "markdown", - "id": "26acd5ab", + "id": "719d42ae", "metadata": {}, "source": [ "What if we would like to perform a regression using all of the variables but one? For\n", @@ -1964,13 +1963,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "0a2714b1", + "id": "78cf55d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.233879Z", - "iopub.status.busy": "2023-08-07T00:18:31.233764Z", - "iopub.status.idle": "2023-08-07T00:18:31.247573Z", - "shell.execute_reply": "2023-08-07T00:18:31.247300Z" + "iopub.execute_input": "2023-08-21T02:28:54.698261Z", + "iopub.status.busy": "2023-08-21T02:28:54.698177Z", + "iopub.status.idle": "2023-08-21T02:28:54.716362Z", + "shell.execute_reply": "2023-08-21T02:28:54.716082Z" } }, "outputs": [ @@ -2120,7 +2119,7 @@ }, { "cell_type": "markdown", - "id": "28538920", + "id": "526a80bc", "metadata": {}, "source": [ "## Multivariate Goodness of Fit\n", @@ -2152,13 +2151,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "961c9128", + "id": "902f6474", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.249268Z", - "iopub.status.busy": "2023-08-07T00:18:31.249149Z", - "iopub.status.idle": "2023-08-07T00:18:31.256436Z", - "shell.execute_reply": "2023-08-07T00:18:31.256170Z" + "iopub.execute_input": "2023-08-21T02:28:54.718076Z", + "iopub.status.busy": "2023-08-21T02:28:54.717951Z", + "iopub.status.idle": "2023-08-21T02:28:54.725146Z", + "shell.execute_reply": "2023-08-21T02:28:54.724859Z" }, "lines_to_next_cell": 0 }, @@ -2271,7 +2270,7 @@ }, { "cell_type": "markdown", - "id": "d052f0ab", + "id": "2a1567ea", "metadata": {}, "source": [ "The function `VIF()` takes two arguments: a dataframe or array,\n", @@ -2284,13 +2283,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "4886f9e9", + "id": "ea1c88e9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.257965Z", - "iopub.status.busy": "2023-08-07T00:18:31.257856Z", - "iopub.status.idle": "2023-08-07T00:18:31.262942Z", - "shell.execute_reply": "2023-08-07T00:18:31.262707Z" + "iopub.execute_input": "2023-08-21T02:28:54.726658Z", + "iopub.status.busy": "2023-08-21T02:28:54.726565Z", + "iopub.status.idle": "2023-08-21T02:28:54.731850Z", + "shell.execute_reply": "2023-08-21T02:28:54.731595Z" }, "lines_to_next_cell": 0 }, @@ -2303,7 +2302,7 @@ }, { "cell_type": "markdown", - "id": "fd3732d5", + "id": "18fb24e5", "metadata": {}, "source": [ "List comprehension allows us to perform such repetitive operations in a more straightforward way.\n", @@ -2317,13 +2316,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "b54d2da1", + "id": "e9ff159c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.264400Z", - "iopub.status.busy": "2023-08-07T00:18:31.264319Z", - "iopub.status.idle": "2023-08-07T00:18:31.274870Z", - "shell.execute_reply": "2023-08-07T00:18:31.274588Z" + "iopub.execute_input": "2023-08-21T02:28:54.733388Z", + "iopub.status.busy": "2023-08-21T02:28:54.733294Z", + "iopub.status.idle": "2023-08-21T02:28:54.747346Z", + "shell.execute_reply": "2023-08-21T02:28:54.747067Z" }, "lines_to_next_cell": 2 }, @@ -2411,7 +2410,7 @@ }, { "cell_type": "markdown", - "id": "c72c4846", + "id": "92604d18", "metadata": {}, "source": [ "## Non-linear Transformations of the Predictors\n", @@ -2425,13 +2424,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "1b71633a", + "id": "c98f54b2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.276448Z", - "iopub.status.busy": "2023-08-07T00:18:31.276353Z", - "iopub.status.idle": "2023-08-07T00:18:31.287456Z", - "shell.execute_reply": "2023-08-07T00:18:31.287173Z" + "iopub.execute_input": "2023-08-21T02:28:54.748856Z", + "iopub.status.busy": "2023-08-21T02:28:54.748774Z", + "iopub.status.idle": "2023-08-21T02:28:54.763149Z", + "shell.execute_reply": "2023-08-21T02:28:54.762853Z" }, "lines_to_next_cell": 0 }, @@ -2518,7 +2517,7 @@ }, { "cell_type": "markdown", - "id": "9f32c813", + "id": "ccc11d8c", "metadata": {}, "source": [ "The effectively zero *p*-value associated with the quadratic term\n", @@ -2543,13 +2542,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "6d30a306", + "id": "53065cac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.289067Z", - "iopub.status.busy": "2023-08-07T00:18:31.288970Z", - "iopub.status.idle": "2023-08-07T00:18:31.294816Z", - "shell.execute_reply": "2023-08-07T00:18:31.294545Z" + "iopub.execute_input": "2023-08-21T02:28:54.764924Z", + "iopub.status.busy": "2023-08-21T02:28:54.764796Z", + "iopub.status.idle": "2023-08-21T02:28:54.770846Z", + "shell.execute_reply": "2023-08-21T02:28:54.770578Z" }, "lines_to_next_cell": 0 }, @@ -2623,7 +2622,7 @@ }, { "cell_type": "markdown", - "id": "bd0155d4", + "id": "c0696dc2", "metadata": {}, "source": [ "Here `results1` represents the linear submodel containing\n", @@ -2653,13 +2652,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "9a5ec13f", + "id": "8c654809", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.296264Z", - "iopub.status.busy": "2023-08-07T00:18:31.296175Z", - "iopub.status.idle": "2023-08-07T00:18:31.396371Z", - "shell.execute_reply": "2023-08-07T00:18:31.396036Z" + "iopub.execute_input": "2023-08-21T02:28:54.772408Z", + "iopub.status.busy": "2023-08-21T02:28:54.772296Z", + "iopub.status.idle": "2023-08-21T02:28:54.872389Z", + "shell.execute_reply": "2023-08-21T02:28:54.872086Z" }, "lines_to_next_cell": 0 }, @@ -2667,7 +2666,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 34, @@ -2695,7 +2694,7 @@ }, { "cell_type": "markdown", - "id": "88272f6f", + "id": "f79b542d", "metadata": {}, "source": [ "We see that when the quadratic term is included in the model,\n", @@ -2706,7 +2705,7 @@ }, { "cell_type": "markdown", - "id": "e1a34084", + "id": "6123a191", "metadata": {}, "source": [ "## Qualitative Predictors\n", @@ -2719,13 +2718,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "09bbc0c6", + "id": "2182f0ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.398199Z", - "iopub.status.busy": "2023-08-07T00:18:31.398079Z", - "iopub.status.idle": "2023-08-07T00:18:31.403054Z", - "shell.execute_reply": "2023-08-07T00:18:31.402775Z" + "iopub.execute_input": "2023-08-21T02:28:54.874000Z", + "iopub.status.busy": "2023-08-21T02:28:54.873893Z", + "iopub.status.idle": "2023-08-21T02:28:54.879085Z", + "shell.execute_reply": "2023-08-21T02:28:54.878817Z" }, "lines_to_next_cell": 0 }, @@ -2750,7 +2749,7 @@ }, { "cell_type": "markdown", - "id": "1a882e65", + "id": "66672403", "metadata": {}, "source": [ "The `Carseats` \n", @@ -2770,13 +2769,13 @@ { "cell_type": "code", "execution_count": 36, - "id": "2e1da1fa", + "id": "d614fdcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:31.404630Z", - "iopub.status.busy": "2023-08-07T00:18:31.404535Z", - "iopub.status.idle": "2023-08-07T00:18:31.424741Z", - "shell.execute_reply": "2023-08-07T00:18:31.424459Z" + "iopub.execute_input": "2023-08-21T02:28:54.880583Z", + "iopub.status.busy": "2023-08-21T02:28:54.880499Z", + "iopub.status.idle": "2023-08-21T02:28:54.907341Z", + "shell.execute_reply": "2023-08-21T02:28:54.907079Z" }, "lines_to_next_cell": 0 }, @@ -2946,7 +2945,7 @@ }, { "cell_type": "markdown", - "id": "79d9127c", + "id": "2402763b", "metadata": {}, "source": [ "In the first line above, we made `allvars` a list, so that we\n", diff --git a/Ch04-classification-lab.Rmd b/Ch04-classification-lab.Rmd index 6266d03..d3d8eec 100644 --- a/Ch04-classification-lab.Rmd +++ b/Ch04-classification-lab.Rmd @@ -807,7 +807,7 @@ feature_std.std() ``` -Notice that the standard deviations are not quite $1$ here; this is again due to some procedures using the $1/n$ convention for variances (in this case `scaler()`), while others use $1/(n-1)$ (the `std()` method). See the footnote on page 103. +Notice that the standard deviations are not quite $1$ here; this is again due to some procedures using the $1/n$ convention for variances (in this case `scaler()`), while others use $1/(n-1)$ (the `std()` method). See the footnote on page 200. In this case it does not matter, as long as the variables are all on the same scale. Using the function `train_test_split()` we now split the observations into a test set, diff --git a/Ch04-classification-lab.ipynb b/Ch04-classification-lab.ipynb index 90fb9c8..0ab61a0 100644 --- a/Ch04-classification-lab.ipynb +++ b/Ch04-classification-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "cb3c07d1", + "id": "5443fa92", "metadata": {}, "source": [ "\n", @@ -13,7 +13,7 @@ }, { "cell_type": "markdown", - "id": "daef3e2e", + "id": "3fc2dfec", "metadata": {}, "source": [ "# Lab: Logistic Regression, LDA, QDA, and KNN\n" @@ -21,7 +21,7 @@ }, { "cell_type": "markdown", - "id": "3cb93478", + "id": "0c96d561", "metadata": {}, "source": [ "## The Stock Market Data\n", @@ -43,13 +43,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "7b8d78b9", + "id": "95d28c33", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:32.688752Z", - "iopub.status.busy": "2023-08-07T00:18:32.688456Z", - "iopub.status.idle": "2023-08-07T00:18:33.723127Z", - "shell.execute_reply": "2023-08-07T00:18:33.722505Z" + "iopub.execute_input": "2023-08-21T02:28:56.229892Z", + "iopub.status.busy": "2023-08-21T02:28:56.229672Z", + "iopub.status.idle": "2023-08-21T02:28:57.250402Z", + "shell.execute_reply": "2023-08-21T02:28:57.249963Z" } }, "outputs": [], @@ -65,7 +65,7 @@ }, { "cell_type": "markdown", - "id": "f420141c", + "id": "0c887b44", "metadata": {}, "source": [ "We also collect together the new imports needed for this lab." @@ -74,13 +74,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "b5938862", + "id": "f7fb5f2a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.725437Z", - "iopub.status.busy": "2023-08-07T00:18:33.725139Z", - "iopub.status.idle": "2023-08-07T00:18:33.743611Z", - "shell.execute_reply": "2023-08-07T00:18:33.743322Z" + "iopub.execute_input": "2023-08-21T02:28:57.252390Z", + "iopub.status.busy": "2023-08-21T02:28:57.252224Z", + "iopub.status.idle": "2023-08-21T02:28:57.272851Z", + "shell.execute_reply": "2023-08-21T02:28:57.272588Z" }, "lines_to_next_cell": 2 }, @@ -100,7 +100,7 @@ }, { "cell_type": "markdown", - "id": "34413b1c", + "id": "f5fd2bfd", "metadata": {}, "source": [ "Now we are ready to load the `Smarket` data." @@ -109,13 +109,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "e9fdf040", + "id": "7845390b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.745195Z", - "iopub.status.busy": "2023-08-07T00:18:33.745084Z", - "iopub.status.idle": "2023-08-07T00:18:33.757813Z", - "shell.execute_reply": "2023-08-07T00:18:33.757521Z" + "iopub.execute_input": "2023-08-21T02:28:57.274355Z", + "iopub.status.busy": "2023-08-21T02:28:57.274258Z", + "iopub.status.idle": "2023-08-21T02:28:57.285160Z", + "shell.execute_reply": "2023-08-21T02:28:57.284894Z" }, "lines_to_next_cell": 0 }, @@ -319,7 +319,7 @@ }, { "cell_type": "markdown", - "id": "d3533960", + "id": "6b585d9b", "metadata": {}, "source": [ "This gives a truncated listing of the data.\n", @@ -329,13 +329,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "69d5cfae", + "id": "a92e287a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.759381Z", - "iopub.status.busy": "2023-08-07T00:18:33.759278Z", - "iopub.status.idle": "2023-08-07T00:18:33.761642Z", - "shell.execute_reply": "2023-08-07T00:18:33.761397Z" + "iopub.execute_input": "2023-08-21T02:28:57.286715Z", + "iopub.status.busy": "2023-08-21T02:28:57.286616Z", + "iopub.status.idle": "2023-08-21T02:28:57.288883Z", + "shell.execute_reply": "2023-08-21T02:28:57.288648Z" }, "lines_to_next_cell": 0 }, @@ -359,7 +359,7 @@ }, { "cell_type": "markdown", - "id": "c1e0cc8c", + "id": "31ec6135", "metadata": {}, "source": [ "We compute the correlation matrix using the `corr()` method\n", @@ -373,13 +373,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "a4c0648e", + "id": "96bb1e00", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.763041Z", - "iopub.status.busy": "2023-08-07T00:18:33.762950Z", - "iopub.status.idle": "2023-08-07T00:18:33.767711Z", - "shell.execute_reply": "2023-08-07T00:18:33.767453Z" + "iopub.execute_input": "2023-08-21T02:28:57.290357Z", + "iopub.status.busy": "2023-08-21T02:28:57.290259Z", + "iopub.status.idle": "2023-08-21T02:28:57.295352Z", + "shell.execute_reply": "2023-08-21T02:28:57.295083Z" }, "lines_to_next_cell": 0 }, @@ -541,7 +541,7 @@ }, { "cell_type": "markdown", - "id": "c68bb37a", + "id": "9ff113ca", "metadata": {}, "source": [ "As one would expect, the correlations between the lagged return variables and\n", @@ -554,13 +554,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "cd40274b", + "id": "4ddb96ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.769148Z", - "iopub.status.busy": "2023-08-07T00:18:33.769072Z", - "iopub.status.idle": "2023-08-07T00:18:33.882743Z", - "shell.execute_reply": "2023-08-07T00:18:33.880710Z" + "iopub.execute_input": "2023-08-21T02:28:57.296784Z", + "iopub.status.busy": "2023-08-21T02:28:57.296683Z", + "iopub.status.idle": "2023-08-21T02:28:57.392956Z", + "shell.execute_reply": "2023-08-21T02:28:57.392526Z" }, "lines_to_next_cell": 2 }, @@ -582,7 +582,7 @@ }, { "cell_type": "markdown", - "id": "685b96e8", + "id": "c2fe10a0", "metadata": {}, "source": [ "## Logistic Regression\n", @@ -601,13 +601,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "35b8bffe", + "id": "df59bcac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:33.886763Z", - "iopub.status.busy": "2023-08-07T00:18:33.886512Z", - "iopub.status.idle": "2023-08-07T00:18:34.002815Z", - "shell.execute_reply": "2023-08-07T00:18:34.002006Z" + "iopub.execute_input": "2023-08-21T02:28:57.394870Z", + "iopub.status.busy": "2023-08-21T02:28:57.394721Z", + "iopub.status.idle": "2023-08-21T02:28:57.461746Z", + "shell.execute_reply": "2023-08-21T02:28:57.461390Z" }, "lines_to_next_cell": 0 }, @@ -723,7 +723,7 @@ }, { "cell_type": "markdown", - "id": "68cca865", + "id": "cc5b69fc", "metadata": {}, "source": [ "The smallest *p*-value here is associated with `Lag1`. The\n", @@ -741,13 +741,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "4f9c5324", + "id": "f45f26de", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.007435Z", - "iopub.status.busy": "2023-08-07T00:18:34.006910Z", - "iopub.status.idle": "2023-08-07T00:18:34.014901Z", - "shell.execute_reply": "2023-08-07T00:18:34.014079Z" + "iopub.execute_input": "2023-08-21T02:28:57.463719Z", + "iopub.status.busy": "2023-08-21T02:28:57.463515Z", + "iopub.status.idle": "2023-08-21T02:28:57.466512Z", + "shell.execute_reply": "2023-08-21T02:28:57.466227Z" }, "lines_to_next_cell": 0 }, @@ -776,7 +776,7 @@ }, { "cell_type": "markdown", - "id": "681ca0cb", + "id": "56749219", "metadata": {}, "source": [ "Likewise we can use the\n", @@ -786,13 +786,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "75e44d01", + "id": "e9f38895", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.019225Z", - "iopub.status.busy": "2023-08-07T00:18:34.018883Z", - "iopub.status.idle": "2023-08-07T00:18:34.025804Z", - "shell.execute_reply": "2023-08-07T00:18:34.025086Z" + "iopub.execute_input": "2023-08-21T02:28:57.468254Z", + "iopub.status.busy": "2023-08-21T02:28:57.468113Z", + "iopub.status.idle": "2023-08-21T02:28:57.470717Z", + "shell.execute_reply": "2023-08-21T02:28:57.470403Z" } }, "outputs": [ @@ -820,7 +820,7 @@ }, { "cell_type": "markdown", - "id": "d4fd87bf", + "id": "b5f86e0b", "metadata": {}, "source": [ "The `predict()` method of `results` can be used to predict the\n", @@ -837,13 +837,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "40164af5", + "id": "4f20356d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.029989Z", - "iopub.status.busy": "2023-08-07T00:18:34.029690Z", - "iopub.status.idle": "2023-08-07T00:18:34.036791Z", - "shell.execute_reply": "2023-08-07T00:18:34.036138Z" + "iopub.execute_input": "2023-08-21T02:28:57.472719Z", + "iopub.status.busy": "2023-08-21T02:28:57.472578Z", + "iopub.status.idle": "2023-08-21T02:28:57.475369Z", + "shell.execute_reply": "2023-08-21T02:28:57.475043Z" }, "lines_to_next_cell": 0 }, @@ -867,7 +867,7 @@ }, { "cell_type": "markdown", - "id": "94607ba9", + "id": "4aab2080", "metadata": {}, "source": [ "In order to make a prediction as to whether the market will go up or\n", @@ -881,13 +881,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "daf20de2", + "id": "152b3063", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.040976Z", - "iopub.status.busy": "2023-08-07T00:18:34.040685Z", - "iopub.status.idle": "2023-08-07T00:18:34.046531Z", - "shell.execute_reply": "2023-08-07T00:18:34.045877Z" + "iopub.execute_input": "2023-08-21T02:28:57.477166Z", + "iopub.status.busy": "2023-08-21T02:28:57.477052Z", + "iopub.status.idle": "2023-08-21T02:28:57.479161Z", + "shell.execute_reply": "2023-08-21T02:28:57.478803Z" }, "lines_to_next_cell": 0 }, @@ -899,7 +899,7 @@ }, { "cell_type": "markdown", - "id": "085aead4", + "id": "a825abf5", "metadata": {}, "source": [ "The `confusion_table()`\n", @@ -914,13 +914,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "71f4a40c", + "id": "0f89f7ae", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.050481Z", - "iopub.status.busy": "2023-08-07T00:18:34.050167Z", - "iopub.status.idle": "2023-08-07T00:18:34.059868Z", - "shell.execute_reply": "2023-08-07T00:18:34.059588Z" + "iopub.execute_input": "2023-08-21T02:28:57.480867Z", + "iopub.status.busy": "2023-08-21T02:28:57.480737Z", + "iopub.status.idle": "2023-08-21T02:28:57.487133Z", + "shell.execute_reply": "2023-08-21T02:28:57.486778Z" } }, "outputs": [ @@ -987,7 +987,7 @@ }, { "cell_type": "markdown", - "id": "3a338f26", + "id": "9e9ff255", "metadata": {}, "source": [ "The diagonal elements of the confusion matrix indicate correct\n", @@ -1003,13 +1003,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "78b2946b", + "id": "d55dd7ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.061456Z", - "iopub.status.busy": "2023-08-07T00:18:34.061336Z", - "iopub.status.idle": "2023-08-07T00:18:34.064074Z", - "shell.execute_reply": "2023-08-07T00:18:34.063814Z" + "iopub.execute_input": "2023-08-21T02:28:57.488873Z", + "iopub.status.busy": "2023-08-21T02:28:57.488756Z", + "iopub.status.idle": "2023-08-21T02:28:57.491458Z", + "shell.execute_reply": "2023-08-21T02:28:57.491162Z" }, "lines_to_next_cell": 0 }, @@ -1031,7 +1031,7 @@ }, { "cell_type": "markdown", - "id": "54962226", + "id": "d73690be", "metadata": {}, "source": [ "\n" @@ -1039,7 +1039,7 @@ }, { "cell_type": "markdown", - "id": "aa9be981", + "id": "3d8958eb", "metadata": {}, "source": [ "At first glance, it appears that the logistic regression model is\n", @@ -1066,13 +1066,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "e8a4d12e", + "id": "b998a060", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.065518Z", - "iopub.status.busy": "2023-08-07T00:18:34.065416Z", - "iopub.status.idle": "2023-08-07T00:18:34.068254Z", - "shell.execute_reply": "2023-08-07T00:18:34.067978Z" + "iopub.execute_input": "2023-08-21T02:28:57.493306Z", + "iopub.status.busy": "2023-08-21T02:28:57.493174Z", + "iopub.status.idle": "2023-08-21T02:28:57.496464Z", + "shell.execute_reply": "2023-08-21T02:28:57.496107Z" }, "lines_to_next_cell": 2 }, @@ -1097,7 +1097,7 @@ }, { "cell_type": "markdown", - "id": "946fac68", + "id": "8c337c63", "metadata": {}, "source": [ "The object `train` is a vector of 1,250 elements, corresponding\n", @@ -1132,13 +1132,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "fd16bc2c", + "id": "814e34ce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.069659Z", - "iopub.status.busy": "2023-08-07T00:18:34.069561Z", - "iopub.status.idle": "2023-08-07T00:18:34.074343Z", - "shell.execute_reply": "2023-08-07T00:18:34.074055Z" + "iopub.execute_input": "2023-08-21T02:28:57.498135Z", + "iopub.status.busy": "2023-08-21T02:28:57.498043Z", + "iopub.status.idle": "2023-08-21T02:28:57.502996Z", + "shell.execute_reply": "2023-08-21T02:28:57.502676Z" } }, "outputs": [], @@ -1154,7 +1154,7 @@ }, { "cell_type": "markdown", - "id": "12382c18", + "id": "312c605a", "metadata": {}, "source": [ "Notice that we have trained and tested our model on two completely\n", @@ -1169,13 +1169,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "aaa9d07c", + "id": "644823f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.075820Z", - "iopub.status.busy": "2023-08-07T00:18:34.075734Z", - "iopub.status.idle": "2023-08-07T00:18:34.077644Z", - "shell.execute_reply": "2023-08-07T00:18:34.077397Z" + "iopub.execute_input": "2023-08-21T02:28:57.504874Z", + "iopub.status.busy": "2023-08-21T02:28:57.504743Z", + "iopub.status.idle": "2023-08-21T02:28:57.506879Z", + "shell.execute_reply": "2023-08-21T02:28:57.506558Z" }, "lines_to_next_cell": 0 }, @@ -1187,7 +1187,7 @@ }, { "cell_type": "markdown", - "id": "cc0d0c3a", + "id": "4c9f0ae0", "metadata": {}, "source": [ "Now we threshold the\n", @@ -1198,13 +1198,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "5f0b3282", + "id": "51217c85", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.079028Z", - "iopub.status.busy": "2023-08-07T00:18:34.078951Z", - "iopub.status.idle": "2023-08-07T00:18:34.083263Z", - "shell.execute_reply": "2023-08-07T00:18:34.083022Z" + "iopub.execute_input": "2023-08-21T02:28:57.508502Z", + "iopub.status.busy": "2023-08-21T02:28:57.508403Z", + "iopub.status.idle": "2023-08-21T02:28:57.512973Z", + "shell.execute_reply": "2023-08-21T02:28:57.512720Z" }, "lines_to_next_cell": 0 }, @@ -1274,7 +1274,7 @@ }, { "cell_type": "markdown", - "id": "71ca598e", + "id": "ff5f3218", "metadata": {}, "source": [ "The test accuracy is about 48% while the error rate is about 52%" @@ -1283,13 +1283,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "7f4e49c0", + "id": "a73446bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.084664Z", - "iopub.status.busy": "2023-08-07T00:18:34.084577Z", - "iopub.status.idle": "2023-08-07T00:18:34.087059Z", - "shell.execute_reply": "2023-08-07T00:18:34.086816Z" + "iopub.execute_input": "2023-08-21T02:28:57.514459Z", + "iopub.status.busy": "2023-08-21T02:28:57.514377Z", + "iopub.status.idle": "2023-08-21T02:28:57.517011Z", + "shell.execute_reply": "2023-08-21T02:28:57.516758Z" }, "lines_to_next_cell": 2 }, @@ -1311,7 +1311,7 @@ }, { "cell_type": "markdown", - "id": "96d75735", + "id": "149949d9", "metadata": {}, "source": [ "The `!=` notation means *not equal to*, and so the last command\n", @@ -1341,13 +1341,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "9f94de4b", + "id": "8174767d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.088387Z", - "iopub.status.busy": "2023-08-07T00:18:34.088307Z", - "iopub.status.idle": "2023-08-07T00:18:34.096165Z", - "shell.execute_reply": "2023-08-07T00:18:34.095892Z" + "iopub.execute_input": "2023-08-21T02:28:57.518464Z", + "iopub.status.busy": "2023-08-21T02:28:57.518363Z", + "iopub.status.idle": "2023-08-21T02:28:57.528289Z", + "shell.execute_reply": "2023-08-21T02:28:57.527983Z" }, "lines_to_next_cell": 2 }, @@ -1425,7 +1425,7 @@ }, { "cell_type": "markdown", - "id": "1dd9ce3d", + "id": "9992d709", "metadata": {}, "source": [ "Let’s evaluate the overall accuracy as well as the accuracy within the days when\n", @@ -1435,13 +1435,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "69a4dd6b", + "id": "cba7e815", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.097583Z", - "iopub.status.busy": "2023-08-07T00:18:34.097501Z", - "iopub.status.idle": "2023-08-07T00:18:34.099616Z", - "shell.execute_reply": "2023-08-07T00:18:34.099375Z" + "iopub.execute_input": "2023-08-21T02:28:57.529915Z", + "iopub.status.busy": "2023-08-21T02:28:57.529812Z", + "iopub.status.idle": "2023-08-21T02:28:57.532108Z", + "shell.execute_reply": "2023-08-21T02:28:57.531849Z" } }, "outputs": [ @@ -1462,7 +1462,7 @@ }, { "cell_type": "markdown", - "id": "14cf6b55", + "id": "cfe9b256", "metadata": {}, "source": [ "Now the results appear to be a little better: 56% of the daily\n", @@ -1489,13 +1489,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "975fa3ca", + "id": "97993185", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.101046Z", - "iopub.status.busy": "2023-08-07T00:18:34.100966Z", - "iopub.status.idle": "2023-08-07T00:18:34.104502Z", - "shell.execute_reply": "2023-08-07T00:18:34.104254Z" + "iopub.execute_input": "2023-08-21T02:28:57.533565Z", + "iopub.status.busy": "2023-08-21T02:28:57.533462Z", + "iopub.status.idle": "2023-08-21T02:28:57.537458Z", + "shell.execute_reply": "2023-08-21T02:28:57.537180Z" }, "lines_to_next_cell": 2 }, @@ -1522,7 +1522,7 @@ }, { "cell_type": "markdown", - "id": "bdc2c0bb", + "id": "3b56915d", "metadata": {}, "source": [ "## Linear Discriminant Analysis" @@ -1530,7 +1530,7 @@ }, { "cell_type": "markdown", - "id": "41deab79", + "id": "5fd3e6e0", "metadata": {}, "source": [ "We begin by performing LDA on the `Smarket` data, using the function\n", @@ -1541,13 +1541,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "7237ffa7", + "id": "4bc774e9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.105969Z", - "iopub.status.busy": "2023-08-07T00:18:34.105892Z", - "iopub.status.idle": "2023-08-07T00:18:34.107535Z", - "shell.execute_reply": "2023-08-07T00:18:34.107296Z" + "iopub.execute_input": "2023-08-21T02:28:57.539054Z", + "iopub.status.busy": "2023-08-21T02:28:57.538952Z", + "iopub.status.idle": "2023-08-21T02:28:57.540857Z", + "shell.execute_reply": "2023-08-21T02:28:57.540537Z" } }, "outputs": [], @@ -1557,7 +1557,7 @@ }, { "cell_type": "markdown", - "id": "7289db40", + "id": "3d1a82d1", "metadata": {}, "source": [ "Since the `LDA` estimator automatically \n", @@ -1569,13 +1569,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "43a850eb", + "id": "8c6c0723", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.108941Z", - "iopub.status.busy": "2023-08-07T00:18:34.108865Z", - "iopub.status.idle": "2023-08-07T00:18:34.114955Z", - "shell.execute_reply": "2023-08-07T00:18:34.114708Z" + "iopub.execute_input": "2023-08-21T02:28:57.542568Z", + "iopub.status.busy": "2023-08-21T02:28:57.542481Z", + "iopub.status.idle": "2023-08-21T02:28:57.548927Z", + "shell.execute_reply": "2023-08-21T02:28:57.548581Z" }, "lines_to_next_cell": 0 }, @@ -1602,7 +1602,7 @@ }, { "cell_type": "markdown", - "id": "d3e0901f", + "id": "d4db3bde", "metadata": {}, "source": [ "Here we have used the list comprehensions introduced\n", @@ -1625,13 +1625,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "86b6cece", + "id": "cf8fd5ac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.116386Z", - "iopub.status.busy": "2023-08-07T00:18:34.116305Z", - "iopub.status.idle": "2023-08-07T00:18:34.118455Z", - "shell.execute_reply": "2023-08-07T00:18:34.118209Z" + "iopub.execute_input": "2023-08-21T02:28:57.550601Z", + "iopub.status.busy": "2023-08-21T02:28:57.550496Z", + "iopub.status.idle": "2023-08-21T02:28:57.552737Z", + "shell.execute_reply": "2023-08-21T02:28:57.552471Z" }, "lines_to_next_cell": 2 }, @@ -1654,7 +1654,7 @@ }, { "cell_type": "markdown", - "id": "6d75a932", + "id": "bcd5c21f", "metadata": {}, "source": [ "The estimated prior probabilities are stored in the `priors_` attribute.\n", @@ -1666,13 +1666,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "9362c7c6", + "id": "bfd6b3f8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.119865Z", - "iopub.status.busy": "2023-08-07T00:18:34.119787Z", - "iopub.status.idle": "2023-08-07T00:18:34.121925Z", - "shell.execute_reply": "2023-08-07T00:18:34.121681Z" + "iopub.execute_input": "2023-08-21T02:28:57.554217Z", + "iopub.status.busy": "2023-08-21T02:28:57.554117Z", + "iopub.status.idle": "2023-08-21T02:28:57.556249Z", + "shell.execute_reply": "2023-08-21T02:28:57.555998Z" }, "lines_to_next_cell": 2 }, @@ -1694,7 +1694,7 @@ }, { "cell_type": "markdown", - "id": "61f77e19", + "id": "60fe91d9", "metadata": {}, "source": [ "The LDA output indicates that $\\hat\\pi_{Down}=0.492$ and\n", @@ -1704,13 +1704,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "e59858dc", + "id": "a1f75de4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.123314Z", - "iopub.status.busy": "2023-08-07T00:18:34.123233Z", - "iopub.status.idle": "2023-08-07T00:18:34.125369Z", - "shell.execute_reply": "2023-08-07T00:18:34.125137Z" + "iopub.execute_input": "2023-08-21T02:28:57.557716Z", + "iopub.status.busy": "2023-08-21T02:28:57.557623Z", + "iopub.status.idle": "2023-08-21T02:28:57.559886Z", + "shell.execute_reply": "2023-08-21T02:28:57.559582Z" }, "lines_to_next_cell": 2 }, @@ -1732,7 +1732,7 @@ }, { "cell_type": "markdown", - "id": "43a8fde1", + "id": "47e60686", "metadata": {}, "source": [ "The linear discriminant vectors can be found in the `scalings_` attribute:" @@ -1741,13 +1741,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "9b5f74e8", + "id": "82794178", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.126738Z", - "iopub.status.busy": "2023-08-07T00:18:34.126660Z", - "iopub.status.idle": "2023-08-07T00:18:34.128726Z", - "shell.execute_reply": "2023-08-07T00:18:34.128484Z" + "iopub.execute_input": "2023-08-21T02:28:57.561606Z", + "iopub.status.busy": "2023-08-21T02:28:57.561489Z", + "iopub.status.idle": "2023-08-21T02:28:57.563996Z", + "shell.execute_reply": "2023-08-21T02:28:57.563652Z" } }, "outputs": [ @@ -1769,7 +1769,7 @@ }, { "cell_type": "markdown", - "id": "4655809e", + "id": "ac6ad759", "metadata": {}, "source": [ "These values provide the linear combination of `Lag1` and `Lag2` that are used to form the LDA decision rule. In other words, these are the multipliers of the elements of $X=x$ in (4.24).\n", @@ -1779,13 +1779,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "fd8e6794", + "id": "9b571047", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.130043Z", - "iopub.status.busy": "2023-08-07T00:18:34.129971Z", - "iopub.status.idle": "2023-08-07T00:18:34.132079Z", - "shell.execute_reply": "2023-08-07T00:18:34.131833Z" + "iopub.execute_input": "2023-08-21T02:28:57.565689Z", + "iopub.status.busy": "2023-08-21T02:28:57.565573Z", + "iopub.status.idle": "2023-08-21T02:28:57.568080Z", + "shell.execute_reply": "2023-08-21T02:28:57.567748Z" } }, "outputs": [], @@ -1795,7 +1795,7 @@ }, { "cell_type": "markdown", - "id": "2d211f0a", + "id": "61522ffc", "metadata": {}, "source": [ "As we observed in our comparison of classification methods\n", @@ -1806,13 +1806,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "3bb63fb1", + "id": "60f3d13a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.133469Z", - "iopub.status.busy": "2023-08-07T00:18:34.133393Z", - "iopub.status.idle": "2023-08-07T00:18:34.137177Z", - "shell.execute_reply": "2023-08-07T00:18:34.136944Z" + "iopub.execute_input": "2023-08-21T02:28:57.569793Z", + "iopub.status.busy": "2023-08-21T02:28:57.569674Z", + "iopub.status.idle": "2023-08-21T02:28:57.574322Z", + "shell.execute_reply": "2023-08-21T02:28:57.573986Z" }, "lines_to_next_cell": 2 }, @@ -1880,7 +1880,7 @@ }, { "cell_type": "markdown", - "id": "8e31152b", + "id": "6b88f943", "metadata": {}, "source": [ "We can also estimate the\n", @@ -1893,13 +1893,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "2b91f491", + "id": "96e680d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.138619Z", - "iopub.status.busy": "2023-08-07T00:18:34.138537Z", - "iopub.status.idle": "2023-08-07T00:18:34.141314Z", - "shell.execute_reply": "2023-08-07T00:18:34.141072Z" + "iopub.execute_input": "2023-08-21T02:28:57.576103Z", + "iopub.status.busy": "2023-08-21T02:28:57.575991Z", + "iopub.status.idle": "2023-08-21T02:28:57.579068Z", + "shell.execute_reply": "2023-08-21T02:28:57.578805Z" }, "lines_to_next_cell": 2 }, @@ -1924,7 +1924,7 @@ }, { "cell_type": "markdown", - "id": "d3a76822", + "id": "d20f6d2b", "metadata": {}, "source": [ "Above, we used the `np.where()` function that\n", @@ -1937,13 +1937,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "3a085714", + "id": "b6695125", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.142668Z", - "iopub.status.busy": "2023-08-07T00:18:34.142591Z", - "iopub.status.idle": "2023-08-07T00:18:34.144963Z", - "shell.execute_reply": "2023-08-07T00:18:34.144712Z" + "iopub.execute_input": "2023-08-21T02:28:57.580746Z", + "iopub.status.busy": "2023-08-21T02:28:57.580639Z", + "iopub.status.idle": "2023-08-21T02:28:57.583327Z", + "shell.execute_reply": "2023-08-21T02:28:57.583073Z" }, "lines_to_next_cell": 2 }, @@ -1967,7 +1967,7 @@ }, { "cell_type": "markdown", - "id": "0aa9cbb3", + "id": "9661ed20", "metadata": {}, "source": [ "If we wanted to use a posterior probability threshold other than\n", @@ -1983,13 +1983,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "345fb8c6", + "id": "3f38a14e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.146325Z", - "iopub.status.busy": "2023-08-07T00:18:34.146248Z", - "iopub.status.idle": "2023-08-07T00:18:34.148323Z", - "shell.execute_reply": "2023-08-07T00:18:34.148102Z" + "iopub.execute_input": "2023-08-21T02:28:57.584834Z", + "iopub.status.busy": "2023-08-21T02:28:57.584748Z", + "iopub.status.idle": "2023-08-21T02:28:57.587140Z", + "shell.execute_reply": "2023-08-21T02:28:57.586884Z" } }, "outputs": [ @@ -2010,7 +2010,7 @@ }, { "cell_type": "markdown", - "id": "6798146c", + "id": "c12fe607", "metadata": {}, "source": [ "No days in 2005 meet that threshold! In fact, the greatest posterior\n", @@ -2034,7 +2034,7 @@ }, { "cell_type": "markdown", - "id": "58f2984f", + "id": "8a384f92", "metadata": {}, "source": [ "## Quadratic Discriminant Analysis\n", @@ -2048,13 +2048,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "22c6c2a3", + "id": "9b645803", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.149774Z", - "iopub.status.busy": "2023-08-07T00:18:34.149693Z", - "iopub.status.idle": "2023-08-07T00:18:34.153308Z", - "shell.execute_reply": "2023-08-07T00:18:34.153071Z" + "iopub.execute_input": "2023-08-21T02:28:57.588684Z", + "iopub.status.busy": "2023-08-21T02:28:57.588575Z", + "iopub.status.idle": "2023-08-21T02:28:57.592433Z", + "shell.execute_reply": "2023-08-21T02:28:57.592165Z" } }, "outputs": [ @@ -2079,7 +2079,7 @@ }, { "cell_type": "markdown", - "id": "fba0bb3a", + "id": "0c595cd6", "metadata": {}, "source": [ "The `QDA()` function will again compute `means_` and `priors_`." @@ -2088,13 +2088,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "992a790a", + "id": "abfae544", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.154710Z", - "iopub.status.busy": "2023-08-07T00:18:34.154631Z", - "iopub.status.idle": "2023-08-07T00:18:34.156853Z", - "shell.execute_reply": "2023-08-07T00:18:34.156611Z" + "iopub.execute_input": "2023-08-21T02:28:57.593864Z", + "iopub.status.busy": "2023-08-21T02:28:57.593784Z", + "iopub.status.idle": "2023-08-21T02:28:57.596074Z", + "shell.execute_reply": "2023-08-21T02:28:57.595807Z" } }, "outputs": [ @@ -2117,7 +2117,7 @@ }, { "cell_type": "markdown", - "id": "8bc030e2", + "id": "47c8a520", "metadata": {}, "source": [ "The `QDA()` classifier will estimate one covariance per class. Here is the\n", @@ -2127,13 +2127,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "074c9d46", + "id": "2a3bb41e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.158287Z", - "iopub.status.busy": "2023-08-07T00:18:34.158209Z", - "iopub.status.idle": "2023-08-07T00:18:34.160379Z", - "shell.execute_reply": "2023-08-07T00:18:34.160138Z" + "iopub.execute_input": "2023-08-21T02:28:57.597540Z", + "iopub.status.busy": "2023-08-21T02:28:57.597455Z", + "iopub.status.idle": "2023-08-21T02:28:57.599658Z", + "shell.execute_reply": "2023-08-21T02:28:57.599399Z" }, "lines_to_next_cell": 0 }, @@ -2156,7 +2156,7 @@ }, { "cell_type": "markdown", - "id": "fa5963f6", + "id": "01a6ad38", "metadata": {}, "source": [ "The output contains the group means. But it does not contain the\n", @@ -2169,13 +2169,13 @@ { "cell_type": "code", "execution_count": 36, - "id": "3c95aae1", + "id": "1c64310b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.161750Z", - "iopub.status.busy": "2023-08-07T00:18:34.161677Z", - "iopub.status.idle": "2023-08-07T00:18:34.166050Z", - "shell.execute_reply": "2023-08-07T00:18:34.165798Z" + "iopub.execute_input": "2023-08-21T02:28:57.601097Z", + "iopub.status.busy": "2023-08-21T02:28:57.601019Z", + "iopub.status.idle": "2023-08-21T02:28:57.605729Z", + "shell.execute_reply": "2023-08-21T02:28:57.605444Z" }, "lines_to_next_cell": 0 }, @@ -2244,7 +2244,7 @@ }, { "cell_type": "markdown", - "id": "0a72c1b8", + "id": "7b797db4", "metadata": {}, "source": [ "Interestingly, the QDA predictions are accurate almost 60% of the\n", @@ -2254,13 +2254,13 @@ { "cell_type": "code", "execution_count": 37, - "id": "935b2079", + "id": "0c05c5a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.167439Z", - "iopub.status.busy": "2023-08-07T00:18:34.167360Z", - "iopub.status.idle": "2023-08-07T00:18:34.169654Z", - "shell.execute_reply": "2023-08-07T00:18:34.169417Z" + "iopub.execute_input": "2023-08-21T02:28:57.607207Z", + "iopub.status.busy": "2023-08-21T02:28:57.607093Z", + "iopub.status.idle": "2023-08-21T02:28:57.609626Z", + "shell.execute_reply": "2023-08-21T02:28:57.609348Z" }, "lines_to_next_cell": 2 }, @@ -2282,7 +2282,7 @@ }, { "cell_type": "markdown", - "id": "cbf4d7d1", + "id": "bb1a8707", "metadata": {}, "source": [ "This level of accuracy is quite impressive for stock market data, which is\n", @@ -2296,7 +2296,7 @@ }, { "cell_type": "markdown", - "id": "b89dfb88", + "id": "1bb713b7", "metadata": {}, "source": [ "## Naive Bayes\n", @@ -2310,13 +2310,13 @@ { "cell_type": "code", "execution_count": 38, - "id": "628b0355", + "id": "47d85305", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.171111Z", - "iopub.status.busy": "2023-08-07T00:18:34.171037Z", - "iopub.status.idle": "2023-08-07T00:18:34.174682Z", - "shell.execute_reply": "2023-08-07T00:18:34.174410Z" + "iopub.execute_input": "2023-08-21T02:28:57.611305Z", + "iopub.status.busy": "2023-08-21T02:28:57.611177Z", + "iopub.status.idle": "2023-08-21T02:28:57.615527Z", + "shell.execute_reply": "2023-08-21T02:28:57.615221Z" }, "lines_to_next_cell": 2 }, @@ -2342,7 +2342,7 @@ }, { "cell_type": "markdown", - "id": "66916c68", + "id": "363a04ab", "metadata": {}, "source": [ "The classes are stored as `classes_`." @@ -2351,13 +2351,13 @@ { "cell_type": "code", "execution_count": 39, - "id": "8a5fc302", + "id": "c553aadf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.176064Z", - "iopub.status.busy": "2023-08-07T00:18:34.175981Z", - "iopub.status.idle": "2023-08-07T00:18:34.178020Z", - "shell.execute_reply": "2023-08-07T00:18:34.177775Z" + "iopub.execute_input": "2023-08-21T02:28:57.617346Z", + "iopub.status.busy": "2023-08-21T02:28:57.617202Z", + "iopub.status.idle": "2023-08-21T02:28:57.619612Z", + "shell.execute_reply": "2023-08-21T02:28:57.619301Z" }, "lines_to_next_cell": 2 }, @@ -2379,7 +2379,7 @@ }, { "cell_type": "markdown", - "id": "753c7d37", + "id": "88ba284a", "metadata": {}, "source": [ "The class prior probabilities are stored in the `class_prior_` attribute." @@ -2388,13 +2388,13 @@ { "cell_type": "code", "execution_count": 40, - "id": "6b1b5cc6", + "id": "4604bd3d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.179469Z", - "iopub.status.busy": "2023-08-07T00:18:34.179381Z", - "iopub.status.idle": "2023-08-07T00:18:34.181492Z", - "shell.execute_reply": "2023-08-07T00:18:34.181231Z" + "iopub.execute_input": "2023-08-21T02:28:57.621294Z", + "iopub.status.busy": "2023-08-21T02:28:57.621168Z", + "iopub.status.idle": "2023-08-21T02:28:57.623355Z", + "shell.execute_reply": "2023-08-21T02:28:57.623086Z" }, "lines_to_next_cell": 2 }, @@ -2416,7 +2416,7 @@ }, { "cell_type": "markdown", - "id": "848e5d7c", + "id": "29471619", "metadata": {}, "source": [ "The parameters of the features can be found in the `theta_` and `var_` attributes. The number of rows\n", @@ -2427,13 +2427,13 @@ { "cell_type": "code", "execution_count": 41, - "id": "1a4b7cb0", + "id": "5ac2cabe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.182840Z", - "iopub.status.busy": "2023-08-07T00:18:34.182768Z", - "iopub.status.idle": "2023-08-07T00:18:34.184754Z", - "shell.execute_reply": "2023-08-07T00:18:34.184502Z" + "iopub.execute_input": "2023-08-21T02:28:57.624902Z", + "iopub.status.busy": "2023-08-21T02:28:57.624775Z", + "iopub.status.idle": "2023-08-21T02:28:57.627201Z", + "shell.execute_reply": "2023-08-21T02:28:57.626911Z" } }, "outputs": [ @@ -2455,7 +2455,7 @@ }, { "cell_type": "markdown", - "id": "60efd24c", + "id": "83986c67", "metadata": {}, "source": [ "Its variance is 1.503." @@ -2464,13 +2464,13 @@ { "cell_type": "code", "execution_count": 42, - "id": "f59d7cb4", + "id": "f8623945", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.186100Z", - "iopub.status.busy": "2023-08-07T00:18:34.186027Z", - "iopub.status.idle": "2023-08-07T00:18:34.188103Z", - "shell.execute_reply": "2023-08-07T00:18:34.187846Z" + "iopub.execute_input": "2023-08-21T02:28:57.628781Z", + "iopub.status.busy": "2023-08-21T02:28:57.628673Z", + "iopub.status.idle": "2023-08-21T02:28:57.631185Z", + "shell.execute_reply": "2023-08-21T02:28:57.630909Z" }, "lines_to_next_cell": 0 }, @@ -2493,7 +2493,7 @@ }, { "cell_type": "markdown", - "id": "4518d5db", + "id": "735e373e", "metadata": {}, "source": [ "How do we know the names of these attributes? We use `NB?` (or `?NB`).\n", @@ -2504,13 +2504,13 @@ { "cell_type": "code", "execution_count": 43, - "id": "aa50d0b8", + "id": "0790f26e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.189446Z", - "iopub.status.busy": "2023-08-07T00:18:34.189365Z", - "iopub.status.idle": "2023-08-07T00:18:34.192272Z", - "shell.execute_reply": "2023-08-07T00:18:34.192020Z" + "iopub.execute_input": "2023-08-21T02:28:57.632749Z", + "iopub.status.busy": "2023-08-21T02:28:57.632622Z", + "iopub.status.idle": "2023-08-21T02:28:57.635950Z", + "shell.execute_reply": "2023-08-21T02:28:57.635645Z" }, "lines_to_next_cell": 2 }, @@ -2534,7 +2534,7 @@ }, { "cell_type": "markdown", - "id": "3ee8e214", + "id": "d6c04b6f", "metadata": {}, "source": [ "Similarly for the variance:" @@ -2543,13 +2543,13 @@ { "cell_type": "code", "execution_count": 44, - "id": "3a2b0653", + "id": "4a8cf0ce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.193606Z", - "iopub.status.busy": "2023-08-07T00:18:34.193530Z", - "iopub.status.idle": "2023-08-07T00:18:34.196330Z", - "shell.execute_reply": "2023-08-07T00:18:34.196080Z" + "iopub.execute_input": "2023-08-21T02:28:57.637431Z", + "iopub.status.busy": "2023-08-21T02:28:57.637345Z", + "iopub.status.idle": "2023-08-21T02:28:57.640679Z", + "shell.execute_reply": "2023-08-21T02:28:57.640387Z" }, "lines_to_next_cell": 0 }, @@ -2573,7 +2573,7 @@ }, { "cell_type": "markdown", - "id": "5cb3b59d", + "id": "ada40be5", "metadata": {}, "source": [ "Since `NB()` is a classifier in the `sklearn` library, making predictions\n", @@ -2583,13 +2583,13 @@ { "cell_type": "code", "execution_count": 45, - "id": "938f09ea", + "id": "94e7ff1a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.197723Z", - "iopub.status.busy": "2023-08-07T00:18:34.197649Z", - "iopub.status.idle": "2023-08-07T00:18:34.201814Z", - "shell.execute_reply": "2023-08-07T00:18:34.201560Z" + "iopub.execute_input": "2023-08-21T02:28:57.642306Z", + "iopub.status.busy": "2023-08-21T02:28:57.642190Z", + "iopub.status.idle": "2023-08-21T02:28:57.646804Z", + "shell.execute_reply": "2023-08-21T02:28:57.646534Z" } }, "outputs": [ @@ -2657,7 +2657,7 @@ }, { "cell_type": "markdown", - "id": "a0ce38d6", + "id": "83ee1f52", "metadata": {}, "source": [ "Naive Bayes performs well on these data, with accurate predictions over 59% of the time. This is slightly worse than QDA, but much better than LDA.\n", @@ -2668,13 +2668,13 @@ { "cell_type": "code", "execution_count": 46, - "id": "42f0e4a2", + "id": "137e23aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.203256Z", - "iopub.status.busy": "2023-08-07T00:18:34.203171Z", - "iopub.status.idle": "2023-08-07T00:18:34.206007Z", - "shell.execute_reply": "2023-08-07T00:18:34.205785Z" + "iopub.execute_input": "2023-08-21T02:28:57.648357Z", + "iopub.status.busy": "2023-08-21T02:28:57.648246Z", + "iopub.status.idle": "2023-08-21T02:28:57.651178Z", + "shell.execute_reply": "2023-08-21T02:28:57.650935Z" }, "lines_to_next_cell": 2 }, @@ -2700,7 +2700,7 @@ }, { "cell_type": "markdown", - "id": "ede194da", + "id": "52c4905b", "metadata": {}, "source": [ "## K-Nearest Neighbors\n", @@ -2718,13 +2718,13 @@ { "cell_type": "code", "execution_count": 47, - "id": "8b833ee4", + "id": "142c5217", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.207393Z", - "iopub.status.busy": "2023-08-07T00:18:34.207316Z", - "iopub.status.idle": "2023-08-07T00:18:34.217410Z", - "shell.execute_reply": "2023-08-07T00:18:34.217153Z" + "iopub.execute_input": "2023-08-21T02:28:57.652781Z", + "iopub.status.busy": "2023-08-21T02:28:57.652676Z", + "iopub.status.idle": "2023-08-21T02:28:57.665013Z", + "shell.execute_reply": "2023-08-21T02:28:57.664742Z" } }, "outputs": [ @@ -2795,7 +2795,7 @@ }, { "cell_type": "markdown", - "id": "5fb57a8d", + "id": "7122ab7d", "metadata": {}, "source": [ "The results using $K=1$ are not very good, since only $50%$ of the\n", @@ -2806,13 +2806,13 @@ { "cell_type": "code", "execution_count": 48, - "id": "45410b7f", + "id": "f5a272ee", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.218786Z", - "iopub.status.busy": "2023-08-07T00:18:34.218710Z", - "iopub.status.idle": "2023-08-07T00:18:34.221046Z", - "shell.execute_reply": "2023-08-07T00:18:34.220711Z" + "iopub.execute_input": "2023-08-21T02:28:57.666910Z", + "iopub.status.busy": "2023-08-21T02:28:57.666782Z", + "iopub.status.idle": "2023-08-21T02:28:57.669498Z", + "shell.execute_reply": "2023-08-21T02:28:57.669179Z" } }, "outputs": [ @@ -2833,7 +2833,7 @@ }, { "cell_type": "markdown", - "id": "500e00a1", + "id": "978e8677", "metadata": {}, "source": [ "We repeat the\n", @@ -2843,13 +2843,13 @@ { "cell_type": "code", "execution_count": 49, - "id": "ae6e0156", + "id": "95e206a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.223557Z", - "iopub.status.busy": "2023-08-07T00:18:34.223449Z", - "iopub.status.idle": "2023-08-07T00:18:34.231477Z", - "shell.execute_reply": "2023-08-07T00:18:34.231224Z" + "iopub.execute_input": "2023-08-21T02:28:57.671045Z", + "iopub.status.busy": "2023-08-21T02:28:57.670939Z", + "iopub.status.idle": "2023-08-21T02:28:57.679000Z", + "shell.execute_reply": "2023-08-21T02:28:57.678715Z" }, "lines_to_next_cell": 0 }, @@ -2873,7 +2873,7 @@ }, { "cell_type": "markdown", - "id": "11a369af", + "id": "181bed9c", "metadata": {}, "source": [ "The results have improved slightly. But increasing *K* further\n", @@ -2884,7 +2884,7 @@ }, { "cell_type": "markdown", - "id": "ab3b1e64", + "id": "07a9cc30", "metadata": {}, "source": [ "KNN does not perform well on the `Smarket` data, but it often does provide impressive results. As an example we will apply the KNN approach to the `Caravan` data set, which is part of the `ISLP` library. This data set includes 85\n", @@ -2898,13 +2898,13 @@ { "cell_type": "code", "execution_count": 50, - "id": "9338564d", + "id": "422563b7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.233037Z", - "iopub.status.busy": "2023-08-07T00:18:34.232954Z", - "iopub.status.idle": "2023-08-07T00:18:34.250597Z", - "shell.execute_reply": "2023-08-07T00:18:34.250317Z" + "iopub.execute_input": "2023-08-21T02:28:57.680643Z", + "iopub.status.busy": "2023-08-21T02:28:57.680560Z", + "iopub.status.idle": "2023-08-21T02:28:57.698929Z", + "shell.execute_reply": "2023-08-21T02:28:57.698652Z" }, "lines_to_next_cell": 2 }, @@ -2930,7 +2930,7 @@ }, { "cell_type": "markdown", - "id": "ba5e14a9", + "id": "1d928895", "metadata": {}, "source": [ "The method `value_counts()` takes a `pd.Series` or `pd.DataFrame` and returns\n", @@ -2942,13 +2942,13 @@ { "cell_type": "code", "execution_count": 51, - "id": "a94f2ea7", + "id": "583c860c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.252089Z", - "iopub.status.busy": "2023-08-07T00:18:34.252008Z", - "iopub.status.idle": "2023-08-07T00:18:34.254154Z", - "shell.execute_reply": "2023-08-07T00:18:34.253908Z" + "iopub.execute_input": "2023-08-21T02:28:57.700534Z", + "iopub.status.busy": "2023-08-21T02:28:57.700406Z", + "iopub.status.idle": "2023-08-21T02:28:57.702790Z", + "shell.execute_reply": "2023-08-21T02:28:57.702539Z" }, "lines_to_next_cell": 2 }, @@ -2970,7 +2970,7 @@ }, { "cell_type": "markdown", - "id": "a753d948", + "id": "c4f745d5", "metadata": {}, "source": [ "Our features will include all columns except `Purchase`." @@ -2979,13 +2979,13 @@ { "cell_type": "code", "execution_count": 52, - "id": "6b6438b0", + "id": "19ee3bf2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.255519Z", - "iopub.status.busy": "2023-08-07T00:18:34.255441Z", - "iopub.status.idle": "2023-08-07T00:18:34.258008Z", - "shell.execute_reply": "2023-08-07T00:18:34.257754Z" + "iopub.execute_input": "2023-08-21T02:28:57.704427Z", + "iopub.status.busy": "2023-08-21T02:28:57.704308Z", + "iopub.status.idle": "2023-08-21T02:28:57.707107Z", + "shell.execute_reply": "2023-08-21T02:28:57.706716Z" } }, "outputs": [], @@ -2995,7 +2995,7 @@ }, { "cell_type": "markdown", - "id": "52a62ab9", + "id": "3b9a30b4", "metadata": {}, "source": [ "Because the KNN classifier predicts the class of a given test\n", @@ -3028,13 +3028,13 @@ { "cell_type": "code", "execution_count": 53, - "id": "158bfb3f", + "id": "fdc0e5f1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.259410Z", - "iopub.status.busy": "2023-08-07T00:18:34.259332Z", - "iopub.status.idle": "2023-08-07T00:18:34.261018Z", - "shell.execute_reply": "2023-08-07T00:18:34.260785Z" + "iopub.execute_input": "2023-08-21T02:28:57.708836Z", + "iopub.status.busy": "2023-08-21T02:28:57.708707Z", + "iopub.status.idle": "2023-08-21T02:28:57.710507Z", + "shell.execute_reply": "2023-08-21T02:28:57.710220Z" }, "lines_to_next_cell": 0 }, @@ -3047,7 +3047,7 @@ }, { "cell_type": "markdown", - "id": "45baf26c", + "id": "7613cdcd", "metadata": {}, "source": [ "The argument `with_mean` indicates whether or not\n", @@ -3067,13 +3067,13 @@ { "cell_type": "code", "execution_count": 54, - "id": "d11b04c4", + "id": "2bb9d48b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.262381Z", - "iopub.status.busy": "2023-08-07T00:18:34.262309Z", - "iopub.status.idle": "2023-08-07T00:18:34.268511Z", - "shell.execute_reply": "2023-08-07T00:18:34.268240Z" + "iopub.execute_input": "2023-08-21T02:28:57.712025Z", + "iopub.status.busy": "2023-08-21T02:28:57.711919Z", + "iopub.status.idle": "2023-08-21T02:28:57.717961Z", + "shell.execute_reply": "2023-08-21T02:28:57.717623Z" }, "lines_to_next_cell": 0 }, @@ -3085,7 +3085,7 @@ }, { "cell_type": "markdown", - "id": "f388fe5b", + "id": "fb65f78c", "metadata": {}, "source": [ "Now every column of `feature_std` below has a standard deviation of\n", @@ -3095,13 +3095,13 @@ { "cell_type": "code", "execution_count": 55, - "id": "f0c65b34", + "id": "649b57b3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.270915Z", - "iopub.status.busy": "2023-08-07T00:18:34.270815Z", - "iopub.status.idle": "2023-08-07T00:18:34.280162Z", - "shell.execute_reply": "2023-08-07T00:18:34.279871Z" + "iopub.execute_input": "2023-08-21T02:28:57.719733Z", + "iopub.status.busy": "2023-08-21T02:28:57.719643Z", + "iopub.status.idle": "2023-08-21T02:28:57.725788Z", + "shell.execute_reply": "2023-08-21T02:28:57.725511Z" } }, "outputs": [ @@ -3136,10 +3136,10 @@ }, { "cell_type": "markdown", - "id": "9668a83b", + "id": "758fa566", "metadata": {}, "source": [ - "Notice that the standard deviations are not quite $1$ here; this is again due to some procedures using the $1/n$ convention for variances (in this case `scaler()`), while others use $1/(n-1)$ (the `std()` method). See the footnote on page 103.\n", + "Notice that the standard deviations are not quite $1$ here; this is again due to some procedures using the $1/n$ convention for variances (in this case `scaler()`), while others use $1/(n-1)$ (the `std()` method). See the footnote on page 200.\n", "In this case it does not matter, as long as the variables are all on the same scale.\n", "\n", "Using the function `train_test_split()` we now split the observations into a test set,\n", @@ -3151,13 +3151,13 @@ { "cell_type": "code", "execution_count": 56, - "id": "3861cc4f", + "id": "d0aafd5e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.281711Z", - "iopub.status.busy": "2023-08-07T00:18:34.281622Z", - "iopub.status.idle": "2023-08-07T00:18:34.285831Z", - "shell.execute_reply": "2023-08-07T00:18:34.285544Z" + "iopub.execute_input": "2023-08-21T02:28:57.727208Z", + "iopub.status.busy": "2023-08-21T02:28:57.727114Z", + "iopub.status.idle": "2023-08-21T02:28:57.730769Z", + "shell.execute_reply": "2023-08-21T02:28:57.730507Z" }, "lines_to_next_cell": 0 }, @@ -3174,7 +3174,7 @@ }, { "cell_type": "markdown", - "id": "3cd24d0a", + "id": "03b585b9", "metadata": {}, "source": [ "`?train_test_split` reveals that the non-keyword arguments can be `lists`, `arrays`, `pandas dataframes` etc that all have the same length (`shape[0]`) and hence are *indexable*. In this case they are the dataframe `feature_std` and the response variable `Purchase`.\n", @@ -3186,13 +3186,13 @@ { "cell_type": "code", "execution_count": 57, - "id": "1b9d7b32", + "id": "ad02fb42", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.287335Z", - "iopub.status.busy": "2023-08-07T00:18:34.287257Z", - "iopub.status.idle": "2023-08-07T00:18:34.618181Z", - "shell.execute_reply": "2023-08-07T00:18:34.617751Z" + "iopub.execute_input": "2023-08-21T02:28:57.732302Z", + "iopub.status.busy": "2023-08-21T02:28:57.732202Z", + "iopub.status.idle": "2023-08-21T02:28:58.059169Z", + "shell.execute_reply": "2023-08-21T02:28:58.058739Z" }, "lines_to_next_cell": 2 }, @@ -3216,7 +3216,7 @@ }, { "cell_type": "markdown", - "id": "0464c302", + "id": "b9dd0550", "metadata": {}, "source": [ "The KNN error rate on the 1,000 test observations is about $11%$.\n", @@ -3239,13 +3239,13 @@ { "cell_type": "code", "execution_count": 58, - "id": "d683b2f9", + "id": "901f772e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.620146Z", - "iopub.status.busy": "2023-08-07T00:18:34.620027Z", - "iopub.status.idle": "2023-08-07T00:18:34.626198Z", - "shell.execute_reply": "2023-08-07T00:18:34.625901Z" + "iopub.execute_input": "2023-08-21T02:28:58.061293Z", + "iopub.status.busy": "2023-08-21T02:28:58.061165Z", + "iopub.status.idle": "2023-08-21T02:28:58.067519Z", + "shell.execute_reply": "2023-08-21T02:28:58.067152Z" } }, "outputs": [ @@ -3312,7 +3312,7 @@ }, { "cell_type": "markdown", - "id": "19ed36b1", + "id": "b6260417", "metadata": {}, "source": [ "It turns out that KNN with $K=1$ does far better than random guessing\n", @@ -3324,13 +3324,13 @@ { "cell_type": "code", "execution_count": 59, - "id": "3498856a", + "id": "684f8941", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.627931Z", - "iopub.status.busy": "2023-08-07T00:18:34.627821Z", - "iopub.status.idle": "2023-08-07T00:18:34.630085Z", - "shell.execute_reply": "2023-08-07T00:18:34.629798Z" + "iopub.execute_input": "2023-08-21T02:28:58.069340Z", + "iopub.status.busy": "2023-08-21T02:28:58.069223Z", + "iopub.status.idle": "2023-08-21T02:28:58.071737Z", + "shell.execute_reply": "2023-08-21T02:28:58.071247Z" }, "lines_to_next_cell": 2 }, @@ -3352,7 +3352,7 @@ }, { "cell_type": "markdown", - "id": "3ec215b9", + "id": "19dcfad2", "metadata": {}, "source": [ "### Tuning Parameters\n", @@ -3368,13 +3368,13 @@ { "cell_type": "code", "execution_count": 60, - "id": "9ed36c50", + "id": "4d984cf0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.631783Z", - "iopub.status.busy": "2023-08-07T00:18:34.631676Z", - "iopub.status.idle": "2023-08-07T00:18:34.704358Z", - "shell.execute_reply": "2023-08-07T00:18:34.703933Z" + "iopub.execute_input": "2023-08-21T02:28:58.073571Z", + "iopub.status.busy": "2023-08-21T02:28:58.073457Z", + "iopub.status.idle": "2023-08-21T02:28:58.146516Z", + "shell.execute_reply": "2023-08-21T02:28:58.146020Z" }, "lines_to_next_cell": 0 }, @@ -3409,7 +3409,7 @@ }, { "cell_type": "markdown", - "id": "0718d8f0", + "id": "04c42362", "metadata": {}, "source": [ "We see some variability --- the numbers for `K=4` are very different from the rest.\n", @@ -3435,13 +3435,13 @@ { "cell_type": "code", "execution_count": 61, - "id": "8605a327", + "id": "d24f4e50", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:34.706353Z", - "iopub.status.busy": "2023-08-07T00:18:34.706235Z", - "iopub.status.idle": "2023-08-07T00:18:35.327825Z", - "shell.execute_reply": "2023-08-07T00:18:35.327057Z" + "iopub.execute_input": "2023-08-21T02:28:58.148624Z", + "iopub.status.busy": "2023-08-21T02:28:58.148360Z", + "iopub.status.idle": "2023-08-21T02:28:58.773984Z", + "shell.execute_reply": "2023-08-21T02:28:58.773325Z" } }, "outputs": [ @@ -3512,7 +3512,7 @@ }, { "cell_type": "markdown", - "id": "daf1655f", + "id": "f2d91f33", "metadata": {}, "source": [ "We used the argument `solver='liblinear'` above to\n", @@ -3532,13 +3532,13 @@ { "cell_type": "code", "execution_count": 62, - "id": "e686f675", + "id": "25152580", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.331998Z", - "iopub.status.busy": "2023-08-07T00:18:35.331623Z", - "iopub.status.idle": "2023-08-07T00:18:35.345291Z", - "shell.execute_reply": "2023-08-07T00:18:35.344659Z" + "iopub.execute_input": "2023-08-21T02:28:58.778052Z", + "iopub.status.busy": "2023-08-21T02:28:58.777754Z", + "iopub.status.idle": "2023-08-21T02:28:58.791505Z", + "shell.execute_reply": "2023-08-21T02:28:58.790362Z" } }, "outputs": [ @@ -3607,13 +3607,13 @@ { "cell_type": "code", "execution_count": 63, - "id": "d92cfcd4", + "id": "b8ea6e08", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.349220Z", - "iopub.status.busy": "2023-08-07T00:18:35.348866Z", - "iopub.status.idle": "2023-08-07T00:18:35.355490Z", - "shell.execute_reply": "2023-08-07T00:18:35.354787Z" + "iopub.execute_input": "2023-08-21T02:28:58.798441Z", + "iopub.status.busy": "2023-08-21T02:28:58.798187Z", + "iopub.status.idle": "2023-08-21T02:28:58.805015Z", + "shell.execute_reply": "2023-08-21T02:28:58.804266Z" }, "lines_to_next_cell": 0 }, @@ -3635,7 +3635,7 @@ }, { "cell_type": "markdown", - "id": "8a0c1140", + "id": "bb96ed25", "metadata": {}, "source": [ "## Linear and Poisson Regression on the Bikeshare Data\n", @@ -3647,13 +3647,13 @@ { "cell_type": "code", "execution_count": 64, - "id": "6f93060c", + "id": "def80d79", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.359503Z", - "iopub.status.busy": "2023-08-07T00:18:35.359134Z", - "iopub.status.idle": "2023-08-07T00:18:35.374649Z", - "shell.execute_reply": "2023-08-07T00:18:35.373898Z" + "iopub.execute_input": "2023-08-21T02:28:58.808423Z", + "iopub.status.busy": "2023-08-21T02:28:58.807929Z", + "iopub.status.idle": "2023-08-21T02:28:58.826147Z", + "shell.execute_reply": "2023-08-21T02:28:58.825308Z" }, "lines_to_next_cell": 0 }, @@ -3664,7 +3664,7 @@ }, { "cell_type": "markdown", - "id": "af82d61e", + "id": "146abe69", "metadata": {}, "source": [ "Let's have a peek at the dimensions and names of the variables in this dataframe." @@ -3673,13 +3673,13 @@ { "cell_type": "code", "execution_count": 65, - "id": "725ce173", + "id": "f899d5ab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.378452Z", - "iopub.status.busy": "2023-08-07T00:18:35.378048Z", - "iopub.status.idle": "2023-08-07T00:18:35.382634Z", - "shell.execute_reply": "2023-08-07T00:18:35.382022Z" + "iopub.execute_input": "2023-08-21T02:28:58.838005Z", + "iopub.status.busy": "2023-08-21T02:28:58.837542Z", + "iopub.status.idle": "2023-08-21T02:28:58.842697Z", + "shell.execute_reply": "2023-08-21T02:28:58.841989Z" } }, "outputs": [ @@ -3704,7 +3704,7 @@ }, { "cell_type": "markdown", - "id": "9b133dc3", + "id": "b07be452", "metadata": {}, "source": [ "### Linear Regression\n", @@ -3715,13 +3715,13 @@ { "cell_type": "code", "execution_count": 66, - "id": "ee3e5e3b", + "id": "76f4cea5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.386155Z", - "iopub.status.busy": "2023-08-07T00:18:35.385658Z", - "iopub.status.idle": "2023-08-07T00:18:35.457335Z", - "shell.execute_reply": "2023-08-07T00:18:35.456140Z" + "iopub.execute_input": "2023-08-21T02:28:58.846154Z", + "iopub.status.busy": "2023-08-21T02:28:58.845860Z", + "iopub.status.idle": "2023-08-21T02:28:58.936368Z", + "shell.execute_reply": "2023-08-21T02:28:58.931496Z" } }, "outputs": [ @@ -3755,86 +3755,86 @@ " \n", " \n", " intercept\n", - " -27.2068\n", - " 6.715\n", - " -4.052\n", + " -68.6317\n", + " 5.307\n", + " -12.932\n", " 0.000\n", " \n", " \n", - " mnth[Aug]\n", - " 11.8181\n", - " 4.698\n", - " 2.515\n", - " 0.012\n", - " \n", - " \n", - " mnth[Dec]\n", - " 5.0328\n", - " 4.280\n", - " 1.176\n", - " 0.240\n", - " \n", - " \n", " mnth[Feb]\n", - " -34.5797\n", - " 4.575\n", - " -7.558\n", - " 0.000\n", - " \n", - " \n", - " mnth[Jan]\n", - " -41.4249\n", - " 4.972\n", - " -8.331\n", - " 0.000\n", - " \n", - " \n", - " mnth[July]\n", - " 3.8996\n", - " 5.003\n", - " 0.779\n", - " 0.436\n", - " \n", - " \n", - " mnth[June]\n", - " 26.3938\n", - " 4.642\n", - " 5.686\n", - " 0.000\n", + " 6.8452\n", + " 4.287\n", + " 1.597\n", + " 0.110\n", " \n", " \n", " mnth[March]\n", - " -24.8735\n", - " 4.277\n", - " -5.815\n", + " 16.5514\n", + " 4.301\n", + " 3.848\n", + " 0.000\n", + " \n", + " \n", + " mnth[April]\n", + " 41.4249\n", + " 4.972\n", + " 8.331\n", " 0.000\n", " \n", " \n", " mnth[May]\n", - " 31.1322\n", - " 4.150\n", - " 7.501\n", + " 72.5571\n", + " 5.641\n", + " 12.862\n", " 0.000\n", " \n", " \n", - " mnth[Nov]\n", - " 18.8851\n", - " 4.099\n", - " 4.607\n", + " mnth[June]\n", + " 67.8187\n", + " 6.544\n", + " 10.364\n", " 0.000\n", " \n", " \n", - " mnth[Oct]\n", - " 34.4093\n", - " 4.006\n", - " 8.589\n", + " mnth[July]\n", + " 45.3245\n", + " 7.081\n", + " 6.401\n", + " 0.000\n", + " \n", + " \n", + " mnth[Aug]\n", + " 53.2430\n", + " 6.640\n", + " 8.019\n", " 0.000\n", " \n", " \n", " mnth[Sept]\n", - " 25.2534\n", - " 4.293\n", - " 5.883\n", + " 66.6783\n", + " 5.925\n", + " 11.254\n", + " 0.000\n", + " \n", + " \n", + " mnth[Oct]\n", + " 75.8343\n", + " 4.950\n", + " 15.319\n", + " 0.000\n", + " \n", + " \n", + " mnth[Nov]\n", + " 60.3100\n", + " 4.610\n", + " 13.083\n", + " 0.000\n", + " \n", + " \n", + " mnth[Dec]\n", + " 46.4577\n", + " 4.271\n", + " 10.878\n", " 0.000\n", " \n", " \n", @@ -4039,18 +4039,18 @@ ], "text/plain": [ " coef std err t P>|t|\n", - "intercept -27.2068 6.715 -4.052 0.000\n", - "mnth[Aug] 11.8181 4.698 2.515 0.012\n", - "mnth[Dec] 5.0328 4.280 1.176 0.240\n", - "mnth[Feb] -34.5797 4.575 -7.558 0.000\n", - "mnth[Jan] -41.4249 4.972 -8.331 0.000\n", - "mnth[July] 3.8996 5.003 0.779 0.436\n", - "mnth[June] 26.3938 4.642 5.686 0.000\n", - "mnth[March] -24.8735 4.277 -5.815 0.000\n", - "mnth[May] 31.1322 4.150 7.501 0.000\n", - "mnth[Nov] 18.8851 4.099 4.607 0.000\n", - "mnth[Oct] 34.4093 4.006 8.589 0.000\n", - "mnth[Sept] 25.2534 4.293 5.883 0.000\n", + "intercept -68.6317 5.307 -12.932 0.000\n", + "mnth[Feb] 6.8452 4.287 1.597 0.110\n", + "mnth[March] 16.5514 4.301 3.848 0.000\n", + "mnth[April] 41.4249 4.972 8.331 0.000\n", + "mnth[May] 72.5571 5.641 12.862 0.000\n", + "mnth[June] 67.8187 6.544 10.364 0.000\n", + "mnth[July] 45.3245 7.081 6.401 0.000\n", + "mnth[Aug] 53.2430 6.640 8.019 0.000\n", + "mnth[Sept] 66.6783 5.925 11.254 0.000\n", + "mnth[Oct] 75.8343 4.950 15.319 0.000\n", + "mnth[Nov] 60.3100 4.610 13.083 0.000\n", + "mnth[Dec] 46.4577 4.271 10.878 0.000\n", "hr[1] -14.5793 5.699 -2.558 0.011\n", "hr[2] -21.5791 5.733 -3.764 0.000\n", "hr[3] -31.1408 5.778 -5.389 0.000\n", @@ -4099,7 +4099,7 @@ }, { "cell_type": "markdown", - "id": "36f3063f", + "id": "46d55b3d", "metadata": {}, "source": [ "There are 24 levels in `hr` and 40 rows in all.\n", @@ -4119,13 +4119,13 @@ { "cell_type": "code", "execution_count": 67, - "id": "d6a047f5", + "id": "5778ada8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.461563Z", - "iopub.status.busy": "2023-08-07T00:18:35.460853Z", - "iopub.status.idle": "2023-08-07T00:18:35.464618Z", - "shell.execute_reply": "2023-08-07T00:18:35.463961Z" + "iopub.execute_input": "2023-08-21T02:28:58.941746Z", + "iopub.status.busy": "2023-08-21T02:28:58.941366Z", + "iopub.status.idle": "2023-08-21T02:28:58.948890Z", + "shell.execute_reply": "2023-08-21T02:28:58.947630Z" }, "lines_to_next_cell": 0 }, @@ -4137,7 +4137,7 @@ }, { "cell_type": "markdown", - "id": "6ed435ca", + "id": "06849d92", "metadata": {}, "source": [ "Refitting again:" @@ -4146,13 +4146,13 @@ { "cell_type": "code", "execution_count": 68, - "id": "d7f6edaf", + "id": "c6da14b9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.467867Z", - "iopub.status.busy": "2023-08-07T00:18:35.467482Z", - "iopub.status.idle": "2023-08-07T00:18:35.536860Z", - "shell.execute_reply": "2023-08-07T00:18:35.535938Z" + "iopub.execute_input": "2023-08-21T02:28:58.953721Z", + "iopub.status.busy": "2023-08-21T02:28:58.953330Z", + "iopub.status.idle": "2023-08-21T02:28:59.054283Z", + "shell.execute_reply": "2023-08-21T02:28:59.053564Z" } }, "outputs": [ @@ -4530,7 +4530,7 @@ }, { "cell_type": "markdown", - "id": "edea9530", + "id": "62d884bd", "metadata": {}, "source": [ "What is the difference between the two codings? In `M2_lm`, a\n", @@ -4556,20 +4556,20 @@ { "cell_type": "code", "execution_count": 69, - "id": "412ce964", + "id": "461d57c5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.541020Z", - "iopub.status.busy": "2023-08-07T00:18:35.540717Z", - "iopub.status.idle": "2023-08-07T00:18:35.554132Z", - "shell.execute_reply": "2023-08-07T00:18:35.552973Z" + "iopub.execute_input": "2023-08-21T02:28:59.063565Z", + "iopub.status.busy": "2023-08-21T02:28:59.063233Z", + "iopub.status.idle": "2023-08-21T02:28:59.071787Z", + "shell.execute_reply": "2023-08-21T02:28:59.070620Z" } }, "outputs": [ { "data": { "text/plain": [ - "4.186226544780569e-19" + "1.0353919305327476e-18" ] }, "execution_count": 69, @@ -4583,7 +4583,7 @@ }, { "cell_type": "markdown", - "id": "69539d1c", + "id": "a5a50827", "metadata": {}, "source": [ "The sum of squared differences is zero. We can also see this using the\n", @@ -4593,13 +4593,13 @@ { "cell_type": "code", "execution_count": 70, - "id": "5afd0d5d", + "id": "05d33247", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.559035Z", - "iopub.status.busy": "2023-08-07T00:18:35.558329Z", - "iopub.status.idle": "2023-08-07T00:18:35.566101Z", - "shell.execute_reply": "2023-08-07T00:18:35.565469Z" + "iopub.execute_input": "2023-08-21T02:28:59.077767Z", + "iopub.status.busy": "2023-08-21T02:28:59.077090Z", + "iopub.status.idle": "2023-08-21T02:28:59.085265Z", + "shell.execute_reply": "2023-08-21T02:28:59.084291Z" }, "lines_to_next_cell": 2 }, @@ -4621,7 +4621,7 @@ }, { "cell_type": "markdown", - "id": "fdc83f2e", + "id": "41256e16", "metadata": {}, "source": [ "To reproduce the left-hand side of Figure 4.13\n", @@ -4636,13 +4636,13 @@ { "cell_type": "code", "execution_count": 71, - "id": "4629f2c9", + "id": "bee42b38", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.570679Z", - "iopub.status.busy": "2023-08-07T00:18:35.570231Z", - "iopub.status.idle": "2023-08-07T00:18:35.579784Z", - "shell.execute_reply": "2023-08-07T00:18:35.579027Z" + "iopub.execute_input": "2023-08-21T02:28:59.089190Z", + "iopub.status.busy": "2023-08-21T02:28:59.088696Z", + "iopub.status.idle": "2023-08-21T02:28:59.099445Z", + "shell.execute_reply": "2023-08-21T02:28:59.098750Z" }, "lines_to_next_cell": 0 }, @@ -4676,7 +4676,7 @@ }, { "cell_type": "markdown", - "id": "6fdd5f23", + "id": "976ff3e0", "metadata": {}, "source": [ "Next, we append `Dec` as the negative of the sum of all other months." @@ -4685,13 +4685,13 @@ { "cell_type": "code", "execution_count": 72, - "id": "b3e55833", + "id": "4aa60857", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.583928Z", - "iopub.status.busy": "2023-08-07T00:18:35.583623Z", - "iopub.status.idle": "2023-08-07T00:18:35.592868Z", - "shell.execute_reply": "2023-08-07T00:18:35.592219Z" + "iopub.execute_input": "2023-08-21T02:28:59.103423Z", + "iopub.status.busy": "2023-08-21T02:28:59.103057Z", + "iopub.status.idle": "2023-08-21T02:28:59.112346Z", + "shell.execute_reply": "2023-08-21T02:28:59.111002Z" }, "lines_to_next_cell": 0 }, @@ -4732,7 +4732,7 @@ }, { "cell_type": "markdown", - "id": "4d1f1d30", + "id": "39be6060", "metadata": {}, "source": [ "Finally, to make the plot neater, we’ll just use the first letter of each month, which is the $6$th entry of each of\n", @@ -4742,13 +4742,13 @@ { "cell_type": "code", "execution_count": 73, - "id": "cdbebc03", + "id": "894d3e2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.597005Z", - "iopub.status.busy": "2023-08-07T00:18:35.596605Z", - "iopub.status.idle": "2023-08-07T00:18:35.727830Z", - "shell.execute_reply": "2023-08-07T00:18:35.726982Z" + "iopub.execute_input": "2023-08-21T02:28:59.116495Z", + "iopub.status.busy": "2023-08-21T02:28:59.116193Z", + "iopub.status.idle": "2023-08-21T02:28:59.250351Z", + "shell.execute_reply": "2023-08-21T02:28:59.249608Z" } }, "outputs": [ @@ -4775,7 +4775,7 @@ }, { "cell_type": "markdown", - "id": "6f845be8", + "id": "fe1d213c", "metadata": {}, "source": [ "Reproducing the right-hand plot in Figure 4.13 follows a similar process." @@ -4784,13 +4784,13 @@ { "cell_type": "code", "execution_count": 74, - "id": "170fd6fd", + "id": "d636746e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.733543Z", - "iopub.status.busy": "2023-08-07T00:18:35.731394Z", - "iopub.status.idle": "2023-08-07T00:18:35.740654Z", - "shell.execute_reply": "2023-08-07T00:18:35.740001Z" + "iopub.execute_input": "2023-08-21T02:28:59.253708Z", + "iopub.status.busy": "2023-08-21T02:28:59.253326Z", + "iopub.status.idle": "2023-08-21T02:28:59.260644Z", + "shell.execute_reply": "2023-08-21T02:28:59.259501Z" } }, "outputs": [], @@ -4804,7 +4804,7 @@ }, { "cell_type": "markdown", - "id": "100190e3", + "id": "c181f106", "metadata": {}, "source": [ "We now make the hour plot." @@ -4813,13 +4813,13 @@ { "cell_type": "code", "execution_count": 75, - "id": "1e09e126", + "id": "ce6a1623", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.744368Z", - "iopub.status.busy": "2023-08-07T00:18:35.744031Z", - "iopub.status.idle": "2023-08-07T00:18:35.880750Z", - "shell.execute_reply": "2023-08-07T00:18:35.880425Z" + "iopub.execute_input": "2023-08-21T02:28:59.264364Z", + "iopub.status.busy": "2023-08-21T02:28:59.264112Z", + "iopub.status.idle": "2023-08-21T02:28:59.384102Z", + "shell.execute_reply": "2023-08-21T02:28:59.383714Z" } }, "outputs": [ @@ -4846,7 +4846,7 @@ }, { "cell_type": "markdown", - "id": "bf730e5d", + "id": "8cafb6b7", "metadata": {}, "source": [ "### Poisson Regression\n", @@ -4859,13 +4859,13 @@ { "cell_type": "code", "execution_count": 76, - "id": "a6667dcf", + "id": "9fb8b759", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.882429Z", - "iopub.status.busy": "2023-08-07T00:18:35.882313Z", - "iopub.status.idle": "2023-08-07T00:18:35.968054Z", - "shell.execute_reply": "2023-08-07T00:18:35.967220Z" + "iopub.execute_input": "2023-08-21T02:28:59.386009Z", + "iopub.status.busy": "2023-08-21T02:28:59.385867Z", + "iopub.status.idle": "2023-08-21T02:28:59.478822Z", + "shell.execute_reply": "2023-08-21T02:28:59.477841Z" } }, "outputs": [], @@ -4875,7 +4875,7 @@ }, { "cell_type": "markdown", - "id": "8309c1fc", + "id": "9cc0ea6d", "metadata": {}, "source": [ "We can plot the coefficients associated with `mnth` and `hr`, in order to reproduce Figure 4.15. We first complete these coefficients as before." @@ -4884,13 +4884,13 @@ { "cell_type": "code", "execution_count": 77, - "id": "c20de5d8", + "id": "ee272341", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:35.973009Z", - "iopub.status.busy": "2023-08-07T00:18:35.972664Z", - "iopub.status.idle": "2023-08-07T00:18:35.996642Z", - "shell.execute_reply": "2023-08-07T00:18:35.996051Z" + "iopub.execute_input": "2023-08-21T02:28:59.482988Z", + "iopub.status.busy": "2023-08-21T02:28:59.482517Z", + "iopub.status.idle": "2023-08-21T02:28:59.506926Z", + "shell.execute_reply": "2023-08-21T02:28:59.506267Z" }, "lines_to_next_cell": 0 }, @@ -4909,7 +4909,7 @@ }, { "cell_type": "markdown", - "id": "41e58943", + "id": "4a86df8c", "metadata": {}, "source": [ "The plotting is as before." @@ -4918,13 +4918,13 @@ { "cell_type": "code", "execution_count": 78, - "id": "4a1a8488", + "id": "1f5bde07", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:36.000164Z", - "iopub.status.busy": "2023-08-07T00:18:35.999622Z", - "iopub.status.idle": "2023-08-07T00:18:36.204622Z", - "shell.execute_reply": "2023-08-07T00:18:36.203590Z" + "iopub.execute_input": "2023-08-21T02:28:59.510834Z", + "iopub.status.busy": "2023-08-21T02:28:59.510470Z", + "iopub.status.idle": "2023-08-21T02:28:59.792175Z", + "shell.execute_reply": "2023-08-21T02:28:59.791845Z" }, "lines_to_next_cell": 0 }, @@ -4933,7 +4933,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_19145/3779905754.py:8: UserWarning: FixedFormatter should only be used together with FixedLocator\n", + "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_80940/3779905754.py:8: UserWarning: FixedFormatter should only be used together with FixedLocator\n", " ax_hr.set_xticklabels(range(24)[::2], fontsize=20)\n" ] }, @@ -4963,7 +4963,7 @@ }, { "cell_type": "markdown", - "id": "5e74d13e", + "id": "ff00b931", "metadata": {}, "source": [ "We compare the fitted values of the two models.\n", @@ -4975,13 +4975,13 @@ { "cell_type": "code", "execution_count": 79, - "id": "a3158334", + "id": "b0bd66a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:36.209262Z", - "iopub.status.busy": "2023-08-07T00:18:36.208838Z", - "iopub.status.idle": "2023-08-07T00:18:36.338262Z", - "shell.execute_reply": "2023-08-07T00:18:36.337899Z" + "iopub.execute_input": "2023-08-21T02:28:59.793823Z", + "iopub.status.busy": "2023-08-21T02:28:59.793732Z", + "iopub.status.idle": "2023-08-21T02:28:59.904438Z", + "shell.execute_reply": "2023-08-21T02:28:59.904151Z" } }, "outputs": [ @@ -5009,7 +5009,7 @@ }, { "cell_type": "markdown", - "id": "2b03ac4f", + "id": "a3b4b06e", "metadata": {}, "source": [ "The predictions from the Poisson regression model are correlated with\n", diff --git a/Ch05-resample-lab.Rmd b/Ch05-resample-lab.Rmd index 0b606f7..34e2d1d 100644 --- a/Ch05-resample-lab.Rmd +++ b/Ch05-resample-lab.Rmd @@ -518,13 +518,13 @@ slope. Interestingly, these are somewhat different from the estimates obtained using the bootstrap. Does this indicate a problem with the bootstrap? In fact, it suggests the opposite. Recall that the standard formulas given in - {Equation 3.8 on page 80} + {Equation 3.8 on page 82} rely on certain assumptions. For example, they depend on the unknown parameter $\sigma^2$, the noise variance. We then estimate $\sigma^2$ using the RSS. Now although the formula for the standard errors do not rely on the linear model being correct, the estimate for $\sigma^2$ does. We see - {in Figure 3.8 on page 106} that there is + {in Figure 3.8 on page 108} that there is a non-linear relationship in the data, and so the residuals from a linear fit will be inflated, and so will $\hat{\sigma}^2$. Secondly, the standard formulas assume (somewhat unrealistically) that the $x_i$ diff --git a/Ch05-resample-lab.ipynb b/Ch05-resample-lab.ipynb index 3a18390..85c1f65 100644 --- a/Ch05-resample-lab.ipynb +++ b/Ch05-resample-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "3a3f2f85", + "id": "85ad9863", "metadata": {}, "source": [ "\n", @@ -12,7 +12,7 @@ }, { "cell_type": "markdown", - "id": "bb22af17", + "id": "ac8b08af", "metadata": {}, "source": [ "# Lab: Cross-Validation and the Bootstrap\n", @@ -26,13 +26,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "60fad148", + "id": "e7712cfe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:37.622425Z", - "iopub.status.busy": "2023-08-07T00:18:37.621828Z", - "iopub.status.idle": "2023-08-07T00:18:38.459128Z", - "shell.execute_reply": "2023-08-07T00:18:38.458689Z" + "iopub.execute_input": "2023-08-21T02:29:01.252458Z", + "iopub.status.busy": "2023-08-21T02:29:01.251970Z", + "iopub.status.idle": "2023-08-21T02:29:02.044045Z", + "shell.execute_reply": "2023-08-21T02:29:02.043730Z" }, "lines_to_next_cell": 2 }, @@ -49,7 +49,7 @@ }, { "cell_type": "markdown", - "id": "78fcfe7a", + "id": "784a2ba3", "metadata": {}, "source": [ "There are several new imports needed for this lab." @@ -58,13 +58,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "2478aeb4", + "id": "21c2ed4f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.461290Z", - "iopub.status.busy": "2023-08-07T00:18:38.461070Z", - "iopub.status.idle": "2023-08-07T00:18:38.463158Z", - "shell.execute_reply": "2023-08-07T00:18:38.462899Z" + "iopub.execute_input": "2023-08-21T02:29:02.045927Z", + "iopub.status.busy": "2023-08-21T02:29:02.045761Z", + "iopub.status.idle": "2023-08-21T02:29:02.047761Z", + "shell.execute_reply": "2023-08-21T02:29:02.047491Z" }, "lines_to_next_cell": 2 }, @@ -81,7 +81,7 @@ }, { "cell_type": "markdown", - "id": "713d30db", + "id": "9ac3acd5", "metadata": {}, "source": [ "## The Validation Set Approach\n", @@ -102,13 +102,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "99c95faf", + "id": "8af59641", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.464725Z", - "iopub.status.busy": "2023-08-07T00:18:38.464616Z", - "iopub.status.idle": "2023-08-07T00:18:38.472566Z", - "shell.execute_reply": "2023-08-07T00:18:38.472315Z" + "iopub.execute_input": "2023-08-21T02:29:02.049239Z", + "iopub.status.busy": "2023-08-21T02:29:02.049145Z", + "iopub.status.idle": "2023-08-21T02:29:02.055524Z", + "shell.execute_reply": "2023-08-21T02:29:02.055162Z" } }, "outputs": [], @@ -121,7 +121,7 @@ }, { "cell_type": "markdown", - "id": "57be35df", + "id": "e76383f0", "metadata": {}, "source": [ "Now we can fit a linear regression using only the observations corresponding to the training set `Auto_train`." @@ -130,13 +130,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "41b0717d", + "id": "d9b0b7c8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.474061Z", - "iopub.status.busy": "2023-08-07T00:18:38.473957Z", - "iopub.status.idle": "2023-08-07T00:18:38.477686Z", - "shell.execute_reply": "2023-08-07T00:18:38.477432Z" + "iopub.execute_input": "2023-08-21T02:29:02.057278Z", + "iopub.status.busy": "2023-08-21T02:29:02.057182Z", + "iopub.status.idle": "2023-08-21T02:29:02.062537Z", + "shell.execute_reply": "2023-08-21T02:29:02.062265Z" } }, "outputs": [], @@ -150,7 +150,7 @@ }, { "cell_type": "markdown", - "id": "7f1bef95", + "id": "d196dd08", "metadata": {}, "source": [ "We now use the `predict()` method of `results` evaluated on the model matrix for this model\n", @@ -160,13 +160,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "d7ea3c0d", + "id": "3e77d831", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.479141Z", - "iopub.status.busy": "2023-08-07T00:18:38.479053Z", - "iopub.status.idle": "2023-08-07T00:18:38.483270Z", - "shell.execute_reply": "2023-08-07T00:18:38.483037Z" + "iopub.execute_input": "2023-08-21T02:29:02.064056Z", + "iopub.status.busy": "2023-08-21T02:29:02.063966Z", + "iopub.status.idle": "2023-08-21T02:29:02.068279Z", + "shell.execute_reply": "2023-08-21T02:29:02.068024Z" } }, "outputs": [ @@ -190,7 +190,7 @@ }, { "cell_type": "markdown", - "id": "6dba5d55", + "id": "f4369ee6", "metadata": {}, "source": [ "Hence our estimate for the validation MSE of the linear regression\n", @@ -204,13 +204,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "a02a2d05", + "id": "0aa4bfcc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.484782Z", - "iopub.status.busy": "2023-08-07T00:18:38.484689Z", - "iopub.status.idle": "2023-08-07T00:18:38.486891Z", - "shell.execute_reply": "2023-08-07T00:18:38.486642Z" + "iopub.execute_input": "2023-08-21T02:29:02.069789Z", + "iopub.status.busy": "2023-08-21T02:29:02.069682Z", + "iopub.status.idle": "2023-08-21T02:29:02.071953Z", + "shell.execute_reply": "2023-08-21T02:29:02.071703Z" } }, "outputs": [], @@ -235,7 +235,7 @@ }, { "cell_type": "markdown", - "id": "39ab59b1", + "id": "0271dc50", "metadata": {}, "source": [ "Let’s use this function to estimate the validation MSE\n", @@ -247,13 +247,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "51d93dea", + "id": "a0dbd55f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.488297Z", - "iopub.status.busy": "2023-08-07T00:18:38.488205Z", - "iopub.status.idle": "2023-08-07T00:18:38.497955Z", - "shell.execute_reply": "2023-08-07T00:18:38.497708Z" + "iopub.execute_input": "2023-08-21T02:29:02.073322Z", + "iopub.status.busy": "2023-08-21T02:29:02.073229Z", + "iopub.status.idle": "2023-08-21T02:29:02.088464Z", + "shell.execute_reply": "2023-08-21T02:29:02.088192Z" } }, "outputs": [ @@ -280,7 +280,7 @@ }, { "cell_type": "markdown", - "id": "936e168a", + "id": "a7401536", "metadata": {}, "source": [ "These error rates are $23.62, 18.76$, and $18.80$, respectively. If we\n", @@ -291,13 +291,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "83432f06", + "id": "885136a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.499478Z", - "iopub.status.busy": "2023-08-07T00:18:38.499391Z", - "iopub.status.idle": "2023-08-07T00:18:38.509735Z", - "shell.execute_reply": "2023-08-07T00:18:38.509466Z" + "iopub.execute_input": "2023-08-21T02:29:02.089889Z", + "iopub.status.busy": "2023-08-21T02:29:02.089804Z", + "iopub.status.idle": "2023-08-21T02:29:02.105353Z", + "shell.execute_reply": "2023-08-21T02:29:02.105089Z" } }, "outputs": [ @@ -327,7 +327,7 @@ }, { "cell_type": "markdown", - "id": "f5ceb357", + "id": "00785402", "metadata": {}, "source": [ "Using this split of the observations into a training set and a validation set,\n", @@ -341,7 +341,7 @@ }, { "cell_type": "markdown", - "id": "6d624a5c", + "id": "21c071b8", "metadata": {}, "source": [ "## Cross-Validation\n", @@ -374,13 +374,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "bcfc433f", + "id": "6d957d8c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:38.511210Z", - "iopub.status.busy": "2023-08-07T00:18:38.511122Z", - "iopub.status.idle": "2023-08-07T00:18:39.069624Z", - "shell.execute_reply": "2023-08-07T00:18:39.069325Z" + "iopub.execute_input": "2023-08-21T02:29:02.106979Z", + "iopub.status.busy": "2023-08-21T02:29:02.106884Z", + "iopub.status.idle": "2023-08-21T02:29:03.184550Z", + "shell.execute_reply": "2023-08-21T02:29:03.184259Z" }, "lines_to_next_cell": 0 }, @@ -410,7 +410,7 @@ }, { "cell_type": "markdown", - "id": "5b0f6f30", + "id": "c17e2bc8", "metadata": {}, "source": [ "The arguments to `cross_validate()` are as follows: an\n", @@ -426,7 +426,7 @@ }, { "cell_type": "markdown", - "id": "b527f67f", + "id": "5c7901f2", "metadata": {}, "source": [ "We can repeat this procedure for increasingly complex polynomial fits.\n", @@ -442,13 +442,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "f951ffc8", + "id": "e2b5ce95", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:39.071240Z", - "iopub.status.busy": "2023-08-07T00:18:39.071138Z", - "iopub.status.idle": "2023-08-07T00:18:39.674084Z", - "shell.execute_reply": "2023-08-07T00:18:39.673774Z" + "iopub.execute_input": "2023-08-21T02:29:03.186226Z", + "iopub.status.busy": "2023-08-21T02:29:03.186108Z", + "iopub.status.idle": "2023-08-21T02:29:03.782413Z", + "shell.execute_reply": "2023-08-21T02:29:03.782122Z" }, "lines_to_next_cell": 0 }, @@ -480,7 +480,7 @@ }, { "cell_type": "markdown", - "id": "792f1304", + "id": "03706248", "metadata": {}, "source": [ "As in Figure 5.4, we see a sharp drop in the estimated test MSE between the linear and\n", @@ -499,13 +499,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "e3610b5a", + "id": "1dda1bd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:18:39.675725Z", - "iopub.status.busy": "2023-08-07T00:18:39.675614Z", - "iopub.status.idle": "2023-08-07T00:18:39.678046Z", - "shell.execute_reply": "2023-08-07T00:18:39.677762Z" + "iopub.execute_input": "2023-08-21T02:29:03.783997Z", + "iopub.status.busy": "2023-08-21T02:29:03.783886Z", + "iopub.status.idle": "2023-08-21T02:29:03.786132Z", + "shell.execute_reply": "2023-08-21T02:29:03.785881Z" } }, "outputs": [ @@ -530,7 +530,7 @@ }, { "cell_type": "markdown", - "id": "983625b2", + "id": "f5092f1b", "metadata": {}, "source": [ "In the CV example above, we used $K=n$, but of course we can also use $K" ] @@ -907,7 +907,7 @@ }, { "cell_type": "markdown", - "id": "baeedcf4", + "id": "62207ca5", "metadata": {}, "source": [ "The variable `lstat` measures the percentage of individuals with\n", @@ -919,7 +919,7 @@ }, { "cell_type": "markdown", - "id": "bf4867c8", + "id": "361d7f84", "metadata": {}, "source": [ "Now we use the cross-validation function to see whether pruning\n", @@ -929,13 +929,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "9e563bf2", + "id": "33fb7786", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:16.498280Z", - "iopub.status.busy": "2023-08-07T00:19:16.498155Z", - "iopub.status.idle": "2023-08-07T00:19:16.543916Z", - "shell.execute_reply": "2023-08-07T00:19:16.543596Z" + "iopub.execute_input": "2023-08-21T02:29:46.706833Z", + "iopub.status.busy": "2023-08-21T02:29:46.706699Z", + "iopub.status.idle": "2023-08-21T02:29:46.756824Z", + "shell.execute_reply": "2023-08-21T02:29:46.756520Z" } }, "outputs": [], @@ -954,7 +954,7 @@ }, { "cell_type": "markdown", - "id": "de0ed389", + "id": "e7218495", "metadata": {}, "source": [ "In keeping with the cross-validation results, we use the pruned tree\n", @@ -964,13 +964,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "3a635c52", + "id": "a386755b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:16.545489Z", - "iopub.status.busy": "2023-08-07T00:19:16.545404Z", - "iopub.status.idle": "2023-08-07T00:19:16.548169Z", - "shell.execute_reply": "2023-08-07T00:19:16.547932Z" + "iopub.execute_input": "2023-08-21T02:29:46.758663Z", + "iopub.status.busy": "2023-08-21T02:29:46.758546Z", + "iopub.status.idle": "2023-08-21T02:29:46.761814Z", + "shell.execute_reply": "2023-08-21T02:29:46.761470Z" }, "lines_to_next_cell": 2 }, @@ -978,7 +978,7 @@ { "data": { "text/plain": [ - "28.069857549754044" + "28.06985754975404" ] }, "execution_count": 22, @@ -993,7 +993,7 @@ }, { "cell_type": "markdown", - "id": "41a34a36", + "id": "7fe01e33", "metadata": {}, "source": [ "In other words, the test set MSE associated with the regression tree\n", @@ -1010,20 +1010,20 @@ { "cell_type": "code", "execution_count": 23, - "id": "5542ece6", + "id": "3d646928", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:16.549690Z", - "iopub.status.busy": "2023-08-07T00:19:16.549586Z", - "iopub.status.idle": "2023-08-07T00:19:16.832898Z", - "shell.execute_reply": "2023-08-07T00:19:16.832568Z" + "iopub.execute_input": "2023-08-21T02:29:46.763419Z", + "iopub.status.busy": "2023-08-21T02:29:46.763331Z", + "iopub.status.idle": "2023-08-21T02:29:47.049615Z", + "shell.execute_reply": "2023-08-21T02:29:47.049265Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { - "image/png": "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T82aNUtQBgAAHAnFFgDgVP79e7Vxu63//vhpvL29dfz4cf3888+aPHmyjh49qipVqqhjx47KmjVrgnds/fz8rC/8dObMGWXOnPmpj7du3TpVrFhRadKksV4W9yJRt2/fVoMGDVSyZEnrdUFBQVqyZMlzPwcAABwRxRYAgBdgMpnk7e0tb29vxcTEaP369fr777+VNWvWBO/Y+vn5aePGjTKbzYqOjra+4vGGDRt05coV66nHc+fOVceOHeMd27dvX+3du1cpUqTQqFGjlDJlSknS4cOH5eHhobx58ybiZwsAgH0wWSwWi9EhAADO58CBAypevLj279/P+9g6AL6fAAAj8arIAAAAAAC7RrEFAAAAANg1ii0AAAAAwK5RbAEA+JfAwEAFBQUZHSNBIiMjVaVKFVWqVEnlypXTr7/+Gu/6oUOHytPT84njoqOjra+wbDab5e7ursOHD0uSfvvtN1WtWlW+vr768MMPJT16/99MmTJZb79q1aqk/+QAAEggXhUZAOA0Hj58+MTb/ST148S9RuN/vZXQy2abN2+eypcvr2HDhmnHjh0aMWKEli5dKkm6cOGCTp48+dTjUqVKpbCwMEnS+fPnVbVqVb333nuKjo5W7969tWTJknjv9ys9es/fzZs3v3BGAACSGju2AACbEBERofLly8vHx0dms1mRkZH6+++/5efnpypVqqhz587y9/eXJLVt21Y7duyQJIWFhal9+/aSpO+++06+vr4qUaKEBg8ebL3vnDlzqkuXLqpSpYpu3rypxo0by9fXVz4+Pjpx4oQkafny5SpatKhq166t/fv3PzNnTEyMOnToIF9fX3l7e2vXrl3WTJ06dVKtWrUUHBwsT09PDRo0SH5+fjp//ryaNm2qSpUqqXz58tb7//cxL6NgwYK6deuWJOn69et67bXXrNcFBgbG+zo8S1BQkFq0aCFJ2r17t9KlS6fWrVvLbDbHew/e3377TRUqVFDLli115cqVl8oLAEBSYMcWAGATQkJCVLlyZQUGBkp6tNPZs2dPtWvXTi1atNCMGTOsJfRZ2rdvr08//VQWi0XlypVThw4dlDNnTl28eFF9+vRRrly51L9/f9WvX19NmzbVkSNH1LdvXy1btkz9+/fXnj17lC5dOvn6+j7zMaZPn668efPqxx9/1JUrV1S7dm1ruc2ePbsmT54sSercubOq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V65cypIli1KnTq1y5cpp7969kh6V2H/z8PBQpkyZXiojACBpMUNfboYWLFhQt27dkiRdv35dr732mvW6581Q6f/m7+3bt1W4cGFJUt68eXX//n1ZLBZFRkZa769w4cK6cePGUx8HcAa8jy2cSkhIiCpXrqzAwEBJj1Zpe/bsqXbt2qlFixaaMWOGdYA+S/v27fXpp5/KYrGoXLly6tChg3LmzKmLFy+qT58+ypUrl/r376/69euradOmOnLkiPr27atly5apf//+2rNnj9KlSydfX99nPsb06dOVN29e/fjjj7py5Ypq165tHczZs2fX5MmTJT16D93q1avriy++0HfffacCBQpo4cKFCg8PV5s2bbR79+4njnnci7xR/fLly/XFF1/o5s2bWr9+vSSpW7duGjZsmO7fv686deqoaNGi8vHxsR5z7dq1eEU1U6ZMunbt2nO/vgAA28QMjS+hM9TLy0tDhgxRkSJFdOPGDW3btk3Sf89QSbp3754CAgJ05MgRjRo1SpKUJ08e3b17VwUKFNCNGze0cuVKSZKfn58CAgI0ffp0RUVFac+ePc/9XgCOhmILp9K4cWONHDlSLVq0UM6cORUYGKjw8HB169ZN0qPfZZk/f74kxXtD9sdPUVq6dKmmTZsmk8mks2fP6vz588qZM6eyZ8+uXLlySZIOHz6srVu36ocffrDe15UrV/Taa68pQ4YMkqQyZco8M+fhw4e1c+dObdiwQZKsK7CS5O3tbf3Y1dVV5cqVkyQdP35cDRo0kCTlz58/XoF8/JjHvcgb1derV0/16tXTwoULNXDgQC1atEhZsmSRJLm7u6tBgwbat29fvKGcJUsWRUZGWv9848YN6zEAAPvCDI0voTN0zJgxql+/vnr37q3du3erS5cuWr9+/X/OUElKnTq1tm3bpqtXr6pkyZJq3LixFi5cqOzZs2vFihWKiIhQvXr19Ouvv6pfv3763//+p4YNG2rhwoUaMGDAUws54KgotnAqLi4uGjlypCSpXbt2Cg4OVr58+fTLL78ob9681tVZScqcObPOnTsnSdbTZyVpyJAhOn78uNzc3FS+fHnrwHZ1dbXepnDhwipbtqzq1asn6dELPbi6uurvv//WrVu3lC5dOu3Zs0dFihR5as7ChQvL09NTPXv2tB4f5/HHMZlM1h8eChQooO3bt8vf31/h4eHx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LbQeii4ZMaZknRFjyflZOiPGlEpm9HhyvhZn9JjSP4weS87P4oweU3vgyaOIiIiIiIjI0LgV2eAURdF6CERUAs5PIuPgfCXSL85PKgt2bImIiIiIiMjQWNjqVGpqKmJiYhz2fnPmzEGfPn0QGhqKJ598Uj0L3ZQpUxAUFISgoCAsWLDA6nMXLlyIPn36IDw8XF1Ry8nJwciRIxEeHo7evXvjt99+AwDExcWhS5cu8PDwwOnTpx3y2YjswdFz9IcffkCHDh3g4eFh9f6IiAir194TQmDGjBkIDg5Gr169sGLFCvX2Z599FuHh4YiJiVHn44kTJxAREaFez++vv/6y34cishNHz8833ngDERERCA0Nxfjx45GbmwsASEpKQlhYGEJCQvDuu+9afe7s2bMREhICSZJw4MABAMCaNWvQp08fREZGYuDAgbhy5QoA5lByDo6en2avvfYa/P39i90+fvx4q+M5deqUxfVtq1evjrS0NADA22+/jdDQUISHhyM5ORkAkJmZieHDh0OSJAwbNgzXrl2z7weiYljYEoDCs7vt2rUL27dvx/nz57FlyxYAwMyZMxEfH48dO3ZgzZo1OH78uMXzLl68iIULFyIuLg7r1q3DzJkzUVBQgE2bNqFWrVrYtm0bfvzxR7z44osAgC5dumDnzp0ICgpy+GckMjJJkvDHH39YPXHGqlWrUL9+favPO3jwIA4ePIidO3dCURS89tprAIDffvsNly9fxrZt2/D8889j1qxZAIBPPvkEjz76KBRFwaRJk/DBBx/Y7TMROYvnnnsOW7duxfbt2wEAmzZtAgBMnz4dX3zxBeLi4qzm0H379mH37t3YsWMHli5diqeeegoAcPfddyMuLg6xsbEYOHAg/vOf/wBgDiWqqDNnzuDPP/8sdntiYiKuX79u9TmtWrWCoihQFAXz589H37594eXlhaNHj2L9+vWIi4vD559/rp4pedGiRQgMDISiKBg6dCjee+89u34mKo6FrQPNnDkTP/74I4DCy9507doVubm5ePnllxEVFYUePXrg008/Lfa8CRMmIC4uDgDUL5sAcODAAcTExCAqKgojRoxAZmZmhcdW9Dqz7u7ucHNzs7jd1dUV1apVU283S01NRceOHVG9enXUq1cP1apVQ2pqKvz8/JCdnQ0hBNLS0tC4cWMAQL169VC7du0Kj5PInvQ8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ERERERGRobGwJSIiIiIiIkNjYUtERERERESGZtPL/aSkpNjy5aiCyhoHxss5mOPIeDoHxtP5nDx5EgBj6iysxZGxNZ7bY8YYOgfmUOdU1nja5KzIp06dQocOHZCZmVnZlyIb8fT0REpKClq1alXsPsbL+bi6uqKgoEDrYZCNMJ7Ox83NTb1WMhmfOccCYD41ME9PT2zevBkxMTGMoRNhDnVOpdU2ZjYpbIHCYuny5cu2eCmygYYNG5YaeMbLuZw7dw4A1At6k7Exns4nOzsb7u7uWg+DbKRojmU+NS5zHBlD58Ic6pzuVNsANixsiYiIiIiIiLTAk0cRERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQ/g/QNdsvQNw/pQAAAABJRU5ErkJggg==", + "image/png": "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T82aNUtQBgAAHAnFFgDgVP79e7Vxu63//vhpvL29dfz4cf3888+aPHmyjh49qipVqqhjx47KmjVrgnds/fz8rC/8dObMGWXOnPmpj7du3TpVrFhRadKksV4W9yJRt2/fVoMGDVSyZEnrdUFBQVqyZMlzPwcAABwRxRYAgBdgMpnk7e0tb29vxcTEaP369fr777+VNWvWBO/Y+vn5aePGjTKbzYqOjra+4vGGDRt05coV66nHc+fOVceOHeMd27dvX+3du1cpUqTQqFGjlDJlSknS4cOH5eHhobx58ybiZwsAgH0wWSwWi9EhAADO58CBAypevLj279/P+9g6AL6fAAAj8arIAAAAAAC7RrEFAAAAANg1ii0AAAAAwK5RbAEA+JfAwEAFBQUZHSNBIiMjVaVKFVWqVEnlypXTr7/+Gu/6oUOHytPT84njoqOjra+wbDab5e7ursOHD0uSfvvtN1WtWlW+vr768MMPJT16/99MmTJZb79q1aqk/+QAAEggXhUZAOA0Hj58+MTb/ST148S9RuN/vZXQy2abN2+eypcvr2HDhmnHjh0aMWKEli5dKkm6cOGCTp48+dTjUqVKpbCwMEnS+fPnVbVqVb333nuKjo5W7969tWTJknjv9ys9es/fzZs3v3BGAACSGju2AACbEBERofLly8vHx0dms1mRkZH6+++/5efnpypVqqhz587y9/eXJLVt21Y7duyQJIWFhal9+/aSpO+++06+vr4qUaKEBg8ebL3vnDlzqkuXLqpSpYpu3rypxo0by9fXVz4+Pjpx4oQkafny5SpatKhq166t/fv3PzNnTEyMOnToIF9fX3l7e2vXrl3WTJ06dVKtWrUUHBwsT09PDRo0SH5+fjp//ryaNm2qSpUqqXz58tb7//cxL6NgwYK6deuWJOn69et67bXXrNcFBgbG+zo8S1BQkFq0aCFJ2r17t9KlS6fWrVvLbDbHew/e3377TRUqVFDLli115cqVl8oLAEBSYMcWAGATQkJCVLlyZQUGBkp6tNPZs2dPtWvXTi1atNCMGTOsJfRZ2rdvr08//VQWi0XlypVThw4dlDNnTl28eFF9+vRRrly51L9/f9WvX19NmzbVkSNH1LdvXy1btkz9+/fXnj17lC5dOvn6+j7zMaZPn668efPqxx9/1JUrV1S7dm1ruc2ePbsmT54sSercubOq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V65cypIli1KnTq1y5cpp7969kh6V2H/z8PBQpkyZXiojACBpMUNfboYWLFhQt27dkiRdv35dr732mvW6581Q6f/m7+3bt1W4cGFJUt68eXX//n1ZLBZFRkZa769w4cK6cePGUx8HcAa8jy2cSkhIiCpXrqzAwEBJj1Zpe/bsqXbt2qlFixaaMWOGdYA+S/v27fXpp5/KYrGoXLly6tChg3LmzKmLFy+qT58+ypUrl/r376/69euradOmOnLkiPr27atly5apf//+2rNnj9KlSydfX99nPsb06dOVN29e/fjjj7py5Ypq165tHczZs2fX5MmTJT16D93q1avriy++0HfffacCBQpo4cKFCg8PV5s2bbR79+4njnnci7xR/fLly/XFF1/o5s2bWr9+vSSpW7duGjZsmO7fv686deqoaNGi8vHxsR5z7dq1eEU1U6ZMunbt2nO/vgAA28QMjS+hM9TLy0tDhgxRkSJFdOPGDW3btk3Sf89QSbp3754CAgJ05MgRjRo1SpKUJ08e3b17VwUKFNCNGze0cuVKSZKfn58CAgI0ffp0RUVFac+ePc/9XgCOhmILp9K4cWONHDlSLVq0UM6cORUYGKjw8HB169ZN0qPfZZk/f74kxXtD9sdPUVq6dKmmTZsmk8mks2fP6vz588qZM6eyZ8+uXLlySZIOHz6srVu36ocffrDe15UrV/Taa68pQ4YMkqQyZco8M+fhw4e1c+dObdiwQZKsK7CS5O3tbf3Y1dVV5cqVkyQdP35cDRo0kCTlz58/XoF8/JjHvcgb1derV0/16tXTwoULNXDgQC1atEhZsmSRJLm7u6tBgwbat29fvKGcJUsWRUZGWv9848YN6zEAAPvCDI0voTN0zJgxql+/vnr37q3du3erS5cuWr9+/X/OUElKnTq1tm3bpqtXr6pkyZJq3LixFi5cqOzZs2vFihWKiIhQvXr19Ouvv6pfv3763//+p4YNG2rhwoUaMGDAUws54KgotnAqLi4uGjlypCSpXbt2Cg4OVr58+fTLL78ob9681tVZScqcObPOnTsnSdbTZyVpyJAhOn78uNzc3FS+fHnrwHZ1dbXepnDhwipbtqzq1asn6dELPbi6uurvv//WrVu3lC5dOu3Zs0dFihR5as7ChQvL09NTPXv2tB4f5/HHMZlM1h8eChQooO3bt8vf31/h4eHxCuTjxzwuoavNUVFRcnd3l/Ro19XDw0PSox8WMmbMKIvFotDQUDVr1izecZ6enoqIiFBkZKQ8PDy0c+dOffnll0/NAgCwbczQ+F7krKds2bJZ/x9XtP9rhkZHRytFihRycXFRmjRp5O7ubp3FcfeXKVMm3blz57mPAzgLii2cypo1azR+/Hi5urrKzc1N3t7eKlGihJo3b66ZM2fGG5Lt27dX8+bNNX/+fOXOndt6ef369VW+fHkVKFBAadOmferjDBo0SJ988onGjx8vSQoICFC/fv305ZdfqmLFisqRI4cyZ878zJwdOnRQ165drSu3xYoV09ixY5/7uXXo0EFt27ZVxYoV9eDBA+tjP09CV5t//PFHLV26VCaTSW5ubpoyZYokqUePHgoPD5fFYlGFChVUu3Zt6+WDBg1StmzZ9PXXX6t69eqSpN69eyt9+vSSHv1Q9Msvv+j+/fv65ZdftHr1akVGRqpRo0Y6evSojhw5ooCAgHgvsgEAMA4zNL6EztBu3bqpVatWmjlzpu7du6fRo0dL+u8ZevPmTbVr106urq66f/++hg0bJjc3N7Vs2VLNmjVTpUqVdPfuXX3xxReSpMGDB6tjx45KkSKFYmJirLMacBYmS0JeBg6wQwcOHFDx4sW1f/9+eXl5JeiYiIgItW/fXps3b07idHgZL/M9BQC8OGao42GGwtGxYwsYrHXr1tbTtaRHp28tW7bMwEQAANgHZiiAOBRb4DG5cuVK9pXmOXPmJOvjAQCQFJihAIzE+9gCdsDT0zNZHmfKlCkqVaqUKlasqGbNmun+/fuSpH379qlMmTKqVKmSqlWrpps3b8Y7rmLFitb3KAQAwFYl1zwdPny4zGazzGazcuXKpc8++0yS9Oeff8rf318VKlRQ7969kyUL4CwotgCs/Pz8tHv3bm3btk05cuRQUFCQJGnUqFEaPXq0tm7dqvLly8dbIV++fLkyZsxoUGIAAGzP0KFDFRYWprCwMOXLl09NmjSRJPXr108DBw7U9u3bdfHiRYWGhhqcFHAcFFvgFURERKh8+fLy8fGR2WxWZGSktm3bJh8fH+srHN67d0+SZDab1bNnTwUEBMhsNmv+/PkKCAhQ0aJFrW9obzab1aVLF1WuXFl+fn66fPlyvMeLiYlRhw4d5OvrK29vb+sbzo8YMUKlSpWSr6/vf77y4/N4enrKxeXRPwtubm7WtzgoXLiw9W0DIiMj9dprr0mSHjx4oMmTJ6tLly4v/ZgAADjaPI1z8eJFnT9/XqVKlZL06AWcfH19JUl169al2AKJiGILvIKQkBBVrlxZoaGhCgsLU8aMGVW8eHGFhoZq+/btKliwoBYtWmS9faVKlRQcHCxPT0/t3btXwcHB6t27t2bMmGG9TenSpbVp0ya1aNFCX331VbzHmz59uvLmzauQkBAtX75cvXr1kiTNmzdPoaGhCgkJUY8ePZ7IWb9+fespUXH/Pe/U4WPHjmn9+vVq1KiRJKlevXrq1q2bihQpop07d6p+/fqSpB9++EEtW7aUm5vbS38NAQBw1Hk6b948NW/e3Prn2NhY68eZMmXStWvXXvhrBeDpePEo4BU0btxYI0eOVIsWLZQzZ04FBgbqyJEjGjx4sO7fv6+///7b+r6tklS8eHFJUvbs2ZU3b17rx1u3brXeply5ctb/L1++PN7jHT58WDt37tSGDRskybqLOmHCBHXp0kUPHjzQJ598Im9v73jHvcgrREZERKhNmzZatGiR0qRJI0nq1KmTli1bphIlSmjUqFEaO3asOnXqpBUrVmjjxo3atm1bgu8fAIB/c8R5KklBQUFauXKl9c9xZ0XFPWaWLFle6P4APBvFFngFLi4uGjlypCSpXbt2Cg4O1rRp0/T555+rbNmy6tu3rx5/q2iTyfTUjx+/ze7du+Xp6andu3crf/788R6vcOHC8vT0VM+ePSVJ0dHRkqSyZcvKz89P586dU7169bR///54x9WvX1/Xr1+Pd5mnp6emTZsW77JLly6pUaNGmj59uvLkyRPvumzZsln/f+rUKR07dky3bt1S9erVdf36df3111+aMmWKOnbsmICvHAAA/8fR5qkkHTx4UBkyZFCuXLmslxUrVkxbt25VpUqVtGrVKn344YcJ+voA+G8UW+AVrFmzRuPHj5erq6vc3Nzk7e2tO3fu6KOPPlKBAgWUPn36eCvMCXHgwAHNnj1bDx8+1IIFC+Jd16FDB3Xt2lU+Pj6SHg3IsWPHql69eoqKilJUVNRTf981oSvM/fv3199//63u3btLkpo3b66PP/5Yo0aNUpMmTeTu7i4XFxcFBQXprbfe0p49eyRJYWFhCgoKotQCAF6Ko81TSZo7d65atmwZ77JRo0apXbt2io6OVokSJayPD+DVmSyPL20BDuTAgQMqXry49u/fLy8vL6PjJIjZbFZQUJCyZ89udBSbZI/fUwCwR/b+7y3z9En2/j0F/gsvHgUAAAAAsGucigzYkLCwMKMjAABg95ingPNhxxYAAAAAYNcotkAyiIiIkL+/f7I93pIlS1SwYEG5u7vHu3zVqlUqXbq0KlSooIULFz712JCQEPn7+8vHx0cDBgyQJJ04cUJeXl5KmzatduzY8cQxQ4cOlaenZ+J/IgAAp5fcM/SLL75QxYoVVb58ebVu3VoxMTGSHv3ebtmyZWU2m9W5c+dnHh8eHq6UKVNa52VYWJjefPNN6/vexr3w4rNmNYCXw6nIgAMym8369ddfVaRIEetlsbGx6tOnj/bt2yd3d3eVL19eNWrUULp06ay3uXbtmr755hutXbtWbm5u1suzZ8+uLVu2WN8W4XEXLlzQyZMnk/YTAgAgmfTp00eDBg2SJLVu3VobN25UjRo1JEmLFy/+zxekCgwMlNlsjndZjRo1nnhLoKfNagAvjx1b4CX17t1bS5culSQ9ePBA77//vmJiYjRw4ED5+vrKy8tLkydPfuK4tm3bxlvFbd++vSTp999/l7+/v3x9fdWoUSPdvXv3pbNlzZr1iRXgq1evKlu2bEqXLp1SpkypPHnyaO/evfFus3btWmXLlk1169aVv7+/du/eLUny8PBQpkyZnvpYgYGBGjx48EtnBQA4H1ueoalSpZL0aEH4wYMH1jOSTCaTmjZtKh8fH23evPmpx27btk25cuXS22+/He/yjRs3ytvbW507d7Zme9qsBvDyKLbAS2rbtq1mz54tSQoODpavr69SpkypQYMGKSQkRLt27dK4ceOspzD9l86dO2vGjBkKCQmR2WzW1KlT410fHR1tPY3p8f8SWiqzZs2qK1eu6MKFC7p586Z27dr1xJvMX7hwQceOHdPy5cs1ffp0tWvX7rn3eejQIUmP3ugeAICEsvUZOmzYMOXLl083btxQjhw5JD3ard2xY4eCgoLUtWtX3bx5M94xFotFI0eOVL9+/eJdXrx4cZ04cUI7duxQ1qxZNXr06AR9TgBeDKciAy+pSJEiunLlii5fvqzZs2dbfx918uTJWrFihVxdXXX58mVdvnw53nEmk8n68eNvI33kyBG1bt1aknT//v0nTmNKlSrVK73Ko4uLi6ZMmaKWLVsqXbp0Klq0qN566614t8mcObN8fHzk7u6unDlzKn369Lp+/boyZ8781PscOnSoJkyY8NKZAADOydZn6Oeff67AwEB16dJFs2bNUufOnZU1a1ZJ0ttvvy0vLy+dOHFCJUuWtB6zcOFC+fv7K2PGjPHu6/Ff+WnZsuVTf60HwKuj2AKvoEWLFpo4caIiIiJUrFgxRUZGaubMmTp06JBiYmKUP3/+eINXelQez507J0nxTgUuUqSIFixYoDfffFPSo9Xlx0VHR6tKlSpPZPD29taIESMSlDduhfr27dtq0KBBvIEsST4+Plq6dKksFotu3rypyMjIZ56CLEmnT5+2ngb2119/qUuXLpo4cWKCsgAAnJutztCoqCi5u7vLZDIpQ4YM8vDwkMVi0e3bt5U+fXrduXNHv/32m3LlyhXvuIMHD2rfvn3avHmzDh8+rOPHj2v+/PnKkiWLMmTIIOnRCzTmz5//5b5gAJ6LYgu8gubNmytHjhwaPny4JCljxowqVKiQvL29VahQIWXJkuWJY9q3b6/mzZtr/vz5yp07t/XyiRMnqm3bttbTrvr27auqVatar3+R1eawsDCNGDFCFy9elL+/vzp27KhGjRqpb9++2rt3r1KkSKFRo0YpZcqUkh79cDFv3jzly5dP1apVU6VKlXT//n2NHTtWJpNJkZGRatSokY4ePaojR44oICBAI0aM0OHDh62P6enpSakFACSYrc7Qzp0768yZM3r48KHy5cun4cOH68GDB/Lx8VHq1KkVHR2twYMHK1u2bJL+b4Y+fopx27Zt1b59e+XJk0eTJk3SzJkzlTp1amXOnFkzZsyQ9OxZDeDlmCz/XgoDHMSBAwdUvHhx7d+/X15eXkbHQSLgewoAyYN/bx0P31M4Ol48CgAAAABg1yi2AAAAAAC7RrEFAAAAANg1XjwKDu/YsWNGR0Ai4XsJAMmLf3cdB99LODqKLRxW1qxZ5eHhoZYtWxodBYnIw8PD+l6CAICkwQx1TMxQODJeFRkO7dy5c7p69arRMRLswYMHatiwoXLlyqVvv/02yR6nR48e+uOPP7R48WKlSGFf61tZs2bVO++8Y3QMAHB4zNCnY4YCtoliC9iQOXPmqE2bNtq3b5+KFy+eZI+zb98+lSxZUnPmzFGrVq2S7HEAAEguzFDAuVFsARvx4MEDFSxYUIUKFdLKlSuT/PFq166t48eP6+jRo3a34gwAwOOYoQB4VWTARsybN0+nTp1SYGBgsjxeYGCgTp48qfnz5yfL4wEAkFSYoQDYsQVswIMHD1SgQAG99957Wr58ebI9bt26dXXkyBEdO3aMFWcAgF1ihgKQ2LEFbMLcuXN1+vTpZFtpjhMYGKhTp04pKCgoWR8XAIDEwgwFILFjCxguJiZG+fPnV7FixbR06dJkf/z69evrt99+0/Hjx5UyZcpkf3wAAF4WMxRAHHZsAYPNmTNHZ8+e1bBhwwx5/GHDhunMmTOaO3euIY8PAMDLYoYCiMOOLWCgmJgY5cuXT8WLF9eSJUsMy9GgQQP9+uuvCg8PZ8UZAGAXmKEAHseOLWCg2bNnKyIiwrCV5jjDhg3T2bNnNWfOHENzAACQUMxQAI9jxxYwSHR0tPLly6dSpUpp0aJFRsdRo0aNtG/fPoWHhytVqlRGxwEA4JmYoQD+jR1bwCCzZs3SuXPnDF9pjjNs2DD98ccfmj17ttFRAAB4LmYogH9jxxYwQHR0tN59912VLVtWCxcuNDqOVZMmTbR7926dPHmSFWcAgE1ihgJ4GnZsAQPMmDFDf/75p4YOHWp0lHiGDh2qP//8U7NmzTI6CgAATzVz5kxmKIAnsGMLJLP79+/r3XffVfny5bVgwQKj4zyhadOm2rVrFyvOAACbwwwF8Czs2ALJbMaMGTp//rzNrTTHiVtxnjFjhtFRAACIhxkK4FnYsQWS0f379+Xp6amKFStq3rx5Rsd5pubNm2v79u06deqU3NzcjI4DAAAzFMBzsWMLJKNp06bp4sWLNrvSHGfo0KG6ePGipk+fbnQUAAAkMUMBPB87tkAyiYqKUt68eeXr66u5c+caHec/tWzZUmFhYTp16pTc3d2NjgMAcGLMUAD/hR1bIJn8+OOPunTpkoYMGWJ0lAQZMmSI/vrrL1acAQCGmzZtGjMUwHOxYwskg6ioKOXJk0f+/v6aM2eO0XESrFWrVgoJCdHp06dZcQYAGCJut9bPz48ZCuCZ2LEFksHUqVN1+fJlu1lpjjNkyBBdunRJP/74o9FRAABOaurUqfr777+ZoQCeix1bIIndu3dPefLkUUBAgF2+aXubNm20adMmnT59WqlTpzY6DgDAiTBDASQUO7ZAEpsyZYquXLlidyvNcYYMGaLLly9r6tSpRkcBADgZZiiAhGLHFkhCd+/eVZ48eVS9enW7frP2Dz/8UBs2bNCZM2dYcQYAJAtmKIAXwY4tkIR++OEHXb16VYMGDTI6yisZPHiwrly5oilTphgdBQDgJKZMmaKrV69q8ODBRkd5JcxQIHmwYwskkbt37yp37tyqWbOmQ7zcf7t27bRu3TqdOXNGHh4eRscBADiwuN3aGjVqMEMBJAg7tkASmTx5sq5fv273K81xBg8erGvXrumHH34wOgoAwMFNnjxZ165dY4YCSDB2bIEk8M8//yh37tyqU6eOQ73Mf/v27bV69WqdOXNGadKkMToOAMABMUMBvAx2bIEkMGnSJEVGRtr979b+2+DBg3X9+nVNnjzZ6CgAAAfFDAXwMtixBRLZnTt3lDt3btWvX98hXyji448/1ooVK3T27FlWnAEAiYoZCuBlsWMLJLKJEyfq5s2bGjhwoNFRksSgQYMUGRmpSZMmGR0FAOBgJk2axAwF8FLYsQUS0Z07d5QrVy41bNjQoV8gomPHjlq2bJnOnj2rtGnTGh0HAOAA4nZrGzRowAwF8MLYsQUS0YQJE3Tr1i2HXWmOM2jQIN28eVMTJ040OgoAwEFMmDDBoXdr4zBDgaTBji2QSG7fvq1cuXKpSZMmTnGKUadOnbR48WKdPXtW6dKlMzoOAMCOMUMBvCp2bIFEMn78eN25c8fhV5rjDBw4ULdv39aECROMjgIAsHPMUACvih1bIBHcunVLuXLlUvPmzZ1qSHXp0kULFy5UREQEK84AgJdy69Yt5c6dW82aNWOGAnhp7NgCiWD8+PH6559/1L9/f6OjJKsBAwbozp07Gj9+vNFRAAB2Km63dsCAAUZHSVbMUCBxsWMLvKKbN28qd+7catGihVMOp65du2r+/PmKiIhQ+vTpjY4DALAjzFBmKJBY2LEFXtH333+vu3fvOt1Kc5wBAwbo7t27+v77742OAgCwM8xQZiiQWNixBV7BjRs3lDt3brVu3Vrfffed0XEM0717d82dO1cRERHKkCGD0XEAAHaAGfoIMxRIHOzYAq/gu+++U1RUlNP9bu2/9e/fX1FRUU79gwkA4MUwQx9hhgKJgx1b4CXduHFDuXLl0ocffqhx48YZHcdwPXr00OzZs3X27FllzJjR6DgAABvGDI2PGQq8OnZsgZf07bff6v79++rbt6/RUWxCv379WHEGACRI3Azt16+f0VFsAjMUeHUUW+AlREZGaty4cerUqZPefPNNo+PYhDfffFOffPKJxo0bpxs3bhgdBwBgox6foW+88YbRcWwCMxR4dRRb4CWMGzdOMTExrDT/S79+/RQdHc1pZQCAZ2KGPh0zFHg1FFvgBV2/fl3ffvutOnfurNdff93oODbljTfeUKdOnfTtt98qMjLS6DgAABvDDH02Zijwaii2wAsaO3asHj58yO/WPkPfvn0VExOjsWPHGh0FAGBjmKHPxwwFXh7FFngB165d03fffacuXbrotddeMzqOTXr99dfVpUsXfffdd7p+/brRcQAANuLatWv6/vvvmaHPwQwFXh7FFngBY8eOVWxsrHr37m10FJvWp08fPXz4kBVnAIBV3G5tnz59jI5i05ihwMuh2AIJdPXqVX3//ffq2rUrK83/4bXXXrOuOF+7ds3oOAAAgz0+Q7Nly2Z0HJvGDAVeDsUWSKBvvvlGFouFleYE6tOnjywWi7755hujowAADMYMfTHMUODFUWyBBLhy5YrGjx+vbt26KWvWrEbHsQvZsmVT165dNX78eF29etXoOAAAgzBDXxwzFHhxFFsgAb7++muZTCZ+t/YFxX29vv76a4OTAACMwgx9OcxQ4MVQbIH/cPnyZU2YMEHdu3dXlixZjI5jV7Jmzapu3bppwoQJunLlitFxAADJ7MqVK8zQl8QMBV4MxRb4D19//bVcXV3Vq1cvo6PYpc8++0wmk4kVZwBwQl999RUz9BUwQ4GEo9gCz3H58mVNnDiRleZXkCVLFnXv3l0TJkzQ5cuXjY4DAEgmzNBXxwwFEo5iCzzHmDFjlCJFClaaX9Fnn30mV1dXffXVV0ZHAQAkE2Zo4mCGAglDsQWe4dKlS5o0aZI+/fRTZc6c2eg4di1z5sz69NNPNXHiRP39999GxwEAJDFmaOJhhgIJQ7EFnmHMmDFKlSqVevbsaXQUh9CrVy+lTJmSFWcAcAJfffUVMzQRMUOB/0axBZ7ir7/+0uTJk9WjRw9lypTJ6DgOIVOmTOrRo4cmTZqkS5cuGR0HAJBELl26xAxNZMxQ4L9RbIGnGDNmjNzc3NSjRw+joziUnj17KlWqVBozZozRUQAASWT06NFKlSoVMzSRMUOB56PYAv/y119/6YcfflDPnj2VMWNGo+M4lIwZM6pHjx6aPHmy/vrrL6PjAAASGTM06TBDgeej2AL/MmrUKLm7u7PSnER69OghNzc3jR492ugoAIBExgxNWsxQ4NkotsBjLly4oClTpqhXr17KkCGD0XEcUsaMGdWrVy/98MMPunjxotFxAACJhBma9JihwLNRbIHHjBo1Sh4eHvr000+NjuLQPv30U6VOnZoVZwBwIKNHj2aGJgNmKPB0FFvg/7tw4YKmTp2qzz77TOnTpzc6jkPLkCGDPvvsM02ZMkUXLlwwOg4A4BUxQ5MPMxR4Ooot8P99+eWXSps2rbp162Z0FKfQvXt3eXh4aNSoUUZHAQC8oi+//FJp0qRhhiYTZijwJIotIOnPP//Ujz/+yEpzMkqfPr0+++wzTZ06VefPnzc6DgDgJTFDkx8zFHiSyWKxWIwOARitc+fOWrRokc6ePat06dIZHcdp3Lp1S7lz51bTpk01ceJEo+MAAF4CM9QYzFAgPnZs4fTOnTunadOmqXfv3gzkZJY+fXr17t1b06ZN059//ml0HADAC2KGGocZCsTHji2c3ieffKKlS5fq7NmzSps2rdFxnM7t27eVO3duNW7cWJMmTTI6DgDgBXTq1ElLlixhhhqEGQr8H3Zs4dT++OMPzZgxQ3369GEgGyRdunTq06ePpk2bpnPnzhkdBwCQQH/88YemT5/ODDUQMxT4P+zYwql17NhRy5YtY6XZYHfu3FHu3LnVoEED/fDDD0bHAQAkQNwMjYiIUJo0aYyO47SYocAj7NjCaUVERGjGjBnq27cvpdZgadOmVZ8+fTRjxgz98ccfRscBAPyHx2copdZYzFDgEXZs4bQ6dOigVatW6cyZMwxlG/DPP/8od+7cqlu3rqZOnWp0HADAczBDbQszFGDHFk7q7NmzmjVrFivNNiRNmjTq27evZs6cqYiICKPjAACegRlqe5ihADu2cFIfffSR1q5dqzNnzsjDw8PoOPj//vnnH+XJk0e1a9fWjz/+aHQcAMBTtG/fXmvWrGGG2hhmKJwdO7ZwOmfOnNHs2bPVr18/BrKNSZMmjfr166dZs2bpzJkzRscBAPwLM9R2MUPh7NixhdNp166d1q1bx0qzjbp7967y5MmjGjVqaPr06UbHAQA8pl27dlq/fr3OnDmj1KlTGx0H/8IMhTNjxxZO5dSpU5ozZ4769+9PqbVRHh4e6tevn2bPnq3Tp08bHQcA8P/FzdB+/fpRam0UMxTOjB1bOJW2bdtq48aNOn36NEPZht27d0958uRR1apVNXPmTKPjAADEDLUXzFA4K3Zs4TROnjypuXPnqn///gxkG5c6dWr1799fc+fO1alTp4yOAwBO79SpUwoKCmKG2gFmKJwVO7ZwGq1bt9aWLVt0+vRpubu7Gx0H/+HevXvKmzevqlSpolmzZhkdBwCcWps2bbR582ZmqJ1ghsIZsWMLp3DixAnNmzdPAwYMYCDbidSpU2vAgAGaO3euTp48aXQcAHBaJ06cUFBQEDPUjjBD4YzYsYVTaNWqlUJDQ3Xq1CmGsh2JiopS3rx55efnpzlz5hgdBwCcEjPUPjFD4WzYsYXDCw8P1/z581lptkPu7u4aMGCA5s2bp/DwcKPjAIDTYYbaL2YonA07tnB4LVq00LZt23Tq1Cm5ubkZHQcvKCoqSp6enjKbzQoKCjI6DgA4FWaofWOGwpmwYwuHduzYMS1YsEADBw5kINspd3d3DRw4UAsWLNDx48eNjgMATuP48ePMUDvHDIUzYccWDq1Zs2b6+eefdfLkSYayHbt//77effddVahQQfPmzTM6DgA4hebNm2vHjh3MUDvHDIWzYMcWDuvo0aP66aefNGjQIAaynXNzc7OuOB87dszoOADg8I4ePaqFCxcyQx0AMxTOgh1bOKymTZtq165dOnnypFKlSmV0HLyi6OhoeXp6qnz58lqwYIHRcQDAoTFDHQszFM6AHVs4pCNHjmjRokUaNGgQA9lBpEqVSoMGDdJPP/2kI0eOGB0HABwWM9TxMEPhDNixhUNq3Lix9uzZoxMnTjCUHUh0dLTy5cun0qVL66effjI6DgA4JGaoY2KGwtGxYwuHc/jwYS1evFiDBw9mIDuYuBXnxYsX6/fffzc6DgA4nN9//50Z6qCYoXB07NjC4TRs2FAHDhxQeHi4UqZMaXQcJLKYmBjly5dPJUuW1KJFi4yOAwAOpVGjRtq/fz8z1EExQ+HI2LGFQzl06JCWLl2qwYMHM5AdVMqUKTV48GAtXrxYhw8fNjoOADiMQ4cOacmSJcxQB8YMhSNjxxYOpUGDBjp48KCOHz/OUHZgMTExyp8/v7y8vLRkyRKj4wCAQ2CGOgdmKBwVO7ZwGAcPHtSyZctYaXYCcSvOS5cu1W+//WZ0HACwe8xQ58EMhaNixxYOo169ejp8+LCOHz+uFClSGB0HSSwmJkYFChTQBx98oGXLlhkdBwDsGjPUuTBD4YjYsYVD+PXXX7VixQoNGTKEgewkUqZMqSFDhmj58uU6ePCg0XEAwG4xQ50PMxSOiB1bOIS6devq6NGjOnr0KEPZiTx48EAFCxZUkSJFtHz5cqPjAIBdYoY6J2YoHA07trB7Bw4c0MqVK1lpdkIpUqTQkCFDtGLFCv36669GxwEAu8MMdV7MUDgadmxh92rXrq3jx4+z0uykHjx4oEKFCqlgwYJauXKl0XEAwK7Url1b4eHhOnLkCDPUCTFD4UjYsYVd27dvn1avXq2hQ4cykJ1U3IrzqlWrtH//fqPjAIDdiJuh7NY6L2YoHAk7trBrNWvW1KlTp3TkyBG5uroaHQcGefDggQoXLqx8+fJp9erVRscBALvADIXEDIXjYMcWdmvPnj1au3athg4dykB2cilSpNDQoUO1Zs0a7du3z+g4AGDz9u7dywyFJGYoHAc7trBbNWrU0NmzZ3X48GGGMvTw4UMVKVJEefPm1Zo1a4yOAwA2jRmKxzFD4QjYsYVd+uWXX7Ru3TpWmmHl6uqqoUOHau3atdqzZ4/RcQDAZjFD8W/MUDgCdmxhl6pVq6Y//viDlWbE8/DhQ7333nvKlSuX1q1bZ3QcALBJ1apV07lz53To0CFmKKyYobB37NjC7uzatUsbNmzQsGHDGMiIJ27Fef369dq9e7fRcQDA5sTNUHZr8W/MUNg7dmxhdwICAnThwgUdOnRILi6szSC+hw8f6v3331eOHDm0YcMGo+MAgE1hhuJ5mKGwZ/yLBruyc+dObdy4UcOGDWMg46lcXV01bNgwBQcHa9euXUbHAQCbwQzFf2GGwp6xYwu7UqVKFV26dEkHDx5kKOOZYmNj9cEHH+itt95ScHCw0XEAwCYwQ5EQzFDYK/5Vg934+eeftWnTJlaa8Z9cXFw0bNgwbdy4UTt37jQ6DgAYjhmKhGKGwl6xYwu74e/vrytXrujXX39lKOM/xcbGqmjRonr99de1adMmo+MAgKGYoXgRzFDYI/5lg13Yvn27tmzZwkozEixuxXnz5s3asWOH0XEAwDDMULwoZijsETu2sAu+vr66fv26Dhw4wFBGgsXGxqpYsWLKmjWrtmzZYnQcADAEMxQvgxkKe8O/brB5W7duVWhoqAIDAxnIeCEuLi4KDAxUSEiItm3bZnQcAEh2zFC8LGYo7A07trB5Pj4+unnzpvbv3y+TyWR0HNgZi8UiLy8vZcqUSSEhIUbHAYBkxQzFq2CGwp6wdAebFhYWprCwMAUGBjKQ8VJMJpMCAwMVGhqqrVu3Gh0HAJINMxSvihkKe8KOLWyWxWKR2WzWnTt3tG/fPoYyXprFYlHx4sWVPn16hYWFGR0HAJIcMxSJhRkKe8GOLWxWaGiotm3bxkozXlncinPc75oBgKNjhiKxMENhL9ixhU2yWCyqWLGioqKitGfPHoYyXpnFYlHJkiXl4eGhrVu38ncKgMNihiKxMUNhD9ixhU3asmWLduzYwUozEk3civP27dtZcQbg0EJCQpihSFTMUNgDdmxhcywWiypUqKCYmBjt3r2boYxEY7FYVLp0abm5uWnbtm383QLgcJihSCrMUNg6dmxhczZv3qyff/6ZlWYkurgV5x07dvBm8wAcEjMUSYUZClvHji1sisViUfny5RUbG6tdu3YxlJHoLBaLypQpoxQpUmjHjh38HQPgMJihSGrMUNgydmxhUzZu3Khdu3ax0owkE7fivHPnTm3atMnoOACQaJihSGrMUNgydmxhMywWi8qWLSuTyaSdO3cylJFk+LsGwNHw7xqSC3/XYKvYsYXN2LBhg3755Rd9/vnn/COJJGUymfT5559r9+7d2rhxo9FxAOCVBQcHM0ORLJihsFXs2MIm8DsbSG78LhoAR8EMRXJjhsIWsWMLm7B+/Xrt2bOHlWYkm7gV519++UUbNmwwOg4AvDRmKJIbMxS2iB1bGM5isahUqVJyc3PT9u3bGcpINnHv9xgdHa1ffvmFv3sA7E7cDHV3d+e9RZGsmKGwNezYwnBr167Vvn37WGlGsot7dce9e/dq3bp1RscBgBcWN0N5JWQkN2YobA07tjCUxWJRyZIl5eHhoa1btzKUkewsFosqVqyoqKgo7dmzh7+DAOwGMxRGY4bClrBjC0OtWbNG+/fvZ7cWhon7PaF9+/Zp7dq1RscBgARjhsJozFDYEnZsYRiLxaISJUooXbp0CgsLMzoOnJjFYpHZbNY///yjvXv38gMiAJvHDIWtYIbCVrBjC8OsWrVKBw4cUGBgoNFR4OTiVpz379+v1atXGx0HAP5T3Az9/PPPjY4CJ8cMha1gxxaGsFgs8vLyUsaMGRUaGmp0HECS5OPjo5s3b2r//v2sOAOwWXEzNFOmTAoJCTE6DiCJGQrjsWMLQ6xYsUIHDx5kpRk2JTAwUL/++qtWrlxpdBQAeKa4GcoZT7AlzFAYjR1bJLvY2FgVK1ZMWbNm1ZYtW4yOA8Tj6+ur69ev68CBA3JxYe0PgG1hhsKWMUNhJP7GIdmtWLFChw4dYrcWNunzzz/Xb7/9xoozAJvEDIUtY4bCSOzYIlnFxsaqaNGiev3117Vp0yaj4wBP5e/vrytXrujXX39lxRmAzWCGwh4wQ2EU/rYhWS1btkyHDx/m94Jg0wIDA3Xo0CEtX77c6CgAYMUMhT1ghsIo7Ngi2cTGxuqDDz7Qm2++qY0bNxodB3iuypUr69KlS/rtt99YcQZgOGYo7AkzFEbgbxqSzZIlS/T777/ze0GwC59//rl+//13LV261OgoAMAMhV1hhsII7NgiWTx8+FDvv/++cuTIoQ0bNhgdB0iQgIAAXbhwQYcOHWLFGYBhmKGwR8xQJDf+liFZLFmyREePHmWlGXbl888/15EjR7RkyRKjowBwYsxQ2CNmKJIbO7ZIcg8fPtR7772nXLlyad26dUbHAV5ItWrVdO7cOR06dEiurq5GxwHgZJihsGfMUCQndmyR5BYtWqRjx47xKo6wS4GBgTp69KgWL15sdBQATogZCnvGDEVyYscWSerhw4cqUqSI8uTJo7Vr1xodB3gp1atX19mzZ/X777+z4gwg2TBD4QiYoUgu7NgiSS1cuFDHjx9npRl2LTAwUMePH9dPP/1kdBQAToQZCkfADEVyYccWSebBgwcqXLiw8uXLp9WrVxsdB3glNWvW1KlTp3TkyBFWnAEkuYcPH6pQoULMUDgEZiiSAzu2SDILFy7UiRMnWGmGQwgMDFR4eLgWLlxodBQATmDBggXMUDgMZiiSAzu2SBIPHjxQoUKFVLBgQa1cudLoOECiqF27tsLDw3XkyBGlSJHC6DgAHBQzFI6IGYqkxo4tksT8+fN18uRJVprhUAIDA3XixAktWLDA6CgAHBgzFI6IGYqkxo4tEt2DBw9UsGBBFS5cWCtWrDA6DpCo6tSpo6NHj+rYsWOsOANIdMxQODJmKJISO7ZIdEFBQTp16hQrzXBIgYGBOnXqlObNm2d0FAAOiBkKR8YMRVJixxaJKiYmRgUKFNAHH3ygZcuWGR0HSBL16tXT4cOHdfz4cVacASSaBw8eqECBAnr//feZoXBYzFAkFXZskaiCgoJ05swZVprh0AIDA3X69GkFBQUZHQWAA5k7d65Onz7NDIVDY4YiqbBji0QTExOj/Pnzy8vLS0uWLDE6DpCkGjRooIMHD+r48eNKmTKl0XEA2DlmKJwJMxRJgR1bJJo5c+bo7NmzGjZsmNFRgCQ3bNgwnTlzRnPnzjU6CgAHwAyFM2GGIimwY4tEER0drfz586tEiRJavHix0XGAZNGwYUMdOHBA4eHhrDgDeGnMUDgjZigSGzu2SBSzZ8/WH3/8wUoznMqwYcN09uxZzZ492+goAOwYMxTOiBmKxMaOLV5ZdHS03n33XZUpU0Y//fST0XGAZNW4cWPt3btX4eHhSpUqldFxANiZ6Oho5cuXT6VLl2aGwukwQ5GY2LHFK5s1a5b+/PNPVprhlIYNG6Y//viDFWcAL2XWrFk6d+4cMxROiRmKxMSOLV5J3G5tuXLltGDBAqPjAIZo2rSpdu3apZMnT7LiDCDBmKEAMxSJhx1bvJIZM2bozz//1NChQ42OAhhm6NCh+vPPPzVz5kyjowCwI8xQgBmKxMOOLV7a/fv35enpqQoVKmj+/PlGxwEM1axZM/388886efKk3NzcjI4DwMYxQ4H/wwxFYmDHFi9t+vTpunjxIivNgB6tOJ8/f14zZswwOgoAO8AMBf4PMxSJgR1bvJT79+8rb968MpvNCgoKMjoOYBNatGihbdu26dSpU6w4A3gmZijwJGYoXhU7tngp06ZN019//cVKM/CYoUOH6uLFi5o+fbrRUQDYMGYo8CRmKF4VO7ZIsIcPH2r79u0qU6aM8ubNKz8/P82ZM8foWIBNadWqlUJDQ3Xq1Cnt3r1bFSpUkKurq9GxABiMGQr8N2YoXgU7tkiwsLAw+fj4aOzYsbp06ZKGDBlidCTA5gwZMkR//fWXxo0bJx8fH4WFhRkdCYANYIYC/40ZildBsUWC3b9/X5L03XffqW7duho5cqTOnDljcCrAdpw+fVpffvml6tSpo++++07So/epBABmKPB8zFC8KootEizurPUrV65o8+bNCg0Nlbu7u8GpANuROnVqhYaGasuWLbp8+bKk/3veAHBuzFDg+ZiheFUUWyRY3GqzxWKRr6+vfv31V7311lsGpwJsx1tvvaVff/1Vvr6+1mEc97wB4NyYocDzMUPxqii2eGFDhgzRsmXLlClTJqOjADYnU6ZMWrZsmfX351htBvA4ZijwbMxQvApeFRkv5MGDB0qRIoXRMQC7wPMFwOP4NwFIOJ4veFEUWwAAAACAXeNUZAAAAACAXWN//1/OnTunq1evGh0DiShr1qx65513jI6BRMDz0/Hw/HQsPEcdD89Rx8Hz0/Hw/IyPYvuYc+fOqWDBgrp7967RUZCIPDw8dOzYMZ74do7np2Pi+ek4eI46Jp6jjoHnp2Pi+RkfxfYxV69e1d27dxUUFKSCBQsaHQeJ4NixY2rZsqWuXr3Kk97O8fx0PDw/HQvPUcfDc9Rx8Px0PDw/n0SxfYqCBQvKy8vL6BgAnoLnJ2DbeI4CtovnJxwZLx5lYzw9PSVJBw8e1FdffZWsjz1w4EDlzJlT/v7+z71deHi4UqZMqR07dkiSpk6dKrPZLLPZrAIFCqhBgwbxbj906FDr5wU4AiOen/8WGBioggULWp970dHR8a4/d+6c9Tqz2ayUKVMqMjJS0dHRaty4sSpUqKBSpUpp06ZNkqQpU6aoVKlSqlixopo1a6b79+8b8WkBicIWnqOdO3e2Pv/eeOMNjR8//onblCtXTpUqVVLJkiW1YMECSY/et7NDhw6qWLGiqlatqgsXLkiSZsyYIW9vb1WsWFG1atXSrVu3kvXzAV5GRESEVq1a9ULH3LhxQ3PmzLH+edasWdZZlVxu3rypMmXKKGPGjAoKCrJefubMGVWsWNH63P7jjz+eOLZBgwaqVKmSSpQooXHjxiVnbFhgtX//fosky/79+w3LkDdv3kS5n9u3b7/wMRcuXLCcPn3a4ufn99zbNW3a1OLv72/Zvn37E9d16NDB8tNPP1n/fP78eUvTpk0T7fN6UbbwPUXisJXv5YMHDxL9Pu/evWt5+PDhCx0zbNgwy9y5cxN0259//tlSrVo1i8VisaxevdrStm1bi8VisZw7d87i5eVlsVgslpMnT1oz9OnTxzJt2rQXyvMybOV7isRhK99PW3mOPq5gwYKWixcvPnH5/fv3LRaLxXLz5k1Lrly5LBaLxbJ8+XJLx44dLRaLxbJ9+3ZL69at493WYrFYhgwZYpkwYcJL50koW/me4tUZ9b0MDQ21fPTRR0+97lnP1bNnz/7nz6Iv6kV/Lo6OjrZcunTpiVn72WefWWbNmmWxWCyWuXPnWnr16vXEsXHP1ZiYGIunp6fl1q1br5D82Xh+PokdW4PFxsbqww8/VIUKFdS+fXvFxMRIksLCwtS+fXtJ0ogRI1SqVCn5+vpq7Nixz7yvO3fuKCgoSLVq1VLv3r1fOMtbb70lF5fn/5XYtm2bcuXKpbfffvuJ66KiorRx40bVrl3bellgYKAGDx78wlkAIw0aNEhly5aVj4+Pli5dqoiICJUsWVKtW7dWy5Yt4z0/27Ztq48//lg1a9ZUiRIltGzZMlWrVk2FCxfWzp07n/kYDx8+1KZNm9S2bVtVrVr1pXZIx4wZI29v7/9cEZ4zZ45atWolScqbN6/u378vi8WiyMhIvfbaa5IenS0S9/x3c3OTq6vrC+cBkou9PEclaffu3cqRI4fefPPNJ65LlSqVJOn27dsqXLiwJOnEiRMqUaKEJKlEiRIKDQ2Nd1vp0byPuz1gCyIiIlS8eHE1adJEpUuX1tChQyVJY8eO1dq1a2U2m7Vjxw61bdtWnTp1Uq1atRQcHKyBAwfK19dXXl5emjx5svWY/fv3y2w2a8mSJQoMDLTums6cOVOlS5dWmTJlNGrUqOdmOnXqlIYPHy5vb2+FhYW90OeTMmVKvf76609cXrhwYd24cUOSdP36desMfVzcc/Xu3bt655135OHh8UKPjZfH79gabNWqVUqRIoW2b9+ukydPau7cuU/cZt68edq3b5/SpEmj2NjYJ67fuHGj5syZo6tXr6p27dqaMWOGsmXLJknas2eP+vbt+8QxXbt2VcOGDV8oq8Vi0ciRI7Vw4UL16NHjietXr14tf39/ubu7S5IOHTokSQxf2JX169fr9OnT2rlzp0wmkx4+fKg///xTERER2rx5szJkyPDEgCxUqJCmTp2qESNGaO7cuVq/fr127Nih77//XuXKlYt326NHj2ratGk6cOCAzGazBgwYoPz580uSoqOjVaVKlScyeXt7a8SIEfEu69atm4YNG6b79++rTp06Klq0qHx8fJ44Njo6WuvXr7eW3zx58uju3bsqUKCAbty4oZUrV8a7/bFjx7R+/Xpt3br1hb92QHKwl+donLlz51oXlv7t3r17CggI0JEjR6w/pBcpUkQzZ87URx99pA0bNuj69evW20+ePFkTJ06Uh4eHBgwYkOCvGZAcIiIitGXLFqVPn15+fn76/fff1atXLwUFBWnatGmSpGnTpil79uzWElupUiWlSZNG9+/f13vvvaf27durV69eOnr0qDZv3ixJ+v333yVJV65c0bhx47R3716lSJFCvr6+qlWrVryfM+/cuaNZs2Zp9erVeuONN9S0aVMNHDhQKVI8qjzDhw9XSEjIE9nXrFmjtGnT/ufn6Ofnp4CAAE2fPl1RUVHas2fPU29Xp04d7dq1S506dWKhOBlRbA0WHh6uMmXKSJLeffddayF93IQJE9SlSxc9ePBAn3zyiby9veNdP2/ePJ0+fVrdunVT7dq14z0xS5Uq9cKrVM+ycOFC+fv7K2PGjE+9fs6cOfF2iocOHaoJEyYkymMDyeXw4cPy8/OTyWSSJOtAKlKkiDJkyPDUY4oXLy5Jyp49uywWi/Xja9euPXHbkJAQrVu3Th07dlSTJk301ltvWa9LlSpVgp+vWbJkkSS5u7urQYMG2rdv31OL7erVq+Xr66vUqVNLevS7StmzZ9eKFSsUERGhevXq6ddff5X06IeSNm3aaNGiRUqTJk2CcgDJzV6eo9KjIrx27VqNGTPmqdenTp1a27Zt09WrV1WyZEk1btxY1atX186dO2U2m1WyZEkVKFDAevtOnTqpU6dOGjVqlL766qtn3i9ghIIFC1p/RixdurTCw8Ots+pxj/8cO3nyZK1YsUKurq66fPmyLl++/Mz7P3PmjN5//325ublJksqUKaPw8PB4xfbixYuaOnWqSpcurXbt2qls2bLx7mPo0KHW3eSX0a9fP/3vf/9Tw4YNtXDhQg0YMMBa0h+3cuVK/fPPP6pYsaKaNGmiQoUKvfRjIuEotgbLly+f1q9fr48++kinT5/WlStXnrhN2bJl5efnp3PnzqlevXrav39/vOtnz56ta9eu6aefflK9evWUNWtWtW3bVgEBAYm6Y3vw4EHt27dPmzdv1uHDh3X8+HHNnz9fefLk0ZUrV3Ts2DFVrFjRevvTp09bTwX766+/1KVLF02cOPGFHhNIbkWKFFFQUJDat29v3Q2S9NwV17gfsP/9cdwP0I/r2rWrOnTooDVr1qh79+76559/VL9+fbVr104PHz5M8G7QjRs3lDFjRlksFoWGhqpZs2ZPzTZ37lx179493mVxC2iZMmXSnTt3JEmXLl1So0aNNH36dOXJk+eZnytgNHt5jkrSunXrVLFixacuFEVHRytFihRycXFRmjRp5O7ubj3jKe6+goODrac1RkVFWa/PlCmToqKinvn5AkY4duyYbt68qfTp02vPnj1q0aKFbt++rQcPHsS7XdxzNTIyUjNnztShQ4f+X3t3Hh/T2fYB/JcEiVgTuyIhEbtaguw5kwQtStVSS6kqquj66kpLParebs/TvVWeKlrdUUqpOicEsSQlQVBLqvYtQUT2+/0j75xmZBJZZuacM/l9P59+yqz35HLnmuu+7nMOcnNz0a5dOwghUKNGjWLPAQp3HO3fvx/Z2dmoXr064uPjMX78eIvHBAQEICkpCfv27cOKFSvw3HPPITw8HFOnToWPj0+lO7bAPzm0UaNG6rZks4KCAuTn56N69eqoWbOm+h85BgtbjQ0ZMgSrV69GeHg4OnfubPUYnKFDhyIrKwtZWVmYPn261ddp0KABpk2bhmnTpuHkyZPqGYvL07F977338P333yMlJQUxMTH4+OOPERAQgLFjx+Krr77C//7v/6qPnTBhAiZNmqR+Af7mm28wcuRIiy8MycnJ6p/9/f1Z1JIhDBgwALGxsQgODoanpyemT5+udntsxd3dHcOGDcOwYcOQnp6O77//Hjk5OahZs2aZ5+vTTz+NI0eOQAiB8PBw9dj2p59+GrNmzUKjRo1w5coVJCUlQZIk9XkPPfQQRo8ejcjISGRmZuL1118HALz44ou4cOGCWgSPGTMGU6ZMsennJrIFo8xRoHBh6bHHHrO4zTxHr127hokTJ8LNzQ3Z2dmYM2cO3N3dkZaWhqFDh8LNzQ0+Pj7qzqd58+apxwR7e3vjv//9r80+L5EttGnTBo8//jiOHz+OmJgYdOnSBTdu3MDx48cxfPhwvPDCCxaPr1+/Pjp27IiwsDB07NhR7e42bdoUNWvWxLBhwzBx4kT18Y0aNcJTTz2F8PBwuLi4YPDgwSUe7tatWzd069YNBQUFkGUZZ8+ehY+PT7k6tgMGDMDhw4fh6emJ2NhYfP7555g9ezYee+wxVKtWDbm5ufjss88AAAsXLsTAgQPh6+uL++67DwCQnZ2NUaNGoXXr1uX+WVLFuAhry5VVVGJiInr27ImEhARe48tJMKbOg7F0Poypc2E8nQ9j6jzsHcvU1FRMmjRJPS6W7I/zszieFZmIiIiIiIgMjYUtERERERFVmK+vL7u1pDkWtkRERERERGRoLGwNoujFqfVuzZo16NOnDyIjIzFw4ED1cgrZ2dkYP348wsPDcf/99+PatWvFnvvAAw9AkiRIkoT69etj7dq1OHXqlHqbJEmoXr060tLSABReliEmJgYmk4nX9CNNGWmOHj16FD169EDt2rXVE80BQH5+Pl566SXExMRAkiSr17JNSkpCWFgYQkJC8M4771jcl5OTA39/f4uzw86ZMwchISGQJEm9FiGRoxlpfppt2bIFLi4uOH36tMXtS5YsQfXq1a0+54MPPkBAQAD8/f2L3Xf7/Ny9e7eaV4OCgqxeloXIUZxhjn722Wfo3bs3IiIiMHr0aGRnZxd7zt9//42YmBiEh4dbXCJz2LBhiIyMRGBgoHrdeQCIiYlBo0aNSrxONlliYasx82UKHPk+Qgirlzgo7TnlcffddyMuLg6xsbEYOHAg/vOf/wAovCyRr68vtm3bhgEDBuDdd98t9tyffvoJiqLg119/Rf369dGvXz+0atUKiqJAURQsWLAAffv2hZeXF65cuYJ33nkHv/zyC2RZxhtvvFGh8RKVxhnnaIsWLfD7778Xu+TX4sWL0bJlS2zevBmKoiAyMrLYc6dPn44vvvgCcXFxWLNmDY4fP67e99FHH1lcq2/fvn3YvXs3duzYgaVLl+Kpp56q0HiJSuKM8xMovGTI22+/jcDAQIvbMzMz8dNPP6FVq1ZWnzdy5EgcPHjQ6n23z0/zVRMURcGTTz6JBx98sMLjJSpJVZqj0dHRiI+Px9atW9GyZUurhfoLL7yAl19+Gdu2bcPZs2chyzIAYOXKlYiNjUV8fDw+/vhj3LhxA0DhteffeuutCo+zqmFhW4rU1FSEhobCZDJBkiSkpaXhwoULiI6ORr9+/TBt2jTExMQAKLz8jbnzoSiKev3W9957D1FRUQgMDMTs2bPV1/bx8cH06dPRr18/XLt2DSNHjkRUVBRMJhOOHj0KAFi1ahW6deuGwYMHF7t2bVG5ubmYPHkyoqKiEBYWhp07d6pjevzxx3Hfffdh48aN8Pf3x6xZsxAdHY3Tp09j1KhRiIyMRGhoqPr6tz+nInx9fdXVZHd3d/V6ZbIsY+jQoQCA+++/X53M1qxevRr9+/dXL8JttmzZMowbNw4A8Msvv6BRo0a4//77ERMTg/j4+AqNl4yLc7Ric9TT0xNeXl7Fbv/2229x7tw5REVFYeLEiWpiNcvOzsb169fRtm1buLq6YtCgQWpXNz09HZs3b8YDDzygPv7o0aPqZVh8fX2RkpJi9dqE5Jw4Pys2PwFgxYoVGDx4cLHr37799tt44oknLC6tV1STJk2sdnOtzc+iiuZWqjo4R207R/39/eHqWlhaFf3+W1RiYiKioqIAWH4XNl+vOjMzE61atYKnpyeAwoVoKjsWtqXYsmUL+vbtC1mWoSgK6tevjzfeeAMTJ07Epk2biq2kWjNp0iRs2bIFe/bswe+//46//voLAHD27Fk899xz+P333/HGG2/ggQcewJYtW/Dhhx/i+eefR0FBAV588UXExsZi9erVxb5gFrVkyRL4+flhy5YtWLVqFZ599ln1vhYtWmDt2rUYMGAA8vLyMGDAAGzZsgU//fQT2rdvj9jYWPz3v/+1uD5u0ecUNW3aNIstwZIkYdCgQSWO6/z58/jwww/Va2FeuXJF/TJt7riWZPny5cWSbE5ODjZs2ID7778fAHDmzBmkpKRg1apVWLJkicW1zqhq4Byt3By93ZkzZ+Dt7Y0tW7agY8eOxVaJi85hwHIev/7668WuUdipUyfIsoycnBwkJibi/PnzxS5mT86L87Ni8/PWrVtYtmyZWjiYnT9/HgkJCbjnnnvu+HO7nbX5WfR1U1NTERwcXO7XJWPjHLXtHDVLSUnBhg0bMGLEiGL3FRQUqH++/bvwkCFD4O/vj7CwMKtFMd1ZNa0HoGcjR47EggULMHbsWPj4+GDu3Lk4cuQInnjiCQBASEgIvv76awCwWD0tuv3hxx9/xOLFi+Hi4oKTJ0/i9OnT8PHxQYsWLeDr6wsASE5ORmxsLD799FP1tS5duoTGjRujXr16AICgoKASx5mcnIwdO3bg119/BQCLL45hYWHqn93c3BASEgIAOHz4MIYNGwYAaNeuncXEKvqcoj7++ONSflqW0tLSMGzYMCxatAjNmzcHADRo0ABpaWnw9fVFenp6icfzXLhwAX/++SdCQ0Mtbl+7di2ioqJQs2ZNAIUXqDeZTPDw8ICPjw/q1q2Lq1evwtvbu8zjJGPjHLVUnjlqjbe3N+69914AwKBBg/D8888Xu7/o2M3zODU1FSdPnkRERAROnDih3t+pUyeMHj0aMTExCAgIQJcuXXgcXxXC+WmprPPzP//5D6ZOnYpq1Sy/os2dO9eiI1ZWJc1Ps6+++gqjR48u9+uS8XGOWqrsHAUK59vDDz+M7777rtiOCwBqR9f8OYrmxDVr1uDmzZuIiIjAgw8+aHHoAJUNC9tSuLq6YsGCBQCAiRMnYuPGjQgICMCuXbvg5+dnsfXV29sbp06dAgDs2bNHvf2VV17B4cOH4e7ujtDQUPWXQdGVmE6dOiE4OFjdppuTkwM3NzdcuHAB169fR506dbB792507tzZ6jg7deoEf39/PPPMM+rzzYq+j4uLi/qLqX379ti2bRtiYmJw5MgRi4lV0irRtGnTcOjQIYvbateujXXr1lnclpGRgSFDhuC1115Dr1691NslScLPP/+M7t274+eff4YkSVbfZ+XKlRg1alSxrVbLly/Hk08+qf7dZDLhxx9/hBAC165dQ1pamtXtleS8OEctlXWOliQ6Ohp79+5F+/btsWvXLgQEBFjc7+HhgTp16uDEiRNo3bo11q9fj88//xyJiYk4e/Ys7rnnHpw5cwbZ2dno3Lkz7r//fsyYMQMzZszAgQMH8NZbb5W4hZKcD+enpbLOz4MHDyI2NhaLFy9GUlISxo0bh3Xr1uHYsWN45ZVXAADnzp3D8OHD8cMPP1h9r6JKm59A4ZbKsrwOOR/OUUuVnaM3btzAiBEjsGTJErRp08bqe3Tv3h2xsbGIjIzEzz//jEceeQQFBQXIz89H9erVUbNmTfU/Kj8WtqVYt24dPvjgA7i5ucHd3R1hYWEIDAzEmDFj8MUXX1hMwEmTJmHMmDH4+uuv0bp1a/X2Bx54AKGhoWjfvj1q165t9X1mzZqFqVOn4oMPPgAA9O/fHy+88ALeeOMNREREoGXLlqV2ISdPnowZM2bAZDIBKJw01k7MdPtzJkyYgIiICOTl5anvXZqyrmS9/fbbOHz4MObPn4/58+cjKioKr776KiZMmIBJkyYhIiICXl5e+PLLLwEUHhh/1113oW/fvgAKC9iVK1davOaVK1eQlJRkUQwHBATg3nvvRWRkJLKzs/Huu+/yS3MVwzlqqaxzNC0tDSNGjMChQ4dw8OBB9O/fH/Pnz8fMmTPx6KOPYsmSJfDw8MCyZcsAAAsXLsTAgQPRpUsXvP/++xg/fjwKCgowdOhQ+Pv7w9/fXz12b+nSpTh9+rT6pblfv37Iy8tDw4YN8dFHH5VpfOQcOD8tlXV+Fj3hjCRJWL58OWrVqmVxjVB/f3+1GC2aQ7/55hssXrwYZ8+eRUxMDObMmYMHHnigxPmZnJwMT09P+Pn5lWls5Fw4Ry1Vdo5Onz4dFy5cUJswY8aMwZQpUyzm6MKFCzFx4kTk5OQgMDAQJpMJGRkZuO+++wAUnsti1KhR6s944sSJ2LVrF7Kzs7Fr1y6sXbu2TGOsqlxEWU4bVkUkJiaiZ8+eSEhIQI8ePe74+NTUVEyaNIkXpNax8saU9KsiseQc1TfOT+fCHOp8OEedB3Oo8+H8LI4dW4MZP368uhUEKNwa8tNPP2k4IiIqinOUSL84P4n0jXOUKoOFbSX4+vo6fBXLvDWQiO6Mc5RIvzg/ifSNc5SMhpf7cVL+/v4OeZ+4uDh06dIFHh4eOH36tHr7rVu3MHXqVMTExECSJBw5cgQ5OTkWp1D38PBAcnKyQ8ZJpCdaz88PPvgAAQEBFuM4deqUxfysXr060tLSHDJOIj1z1Hw1W7JkicW1aItegqRp06ZlOlaQqKpw1Pz87LPP0Lt3b0RERGD06NHIzs4GUHgprYiICISGhmL8+PHIzc11yHjIOha2VCldunTBzp07i52mfd68eRg8eDA2b94MRVHQrl071KhRA4qiQFEUrFixAv7+/ujSpYtGIydyfiXNz5EjR+LgwYMWt7Vq1UqdnwsWLEDfvn15lnEiB8vMzMRPP/2EVq1aqbd9/PHH6tz09vbG8OHDNRwhUdUUHR2N+Ph4bN26FS1btlRPIPXcc89h69at2L59OwBg06ZNWg6zyuNWZAdLTU3F2LFjUaNGDQghsGrVKiQnJ2POnDnIy8uDl5cXvv32W9SsWROSJKF79+44dOgQsrOzMWXKFHz55Ze4cOECvvvuOwQEBECSJHTq1AlHjx5FQUEBVq5cicaNG6vvl5ubi2nTpuH48ePIycnBW2+9heDgYMyfPx8///wzateujUGDBllc7Lo8zNcfu92mTZuQl5eHN998Ez169MCbb75pcb2vFStWYOzYsRV6TyJ7qSrzs0mTJqU+b9myZRg3blyF3pPIUZxtvgKFVxV44oknMGPGjGL3xcfHo2XLlmjWrFmFX5/IUZxtfhbtDLu7u6uXDKpRowYAoKCgAHl5eQ7f4UGW2LF1sC1btqBv376QZRmKoqB+/fro2bMnZFnGtm3b0KFDB3z33Xfq4yMjI7Fx40b4+/tjz5492LhxI2bOnIn//ve/6mP69OmD3377DWPHjsVbb71l8X5LliyBn58ftmzZglWrVqkT+quvvoIsy9iyZQuefvrpYuN84IEHLLYlSpKESZMmlflzHjhwACEhIVAUBbm5ucWOmfjqq69Y2JLuVJX5WZqcnBxs2LBBvRwIkV4523w9f/48EhIScM8991j9vMuXL+eCExmGs81Ps5SUFGzYsAEjRoxQb5szZw4CAgKQnp6Oli1bVvRHRjbAjq2DjRw5EgsWLMDYsWPh4+ODuXPn4uDBg5g9ezays7Nx4cIF1K1bV318z549AQAtWrRQrzPXokULxMbGqo8JCQlR/79q1SqL90tOTsaOHTvw66+/AgDS09MBAB9++CGmT5+OvLw8TJ06FWFhYRbPq+wZ6Ly9vXHvvfcCAAYOHIj169er9yUkJKBhw4YWW62I9KCqzM/SrF27FlFRUbw4POmes83XuXPnYvbs2Vbvy8nJwS+//II333yzTK9FpDVnm59AYRf64YcfxnfffYdatWqpt7/22muYO3cupk+fjqVLl2LatGllfk2yLRa2Dubq6ooFCxYAKLzo8saNG7F48WK89tprCA4OxvPPP4+ilxZ2cXGx+ueij4mPj4e/vz/i4+PRrl07i/fr1KkT/P398cwzzwAoTI4AEBwcjOjoaJw6dQpDhw5FQkKCxfMeeOABXL161eI2f39/LF68uEyfMzo6Gnv37kVYWBh27dqFgIAA9T6uOpNeVZX5WZrly5erF5cn0jNnm6/Hjh3DK6+8AgA4d+4chg8fjh9++AEAsH79ekRERFh8mSbSM2ebn+fPn8eIESOwZMkStGnTRr09KysLHh4ecHFxQb169eDp6Vn2HxLZHAtbB1u3bh0++OADuLm5wd3dHWFhYcjIyMCjjz6K9u3bo27duhYrWGWRmJiIL7/8Evn5+Vi5cqXFfZMnT8aMGTNgMpkAAN27d8e7776LoUOHIisrC1lZWZg+fXqx1yzrClZKSgqeeOIJ7N+/H6NHj8aDDz6IGTNmYOHChZg0aRKysrLQuHFjdStyXl4eVq9ejXnz5pXrMxI5QlWZn9988w0WL16Ms2fPIiYmBnPmzEF4eDiuXLmCpKQkSJJUrs9IpAVnm69FL6vi7++vFrVA4YLTY489Vq7PQqQlZ5ufL774Ii5cuKAu/I4ZMwZTpkzBtGnTcOLECeTn5yMgIIDfbzXmIoouhVRxiYmJ6NmzJxISEtCjRw+th1MmkiRhxYoVaNGihdZD0SUjxpSsM2IsOT9LZ8SYUsmMHk/O1+KMHlP6h9FjyflZnNFjag88eRQREREREREZGrciG5yiKFoPgYhKwPlJZBycr0T6xflJZcGOLRERERERERkaC1udSk1NRUxMjMPeb+7cuejTpw9CQ0Px5JNPqmehmzJlCoKCghAUFISFCxdafe5nn32GPn36IDw8XF1Ry8nJwciRIxEeHo7evXvjt99+AwDExcWhS5cu8PDwwOnTpx3y2YjswdFz9IcffkCHDh3g4eFh9f6IiAir194TQmDGjBkIDg5Gr169sGLFCvX2Z599FuHh4YiJiVHn44kTJxAREaFez++vv/6y34cishNHz8/XX38dERERCA0Nxfjx45GbmwsASEpKQlhYGEJCQvDOO+9Yfe6cOXMQEhICSZJw4MABAMCaNWvQp08fREZGYuDAgbhy5QoA5lByDo6en2avvvoq/P39i90+fvx4q+M5deqUxfVtq1evjrS0NADAW2+9hdDQUISHhyM5ORkAkJmZieHDh0OSJAwbNgzXrl2z7weiYljYEoDCs7vt2rUL27dvx/nz57FlyxYAwMyZMxEfH48dO3ZgzZo1OH78uMXzLl68iM8++wxxcXFYt24dZs6ciYKCAmzatAm1atXCtm3b8OOPP+LFF18EAHTp0gU7d+5EUFCQwz8jkZFJkoQ//vjD6okzVq1ahfr161t93sGDB3Hw4EHs3LkTiqLg1VdfBQD89ttvuHz5MrZt24bnn38es2bNAgB8/PHHePTRR6EoCiZNmoT333/fbp+JyFk899xz2Lp1K7Zv3w4A2LRpEwBg+vTp+OKLLxAXF2c1h+7btw+7d+/Gjh07sHTpUjz11FMAgLvvvhtxcXGIjY3FwIED8Z///AcAcyhRRZ05cwZ//vlnsdsTExNx/fp1q89p1aoVFEWBoihYsGAB+vbtCy8vLxw9ehTr169HXFwcPv/8c/VMyYsWLUJgYCAURcHQoUPx7rvv2vUzUXEsbB1o5syZ+PHHHwEUXvama9euyM3Nxcsvv4yoqCj06NEDn3zySbHnTZgwAXFxcQCgftkEgAMHDiAmJgZRUVEYMWIEMjMzKzy2oteZdXd3h5ubm8Xtrq6uqFatmnq7WWpqKjp27Ijq1aujXr16qFatGlJTU+Hn54fs7GwIIZCWlobGjRsDAOrVq4fatWtXeJxE9qTnOdqwYUOr3dq8vDx88sknVi9jAADNmzdHjRo1kJubixs3bsDb2xsAIMsyhg4dCgDo27cvdu/eDaDwWoDmC9tfvXpVnbtEWtPz/KxRowYAoKCgAHl5efD390d2djauX7+Otm3bwtXVFYMGDUJsbKzF844ePYqePXsCAHx9fZGSkoK8vDz4+vqievXqACxzMnMo6ZWe5ydQuDNx9uzZxW6fN2+eurBbmmXLlmHcuHEACvPn4MGD4eLigvbt2+PSpUvIy8vD0aNHERgYCAAIDAyELMuVGjOVH08e5UATJkzAyy+/jGHDhmHjxo2IiopC9erVMWvWLNSqVQvZ2dno0qWL1e2E1kybNg0rVqxAq1at8NFHH2HRokV4+umn1ftzcnLQr1+/Ys8LCwvD/Pnzrb6moig4ffo0IiIiLG5fsWIFWrZsCV9fX4vb/fz88Mcff+D69eu4fv06Dh48iKtXr6JLly7IzMxE+/btkZ6ejjVr1pTpMxFpyQhz9HaffvopHnroIbi7u1u938vLC35+fggICMDNmzfx2WefAQCuXLkCLy8vAICLiwvy8/MBANHR0ejfvz+WLFmCrKwsteAl0pre5+ecOXPw1VdfISAgAC1btrSYY0DhXDRvKTbr1KkT3nvvPeTk5ODAgQM4f/480tPT0bBhQwDA+fPn8eGHH+KXX34p02ci0oqe52dSUhKAwvlW1Lp169CjRw80atSo1LHk5ORgw4YN+Pe//w2gMH82b95cvb9evXpIS0tD586d8euvvyImJga//vorrl69WqbPSrbDwtaBOnfujEuXLuHixYv48ssv8dJLLwEAPvnkE6xevRpubm64ePEiLl68aPE8FxcX9c9FLzt88OBBjB8/HgCQnZ0NSZIsnlejRo1ynUUuMTERL730EtatWwdX13+a+Rs2bMCyZcvw888/F3tOgwYNMHfuXAwaNAjNmjVDt27d0Lx5cyxduhQtWrTA6tWrkZqaiqFDh+KPP/4o81iItKD3OXq769evY/Xq1di0aRO2bt1q9TGbNm3CmTNncOzYMVy7dg1hYWEYMGAAGjRooB4rJIRAtWqF6eCFF17Av/71LwwfPhzffPMNXnrpJaur7ESOpvf5+dprr2Hu3LmYPn06li5diokTJ6q7HwAgPT0dDRo0sHhOp06dMHr0aMTExCAgIABdunRRH5OWloZhw4Zh0aJFFl+iifRIz/Pz1VdfxYcffmhxW35+Pt59912sXbsWly5dKvX5a9euRVRUFGrWrAkAFvkTKMzFXl5eePTRR/HMM8/AZDIhODiY81YDLGwdbOzYsfjoo4+QmpqK7t27Iy0tDV988QWSkpKQm5uLdu3aWUxsAPD29sapU6cAAHv27FFv79y5M1auXIlmzZoBKFxRKqo8q1kpKSmYMmUKVq9ebZF4t27divnz52P9+vUlnrRmxIgRGDFiBM6dO4dJkyapE9m8Aubl5YWMjIwy/XyItKbXOWpNSkoKrl+/jgEDBuDq1as4d+4cPvvsMzz22GPFxufm5oY6deogNzcX+fn5kCQJ33zzDYYOHYotW7ao26eAf+Zuo0aNLL6YE2lNr/MzKysLHh4ecHFxQb169eDp6QkPDw/UqVMHJ06cQOvWrbF+/Xp8/vnnxV5vxowZmDFjBg4cOIC33noLLi4uyMjIwJAhQ/Daa6+hV69eFfthETmYXufn8ePH1U7xuXPnMH36dLz88svq4tGtW7dw8OBBzJs3Tz0PRVHLly9Xj6MFCs95MX36dDz99NM4duwYGjRogGrVqqFatWr4+OOPARSeWPX2XY7kAIJUCQkJAoBISEiw23tcuXJFeHp6irffflsIIURBQYEYPny4CAoKEhMnThTdu3cXf//9tzh58qSIjo4WQghx6NAh0a1bNzFw4EAxY8YM8eijjwohhEhOThb9+vUTJpNJmEwmsWHDhgqPKzIyUrRt21ZERkaKyMhIsWbNGiGEED4+PqJLly7q7bt27RJCCPHUU0+JixcvCiGEGDdunJAkSQwcOFAcP35cCCFERkaGuO+++0RERIQIDAwU3377rfpZoqOjRf369UVYWJj44IMPKjzmsnBETMkxHBVLvc5RWZZFdHS0qFmzpoiOjhbfffddsfvN7yuEEGPGjBFCCJGXlycefvhhERISIgIDA8V7772nfq6nnnpKhIWFiejoaHHq1CkhhBAHDhwQoaGhIjIyUoSEhIjk5OQKj/lOOD+dS1XOoY888oiIjIwUYWFhYuLEiSInJ0cIIURiYqIIDQ0VwcHB4s0331Qfb56fQgjRt29fYTKZxIgRI9S8OmfOHNGoUSM197722mvqZ2EOpYqoyvOzKD8/v2K3FR2PEJbfcS9fvixat24t8vPzLZ6zcOFCERISIkJDQ8W+ffuEEEIcPHhQREZGiqioKPHss8+KvLw8m4y5JJyfxbkIcdvSSRWWmJiInj17IiEhAT169NB6OGQDjKnzYCydD2PqXBhP58OYOg/G0vkwpsXxrMhERERERERkaCxsiYiIiIiIyNBY2BIREREREZGh8azIVqSkpGg9BLIRxtL5MKbOg7F0Toyr82AsnQ9j6jwYy+JY2BbRsGFDeHp64qGHHtJ6KGRDnp6e6sXuybg4P50T56fz4Bx1TpyjzoHz0zlxflriWZFvc+rUKVy+fFnrYdjEo48+Ci8vL7z99ttlevyff/6JUaNG4dNPP3Wq6+Y1bNgQrVq10noYZAPOND93796Nxx9/HN9++y38/f3L9JyZM2ciPT0dixcvtvPoHIfz07k40xydNGkSvLy88NZbb5Xp8cyhpHfOND+ZQwtxflpiYeukMjMzUb9+fbz77ruYMWNGmZ5TUFCAxo0bY9q0aZg3b56dR0hUtb3yyiv49NNPceHCBbi6lu10Bx988IGamGvWrGnnERJVXcyhRPrGHErW8ORRTmrnzp3Izc2FJEllfo6rqysiIyOhKIrdxkVEhRRFQWRkZJkTMgBIkoScnBzs3LnTjiMjIuZQIn1jDiVrWNg6KVmW0bBhQ3Tq1KlczzOZTIiPj0dmZqadRkZEmZmZ2LVrF0wmU7me16lTJzRs2BCyLNtpZEQEMIcS6RlzKJWEha2TUhQFkiTBxcWlXM+TJAm5ublczSKyox07dpS7GwSwI0TkKMyhRPrFHEolYWHrhG7evIndu3eXeyUL+Gc1i5OeyH4URUGjRo3QsWPHcj/XZDJh165d7AgR2QlzKJG+MYdSSVjYOqGKrmQBgIuLCyRJ4jYNIjuSZblC3SDgn47Qjh077DAyImIOJdI35lAqCQtbJ6QoCho3bowOHTpU6PmSJGH37t24efOmjUdGROZuUEW+NANAx44d0ahRI3aEiOyEOZRIv5hDqTQsbJ1QZVaygMJtGlzNIrKP7du3Iy8vr0LbHAF2hIjsjTmUSL+YQ6k0LGydTEZGBvbs2VPhlSwA6NChAxo3bszVLCI7UBQFTZo0Qfv27Sv8GuwIEdkHcyiRvjGHUmlY2DqZyq5kAVzNIrKnynaDgMKOUF5eHrZv327DkRERcyiRvjGHUmlY2DoZ80pWu3btKvU6kiRhz549yMjIsNHIiMgW3SAAaN++PZo0acKOEJGNKYqCpk2bMocS6RBzKN0JC1snY4uVLOCf1SweI0RkO9u3b0d+fn6lukHAPx0hJmUi26ro9WtvxxxKZHvMoXQnLGydyI0bN7B3795KT3gAaNeuHZo0acKtVEQ2JMsymjZtioCAgEq/FjtCRLZ148YNm3SDAOZQIntgDqU7YWHrRMwrWbZIylzNIrI9W3WDgMKkzGOEiGyHOZRI35hD6U5Y2DoRWZbRrFkzm6xkAYVbqfbs2YMbN27Y5PWIqjJb7qgACjtCTZs2ZUeIyEaYQ4n0izmUyoKFrROx5UoWULialZ+fz9UsIhuIi4uzWTcIYEeIyNaYQ4n0izmUyoKFrZO4fv06EhISbLaSBQABAQFo1qwZJz2RDSiKgubNm6Nt27Y2e02TyYS9e/eyI0RUScyhRPrGHEplwcLWSdh6JQvgtfiIbMlWZywvytwRiouLs9lrElVFzKFE+sYcSmXBwtZJyLKM5s2bw9/f36avK0kSEhIScP36dZu+LlFVYu4G2fJLMwC0bduWHSEiGzB3g5hDifSHOZTKioWtk1AUBSaTyaYrWUDhNg2uZhFVzrZt21BQUGDTbY5AYUfIZDKxI0RUSbIsM4cS6RRzKJUVC1sncO3aNSQmJtp8JQsA/P390bx5c65mEVWCoii466674OfnZ/PXZkeIqHKYQ4n0jTmUyoqFrROw10oW8M9qFpMyUcXZa0cFUNgRKigoYEeIqILi4uKYQ4l0jDmUyoqFrRNQFAUtWrRAmzZt7PL65tWsa9eu2eX1iZyZPbtBAODn54e77rqLW6mIKkiWZeZQIp1iDqXyYGHrBOxxpriiuJpFVHH23FEBsCNEVFn27AYBzKFElcEcSuXBwtbg0tPT8ccff9htwgNAmzZt0KJFC65mEVWALMto2bIlWrdubbf3kCQJiYmJ7AgRlZM5h9qrGwQwhxJVBnMolQcLW4Pbtm0bhBB2Tcrma/FxNYuo/BRFseuOCqAwKRcUFGDbtm12ew8iZ2TuBjGHEukTcyiVBwtbg5NlGa1atbLrShZQuJXqjz/+QHp6ul3fh8iZpKWl2X1HBVDYEWrZsiU7QkTlxBxKpF/MoVReLGwNzhErWQBXs4gqwhE7KgB2hIgqijmUSL+YQ6m8WNga2NWrV7Fv3z67r2QBQOvWrdGqVStOeqJyUBQFPj4+du8GAewIEZVXWloacyiRjjGHUnmxsDUwR61kAf+sZnGbBlHZmc9Y7giSJEEIga1btzrk/YiMbuvWrcyhRDrGHErlxcLWwGRZho+PD3x9fR3yfpIkYd++fUhLS3PI+xEZ2dWrV7F//36HJWVfX192hIjKwdwNYg4l0h/mUKoIFrYGZr72nqOYTCauZhGVkSO7QcA/1+JjR4iobGRZZg4l0inmUKoIFrYGdfXqVSQlJTlswgOFq1k+Pj5czSIqA0VR4Ovr67BuEFDYEdq/fz+uXr3qsPckMiLmUCJ9Yw6limBha1CxsbEOXckyM5lMTMpEZeDoHRXAP8cI8cyrRKVzdDfIjDmUqGyYQ6kiWNgalKIoaN26NXx8fBz6vlzNIrqzK1euOPTYIDPz6ja3UhGVTpZl5lAinWIOpYpiYWtQjjxTXFE8axzRnZnnhxZzlB0hojvTohsEMIcSlQVzKFUUC1sDunz5MpKTkzVJyubriXE1i6hksiyjTZs2aNWqlcPf29wRunLlisPfm8gILl++7PDja82YQ4nujDmUKoqFrQFpuZJlfl+uZhGVTFEUTecnAHaEiErAHEqkb8yhVFEsbA1IlmX4+fmhZcuWmry/yWRCUlISV7OIrNByRwUAtGrVCm3atOEXZ6ISKIrCHEqkU8yhVBksbA1Iy5Us4J/VrNjYWM3GQKRX5nmh9RzlVkci67Q6R4UZcyhRyZhDqTJY2BrMpUuXcODAAc1WsgCgZcuW8PPz42oWkRWKosDf3x8tWrTQbAwmkwnJycm4fPmyZmMg0iPmUCJ9Yw6lymBhazDmlazIyEhNx8HVLCLrtO4GAewIEZVED90g8/szhxIVxxxKlcHC1mBkWdZ8JQsoXM06cOAALl26pOk4iPTk4sWLOHjwoKbdIABo0aIF/P392REiuo2iKGjbti3uuusuTcfBHEpUHHMoVRYLW4PR6tp7tzN3jHnWOKJ/mOeD1jsqAJ55lcgarc9RYcYcSlQccyhVFgtbA7l48SIOHTqki6RsXs3iViqif8iyrItuEFCYlNkRIvqHuRvEHEqkT8yhVFksbA3EvHKkh6QMFG6l4moW0T/0sqMC4DFCRLfTy/G1ZsyhRJaYQ6myWNgaiKIoCAgIQPPmzbUeCoDCSX/w4EFcvHhR66EQae7ChQu62VEBAHfddRfatm3LjhDR/5NlmTmUSKeYQ8kWWNgaiB7OFFcUV7OI/qG3bhDAjhBRUXrqBgHMoURFMYeSLbCwNYjz58/j8OHDukrKzZs3R0BAAFeziFC48NSuXTs0a9ZM66GoJEnCoUOHcOHCBa2HQqSp8+fPIyUlRVdfmplDif7BHEq2wMLWIPRy/drb8axxRIX0crbVotgRIirEHEqkb8yhZAssbA1ClmW0b99eVytZQOE2jZSUFK5mUZWmxx0VANCsWTO0a9eOX5ypylMUhTmUSKeYQ8lWWNgahB5XsoB/Vr856akqM//711s3CChcceZWR6rq9HaOCjPmUCLmULIdFrYGcPbsWRw5ckR3K1lA4WpW+/btmZSpSlMUBR06dEDTpk21HkoxJpMJhw8fxvnz57UeCpEmzp07xxxKpGPMoWQrLGwNQK/HBplxNYuqOr12gwB2hIj03A0CmEOJmEPJVljYGoAsy+jQoQOaNGmi9VCsMplMOHLkCM6dO6f1UIgc7uzZszh69Kguu0EA0LRpU3To0IFJmaosRVHQsWNH5lAiHWIOJVtiYWsAerv23u3Mq1k8axxVRXrfUQHwzKtUten1HBVmzKFUlTGHki2xsNW5M2fO4M8//9R1Um7SpAk6dOjArVRUJcmyjI4dO6Jx48ZaD6VEkiThyJEjOHv2rNZDIXIoczeIOZRIn5hDyZZY2Oqc3o8NMjOZTFzNoipJ7zsqAF6Lj6ou5lAifWMOJVtiYatziqKgU6dOul7JAgon/dGjR7maRVWKEXZUAEDjxo3RsWNHdoSoypFlmTmUSKeYQ8nWWNjqnJ7PFFcUzxpHVZFRukEAO0JUNRmhGwQwh1LVxBxKtsbCVsf+/vtvHD9+3BBJuXHjxujUqRMnPVUpiqKgc+fOaNSokdZDuSNJkvDnn3/izJkzWg+FyCFOnz6NY8eOGWJxmDmUqiLmULI1FrY6ZoQzxRXFa/FRVWOUHRUAO0JU9RipGwQwh1LVwxxKtsbCVsdkWUaXLl3QsGFDrYdSJiaTCceOHcPp06e1HgqR3RlpRwUANGrUCJ07d2ZSpipDURTmUCKdYg4le2Bhq2N6v/be7biaRVWJ+d95RESEtgMpB3aEqCoxUjcIYA6lqoU5lOyBha1OnTp1CidOnDDMShYANGzYEF26dGFSpipBURR07drVMN0goLAjdPz4cfz9999aD4XIrphDifSNOZTsgYWtThlxJQvgahZVHUbrBgH//D7hF2dydoqiwMXFhTmUSKeYQ8keWNjqlCzL6Nq1Kxo0aKD1UMrFZDLhxIkTOHXqlNZDIbKbv/76CydPnjRUNwgo7Ah17dqVSZmcnrkbxBxKpD/MoWQvLGx1yijX3rudeTXLfEZnImcUGxtryG4QUNgRYlImZ2e0c1SYMYdSVcAcSvbCwlaHUlNTkZqaasik3KBBA3Tt2pVbqcipmXdUeHt7az2UcpMkiR0hcmrmbhBzKJE+MYeSvbCw1SGjHhtkZjKZuJpFTs2oOyqAwjOvuri4cI6S02IOJdI35lCyFxa2OqQoCu6++25DrmQBhatZJ0+exF9//aX1UIhszsg7KgDA29ubHSFyarIsM4cS6RRzKNkTC1udEUIY8kxxRUVERHA1i5yW0btBADtC5NyM3A0CmEPJuTGHkj2xsNWZ1NRUnDp1ytBJ2dvbG3fffTcnPTklRVHQrVs3eHl5aT2UCpMkSV01J3Imqamp+Ouvvwy9OMwcSs6MOZTsiYWtzphXssLDw7UeSqXwWnzkjJxhRwXAjhA5L1mWmUOJdIo5lOyNha3OyLKM7t27G3olCyjcpvHXX39xNYucijPsqAAALy8vdOvWjUmZnI6iKMyhRDrFHEr2xsJWR4QQhr323u3Cw8Ph4uLCFWdyKrIsw9XV1fDdIOCfjpAQQuuhENmEs3SDAOZQck7MoWRvLGx15MSJE/j7778Nv5IFFK5mde/enatZ5FTM3aD69etrPZRKM5lMOHXqFDtC5DROnjzJHEqkY8yhZG8sbHVEURS4uroiLCxM66HYhCRJUBSFq1nkFJxpRwVQ2BFydXXlF2dyGuYc6gzdIIA5lJwLcyg5AgtbHTEfX+sMK1nAP6tZJ0+e1HooRJXmTDsqAKB+/fro3r07tzqS05BlGT169EC9evW0HopNMIeSM2EOJUdgYasT5pUsZ5nwABAWFgZXV1dOenIKzrajAuAxQuQ8nK0bBDCHknNhDiVHYGGrE8ePH8eZM2ecKimbV7O4TYOcgbN1g4DCpHz69GmcOHFC66EQVcrx48dx+vRp5lAinWIOJUdgYasTznSmuKJMJhOPESLDc8YdFQCPESLn4WzH15oxh5IzYA4lR2FhqxOKoqBnz56oW7eu1kOxKfNq1vHjx7UeClGFHTt2zOl2VABAvXr10KNHD251JMOTZZk5lEinmEPJUVjY6oAzXXvvdlzNImegKArc3Nyc6tggM3aEyOictRsEMIeSc2AOJUdhYasDf/75J86dO+eUSblu3bro2bMnkzIZmrPuqAAKO0JnzpxhR4gM69ixYzh79qxTLg4zh5IzYA4lR2FhqwPOvJIF8KxxZGzOvKMCKDzzqpubG7dSkWHJsswcSqRTzKHkSCxsdUCWZQQGBqJOnTpaD8UuTCYTzp49i2PHjmk9FKJyc+YdFQA7QmR8iqIwhxLpFHMoORILW40547X3bsfVLDIyczcoNDRU66HYDTtCZFTO3g0CmEPJ2JhDyZFY2GrsyJEjOH/+vFMn5Tp16iAwMJCrWWRIiqKgV69eTtsNAgo7QufOncOff/6p9VCIyuXo0aM4f/6803aDAOZQMjbmUHIkFrYac/bja824mkVGVBW6QQAQGhrKjhAZkizLqFatmlN3gwDmUDIm5lByNBa2GpNlGb169ULt2rW1HopdmUwmnD9/HkePHtV6KERlduTIEVy4cMGpu0FAYUeoV69e7AiR4Zi7QcyhRPrDHEqOxsJWQ8587b3bmVezOOnJSBRFQbVq1RASEqL1UOxOkiRei48MpSqco8KMOZSMiDmUHI2FrYYOHz6MixcvVomkXLt2bfTq1YvbNMhQqsqOCqAwKZ8/fx5HjhzReihEZXL48GFcuHCBOZRIp5hDydFY2GqoqhwbZGYymbiaRYZRlXZUAIUdoWrVqrEjRIZh7gYxhxLpD3MoaYGFrYYURUHv3r1Rq1YtrYfiEJIk4cKFCzh8+LDWQyG6o5SUlCqzowJgR4iMR5Zl5lAinWIOJS2wsNVIVTo2yIyrWWQkiqKgevXqVeLYIDN2hMgoqlo3CGAOJWNhDiUtsLDVyKFDh3Dp0qUqlZRr1aqF3r17MymTIVS1HRVAYUfo4sWL7AiR7qWkpODSpUtVanGYOZSMhDmUtMDCViNVcSUL4FnjyBiq4o4KAAgJCUH16tW5lYp0T5Zl5lAinWIOZQ7VCgtbjciyjD59+sDT01ProTiUyWTCxYsXkZKSovVQiEpUFXdUAOwIkXEoisIcSqRTzKGK1kOpsljYaqCgoACxsbFVbiUL4GoWGYO5GxQcHKz1UByOHSHSu4KCgirZDQKYQ8kYmEOZQ7XCwlYDBw8exOXLl6tkUvb09ESfPn24mkW6pigKgoKCqlw3CCjsCF26dAmHDh3SeihEVh06dAiXL1+uct0ggDmUjIE5lDlUKyxsNaAoCmrUqFElV7KAf1azCgoKtB4KUTFVuRsEAMHBwewIka7JsowaNWogKChI66FogjmU9Iw5lDlUSyxsNVBVj681kyQJly9f5moW6dLBgwdx5cqVKpuU2REivauqx9eaMYeSnjGHModqiYWtg5mPr62KW6jMgoODUaNGDU560qWqvqMCKNxKFRsby44Q6Q5zKHMo6RtzKHOolljYOtiBAwdw9erVKruSBfyzmsVtGqRHsiwjKCgINWvW1HoomjF3hA4ePKj1UIgsHDhwoEp3gwDmUNI35lDmUC2xsHUwWZbh7u5epVeyAK5mkT6xG1SIHSHSK0VRmEPBHEr6xBxaiDlUOyxsHcx8pjgPDw+th6IpSZJw5coVHDhwQOuhEKmSk5Or/I4KAKhZsyaCgoLYESLdMXeDmEOZQ0l/mEMLMYdqh4WtA1Xl69feLjg4GO7u7lzNIl0xd4Oq6tlWi2JHiPSG3aB/MIeSHjGH/oM5VBssbB0oKSkJaWlpTMoAPDw8uJpFuiPLMoKDg6t8Nwgo7AhdvXoVycnJWg+FCMA/OZSLw8yhpE/Mof9gDtUGC1sHMq9k9enTR+uh6IIkSVzNIt0oKCjA1q1b+aX5/wUFBbEjRLrCHGqJOZT0hDnUEnOoNljYOpAsywgJCeFK1v8zmUxIS0vjahbpAndUWPLw8EBwcDCTMumGoijMoUUwh5KeMIdaYg7VBgtbB8nPz+dK1m369OkDd3d3bqUiXZBlGR4eHuwGFcGOEOlFfn4+z1FxG+ZQ0hPm0OKYQx2Pha2D7N+/H+np6UzKRXh4eCAkJISrWaQL5m6Qu7u71kPRDXNHKCkpSeuhUBWXlJSE9PR0doOKYA4lPWEOLY451PFY2DqIoihcybLCvJqVn5+v9VCoCmM3yLrevXvDw8ODHSHSnLkb1Lt3b62HoivMoaQHzKHWMYc6HgtbBzEfX8uVLEuSJCE9PZ2rWaSp/fv349q1a0zKt+ExQqQX7AZZxxxKesAcah1zqOOxsHUA8/G13EJVXJ8+fbiaRZqTZRk1a9ZkN8gK87X42BEirTCHlow5lPSAObRkzKGOxcLWAfbt24fr169zJcsKd3d3HiNEmmM3qGSSJOHatWvYv3+/1kOhKmrfvn3sBpWAOZT0gDm0ZMyhjsXC1gG4klU6k8mErVu3cjWLNMFuUOl69+6NmjVr8oszaUZRFObQUjCHkpaYQ0vHHOpYLGwdQFEUhIaGokaNGloPRZfMq1n79u3TeihUBf3xxx/cUVEKc0eIWx1JK7IsM4eWgjmUtMQcWjrmUMdiYWtneXl5vH7tHXA1i7SkKAo8PT3Rq1cvrYeiW+wIkVby8vKwbds2doNKwRxKWmIOvTPmUMdhYWtnf/zxB27cuMGkXIoaNWogNDSUq1mkCXaD7kySJFy/fh1//PGH1kOhKobdoDtjDiUtMYfeGXOo47CwtTPzSlZgYKDWQ9E1SZKwbds25OXlaT0UqkLM3SB+aS5dr1694OnpyY4QORxzaNkwh5IWmEPLhjnUcVjY2pksywgLC+NK1h2YTCZcv36dxwiRQ3FHRdmYO0JMyuRoiqIwh5YBcyhpgTm0bJhDHYeFrR1xJavsAgMD4enpya1U5FCyLKNWrVrsBpWBJEnYunUrO0LkMMyhZcccSlpgDi075lDHYGFrRwkJCcjIyGBSLoMaNWogLCyMq1nkUOZuUPXq1bUeiu6ZTCbcuHGDxwiRwyQmJrIbVEbMoaQF5tCyYw51DBa2dqQoCleyyoHHCJEj5ebmshtUDuwIkaOZu0E9e/bUeiiGwBxKjsQcWj7MoY7BwtaOzMfXciWrbCRJwo0bN5CYmKj1UKgKSExM5I6KcqhevTo7QuRQ7AaVD3MoORJzaPkwhzoGC1s7yc3NRVxcHLdQlUNgYCBq1arF1SxyCFmWUbt2bXaDysFkMmHbtm3Izc3Veijk5MzdIObQsmMOJUdiDi0/5lD7Y2FrJwkJCbh58yZXssqBq1nkSOwGlZ8kScjIyGBHiOyOObT8mEPJkZhDy4851P5Y2NoJV7IqxmQyIS4ujqtZZFfcUVExPXv2RO3atfnFmexOURTm0ApgDiVHYA6tGOZQ+2NhayeKoiA8PBzVqlXTeiiGYl7NSkhI0Hoo5MT27t3LblAFmDtC3OpI9ibLMnNoBTCHkiMwh1YMc6j9sbC1g5ycHMTFxXHCV0CPHj24mkV2pygK6tSpgx49emg9FMORJIkdIbIrczeIObT8mEPJEZhDK4451L5Y2NrB3r17kZmZyS0aFVC9enWEh4dzNYvsit2gijOZTLh58yb27t2r9VDISe3Zs4c5tIKYQ8kRmEMrjjnUvljY2oF5Jat79+5aD8WQuJpF9pSTk4Pt27ezG1RBPXr0QJ06ddgRIrthDq0c5lCyJ+bQymEOtS8WtnYgyzIiIiK4klVBJpMJmZmZ2LNnj9ZDISfEblDlVKtWjR0hsivm0MphDiV7Yg6tHOZQ+2Jha2Ncyaq87t27czWL7EZRFNStWxfdunXTeiiGJUkStm/fjpycHK2HQk6GObTymEPJnphDK4851H5Y2NrY7t27cevWLSblSqhWrRoiIiKYlMkuFEVhN6iSzB0hHiNEtrZnzx7cunWL3aBKYA4le2IOrTzmUPthYWtj5pUsHhtUOVzNInvIzs5mN8gGunXrhrp163IrFdmcLMvsBtkAcyjZA3OobTCH2g8LWxszHxvk5uam9VAMTZIkHiNENmfuBjEpV475GCF2hMjWzN0g5tDKYQ4le2AOtQ3mUPthYWtD2dnZ2LFjB7dQ2UD37t25mkU2J8sy6tWrx26QDZhMJmzfvh3Z2dlaD4WchLkbxBxaecyhZA/MobbDHGofLGxtaPfu3cjKyuJKlg24ubnxGCGyOXaDbEeSJNy6dYsdIbIZ5lDbYQ4le2AOtR3mUPtgYWtDsiyjfv36uPvuu7UeilPgahbZEndU2Fa3bt1Qr149doTIZphDbYs5lGyJOdS2mEPtg4WtDXEly7YkSUJWVhZ2796t9VDICezatYvdIBtiR4hsjTnUtphDyZaYQ22LOdQ+WNjaSFZWFnbs2MEJb0N333036tevz0lPNqEoCurXr4+uXbtqPRSnIUkSduzYwY4QVVpWVhZ27tzJHGpDzKFkS8yhtsccanssbG1k165dyM7O5hYNGzKvZnGbBtmCLMuIjIxkN8iGTCYTsrKysGvXLq2HQgZn7gYxh9oOcyjZEnOo7TGH2h4LWxtRFAVeXl5cybIxSZKwc+dOZGVlaT0UMjB2g+yja9eu7AiRTTCH2gdzKNkCc6h9MIfaHgtbGzGvZLm68kdqS1zNIluIj4/njgo7cHNzQ2RkJDtCVGnMofbBHEq2wBxqH8yhtscMYgNZWVmIj4/nSpYddO3aFV5eXlzNokpRFAXe3t7o0qWL1kNxOuwIUWUxh9oPcyjZAnOo/TCH2hYLWxvYuXMnsrOzmZTtwNXVFZGRkUzKVCmKorAbZCcmkwnZ2dnsCFGFsRtkP8yhZAvMofbDHGpb/BdqA1zJsi+uZlFl3Lp1i8cG2VGXLl3g5eXFrVRUYbIsw9vbG507d9Z6KE6JOZQqgznUvphDbYuFrQ3w2CD7kiQJ2dnZiI+P13ooZEDx8fHIyclhUrYTdoSostgNsi/mUKoM5lD7Yg61LWaRSsrMzMSuXbu4hcqOunTpAm9vb65mUYXIsowGDRqwG2RHJpMJO3fuxK1bt7QeChnMrVu3EB8fzxxqR8yhVBnMofbHHGo7LGwriStZ9sfVLKoMdoPsT5Ik5OTksCNE5bZz507mUDtjDqXKYA61P+ZQ2+G/0kqSZRkNGzZEp06dtB6KUzOZTIiPj+dqFpVLZmYmu0EO0LlzZzRo0IAdISo35lDHYA6limAOdQzmUNthYVtJXMlyDPNq1s6dO7UeChnIzp07kZuby26QnbEjRBXFHOoYzKFUEcyhjsEcajvMJJVgPr6WE97+OnXqhAYNGnDSU7koioKGDRuiY8eOWg/F6UmShF27diEzM1ProZBBMIc6DnMoVQRzqOMwh9oGC9tK2LFjB3Jzc7lFwwFcXV0hSRK3aVC5yLIMSZLYDXIAk8nEjhCVC3Oo4zCHUkUwhzoOc6ht8F9qJSiKgkaNGnEly0G4mkXlcfPmTezevZvdIAfp2LEjGjZsyI4QlRlzqGMxh1J5MIc6FnOobbCwrQTzSpaLi4vWQ6kSTCYTcnNzsWPHDq2HQgbAbpBjsSNE5cUc6ljMoVQezKGOxRxqGyxsK4grWY7H1SwqD3M3qEOHDloPpcqQJAm7d+/GzZs3tR4K6RxzqOMxh1J5MIc6HnNo5bGwraDt27cjLy+PSdmBXFxcuJpFZcZukONJksSOEJUJc6jjMYdSeTCHOh5zaOWxsK0gRVHQuHFjrmQ5mMlk4moW3VFGRgb27NnDLVQO1rFjRzRq1IgdIboj5lBtMIdSWTCHaoM5tPJY2FYQV7K0IUkS8vLyuJpFpdqxYwe7QRowd4SYlOlOFEVhDtUAcyiVBXOoNphDK4+FbQVwJUs7HTp0QOPGjbmVikolyzKaNGmC9u3baz2UKsfcEcrIyNB6KKRTzKHaYQ6lsmAO1Q5zaOWwsK2A7du3Iz8/nytZGuBqFpUFu0HaYUeI7oTH12qHOZTKgjlUO8yhlcPCtgJkWUbTpk3Rrl07rYdSJZlMJuzZs4erWWTVjRs32A3SUPv27dGkSRN2hKhEzKHaYg6l0jCHaos5tHJY2FYAV7K0ZV7N2r59u9ZDIR3ijgptsSNEd8Icqi3mUCoNc6i2mEMrh4VtOd24cQN79+7lhNdQu3bt0LRpU65mkVXmblBAQIDWQ6myJEnCnj17cOPGDa2HQjrDHKo95lAqDXOo9phDK46FbTnFxcUhPz+fWzQ0xNUsKo2iKDCZTOwGachkMiE/P58dISqGOVR7zKFUGuZQ7TGHVhwL23JSFAXNmjVD27ZttR5KlSZJEvbu3cvVLLJw/fp1JCQksBuksYCAADRt2pRfnKkY5lB9YA4la5hD9YE5tOJY2JaTLMtcydIB82pWXFyc1kMhHWE3SB9cXFxgMpm41ZGKYQ7VB+ZQsoY5VB+YQyuOhW05cCVLP9q2bYtmzZpxNYssKIqC5s2bw9/fX+uhVHmSJCEhIQHXr1/XeiikE8yh+sEcStYwh+oHc2jFsLAth23btqGgoIBJWQfMxwhxNYuKkmWZZ1vVCUmS2BEiC8yh+sEcStYwh+oHc2jFsLAtB0VRcNddd3ElSydMJhNXs0h17do1JCYmcguVTrRt2xbNmzdnR4hUzKH6whxKRTGH6gtzaMWwsC0HrmTpiyRJKCgowLZt27QeCukAu0H6wo4Q3Y45VF+YQ6ko5lB9YQ6tGBa2ZZSeno4//viDK1k64u/vj7vuuourWQSgsBvUokUL+Pn5aT0U+n8mkwmJiYm4du2a1kMhjTGH6g9zKBXFHKo/zKHlx8K2jOLi4riSpTO8Fh8VpSgKu0E6Y+4I8RghYg7VH+ZQKoo5VH+YQ8uPhe0d/PXXX9i3bx9kWUaLFi3Qpk0brYdERZhXsy5fvowNGzZoPRzSwIYNG3Dp0iV2g3TIz88PLVq0gCzL2LdvH06dOqX1kMjBiubQli1bMofqDHMoMYfqF3No+bGwvYNFixZhxIgRUBQFkZGR+Pzzz7klQCc2bNiAJk2aoKCgAG+88QYGDhyI7OxsrYdFDpSdnY2BAwdi4cKFKCgoQJMmTfjlTCeuXbuGzz//HBEREVAUBcOHD8eiRYu0HhY5WNEcGhERwRyqI8yhxByqX8yhFcPC9g66dOmCY8eOITExEWfPnsW0adNw4cIFrYdFAFauXInx48ejSZMm+P3339GuXTu4u7trPSxyIHd3dwQEBOD3339H06ZNMW7cOKxcuVLrYRGACxcuYNq0aTh37hwSExNx/PhxdOnSRethkYMxh+oXcygxh+oXc2jFsLC9g6CgIPXPsizjk08+QUBAgIYjIrP3338fTZs2RWZmJg4fPmwRK6o6goKCcPjwYWRkZKBp06Z4//33tR4SAQgICMDHH38MWZYhhAAAztEqiDlUv5hDCWAO1Svm0IphYXsHPj4+8PT0BAA899xzmDx5ssYjIrP69evjl19+AVC4nebuu+/WeESkhbvvvhvZ2dlwdXXFL7/8gvr162s9JPp/U6ZMwcyZMwEAtWrVQqtWrTQeETkac6h+MYcSwByqZ8yh5ecizMsAVKLw8HDcunULu3fvhqsr1wL0Zt26dRg5ciS2bduGnj17aj0ccrCEhASEh4fj+++/x8CBA7UeDt2moKAAvXr1gqenJ6+XWUUxh+obc2jVxhyqb8yh5cPCloiIiIiIiAyNS6dERERERERkaCxsiYiIiIiIyNCq2eqFTp06hcuXL9vq5aiSGjZsWOpB5oyXczl37hwAoFmzZhqPhGyB8XQ+2dnZvJSKEymaY5lPjcscR8bQuTCHOp871TVmNilsT506hQ4dOiAzM9MWL0c24OnpiZSUFKv/CBgv5+Pq6oqCggKth0E2wng6Hzc3N+Tn52s9DLIRc44FwHxqYJ6enti8eTNiYmIYQyfCHOp8SqtrirJJYXv58mVkZmZixYoV6NChgy1ekiohJSUFDz30EC5fvmz1HwDj5VzM8WY8nQPj6XzWr1+PV155hTF1EkVzLADmU4Myx/HEiROMoRNhDnU+d6prirLZVmSgcNWyR48etnxJsiPGy7kwns6F8XQeRTt7jKlzYmyNjzF0Loxn1cSTRxEREREREZGhVYnCdu7cuVixYoXWwygTIQSeffZZhIeHIyYmBqdPny72mPT0dAwZMgTh4eGYMGECcnJyNBip/RgpXkePHkWPHj1Qu3ZtxMXFqbfPnTsXffr0QWhoKJ588klYu1x0UlISwsLCEBISgnfeeQdA4fHPkiSp/1WvXh1paWnYuXMnQkJCEBkZiaioKJw4ccJhn7GynCGeZZlzw4YNQ2RkJAIDA/Hvf//b4r4rV67Ay8tL/TmkpqbCy8tLjfPPP/9s3w9mQ1U5nhcuXEBISAgkSUKfPn3w+++/Wzxny5YtcHFxsfp7W6+cIZ5Hjx6FJEkwmUx47rnnrD63devW6nybN28egMJ8O3nyZEREROCee+7BmTNnAADz5s1TH+vr64v/+Z//sf+HsxMjxRcAvvnmG0RHR8NkMuG9994rdn9Jsf7555/Rp08fhIeH45tvvgEA7N69W41jUFAQGjRo4LDPYUtGimFJc9Ts1Vdfhb+/v9XnSpKE4OBgSJKEadOmASicozNmzEBwcDB69eql/hwWLVqkxrZ9+/YYNmyY/T6UjRkpnmYl5bYlS5agevXqVp8zZcoUBAUFISgoCAsXLlRvHzRoEEJDQ9GnTx98+eWX6u3m77i9evXCypUrKzxWQxe2jjoRR9H3EUJYLVJKe055/Pbbb7h8+TK2bduG559/HrNmzSr2mDfffBNDhgzBtm3b0Lx5c3z11VcVei9Hc8Z4tWjRAr///juGDx9ucfuYMWOwa9cubN++HefPn8eWLVuKPXf69On44osvEBcXhzVr1uD48eNo1aoVFEWBoihYsGAB+vbtCy8vL/j4+OC3335DbGwsZs6ciTlz5lRovLZUleJZljm3cuVKxMbGIj4+Hh9//DFu3Lih3jd//nyEhYVZPL5nz55qrAcPHlyh8doS42nJWjwbNmyIbdu2QVEUrFy5Ei+++KL6+IKCArz99tsIDAys0FhtrSrF8/nnn8fChQshyzLS0tIgy3Kx57q5uanz7dVXXwUArFmzBm5ubti6dStmz56Nl19+GUDhl2/zYwMCAvDggw9WaLz25IzxTUlJwdq1a/Hbb79BlmU89dRTxR5jLdYFBQV47rnnsHnzZmzZsgXvvvsubty4gd69e6txfPLJJ3UXR2eMYUlzFADOnDmDP//8s9Tnf//991AUBR9//DEA4ODBgzh48CB27txpMXenTJmixjYiIkIXsXXGeAIl57bMzEz89NNPJR7zOnPmTMTHx2PHjh3qd1wAePfdd7F9+3bExsbiX//6F7KysgAAiqIgNjYWv//+u/q7uCLsVtimpqYiNDQUJpMJkiQhLS0NFy5cQHR0NPr164dp06YhJiYGADBhwgR1ZUdRFEyaNAkA8N577yEqKgqBgYGYPXu2+to+Pj6YPn06+vXrh2vXrmHkyJGIioqCyWTC0aNHAQCrVq1Ct27dMHjwYCQkJJQ4ztzcXEyePBlRUVEICwvDzp071TE9/vjjuO+++7Bx40b4+/tj1qxZiI6OxunTpzFq1ChERkYiNDRUff3bn1MRsixj6NChAIC+ffti9+7dpT7m/vvvt5rEy4vxqli8PD094eXlVez2gIAA9c/u7u5wc3OzuD87OxvXr19H27Zt4erqikGDBiE2NtbiMcuWLcO4ceMAAM2bN0etWrVKfL3bMZ62jWdZ5lyNGjUAFP6yb9WqFTw9PQEAx44dw5UrV9CzZ0+Lx+/fvx/h4eF46KGHcOnSpVLHxXjqI55ubm7q3EtPT0fXrl3Vx69YsQKDBw9W52lpGE/bxvPo0aPql67AwECr8RRCwGQyoX///khMTCzT886ePYvTp0+jd+/e5Ron41ux+H7//feoV68e7rnnHgwcOBBHjhwp9hhrMbt8+TIaNWqEOnXqoHr16mjTpg327Nlj8byi+bQsGEPbzlGgsFNZ9OdwOxcXF4waNQomkwmbN28GUPjdp0aNGsjNzcWNGzfg7e1t8ZysrCxs2rTpjovDjGfF4gmUnNvefvttPPHEE3BxcbH6PPP3YFdXV1SrVk3Nnebba9SoAVdXV/X55px748YNdOrUqcLjhbCBhIQEAUAkJCSoty1ZskTMmTNH/XtBQYF46qmnxIoVK9T7o6OjhRBCPPzww2Lbtm1CCCFkWRaPPvqoEEKIjIwM9blBQUEiNTVVCCFEtWrVxMmTJ4UQQrzwwgti5cqVQgghDhw4IIYMGSLy8/NFQECASE9PF/n5+SIyMlIsX77c6tg/+eQT8cYbbwghhLh48aIICgpSxzR//nz1cT4+PiIuLk4IIcR//vMf9bMdPnxY9OnTx+pzinr88cdFZGSkxX8DBw4s9rjJkycLWZbVv7dt27bYYwICAkRBQYEQQoijR4+KAQMGWNxvLR53up/xslTWeJkV/ZkUJcuykCRJ5OfnW9x+5swZERkZqf590aJF4s0331T/np2dLVq1aiUyMzMtnpeRkSGCg4PFvn371NsYT/vH805zzmzw4MGiUaNG4tVXX1VvGz16tDh27JiYM2eO+nPIysoS169fF0IUxmL8+PHq4xlPfcfzxIkTIjQ0VDRs2FCsXbtWCCFEZmamiI6OFrm5uSIyMlL8/fffFq+zYsUKi5gynpYqG88RI0aItWvXioKCAjF06FAxffr0Ys+5dOmSEEKI5ORk0aFDByGEEL/88osYPny4KCgoEKtWrRK1atWyeM6bb74p/vWvfxV7raJzlPPVdvGdMmWKuP/++0V+fr7YvXu3RY40sxZr82c+ffq0SE9PF61atRLff/+9+pxz586Jdu3aFXstc+xun59CMIa3q+wc3b9/v5g0aZIQQgg/Pz+rzzHP0dOnT4t27dqJ9PR0UVBQIB5//HHh6+srGjVqJH766SeL53z33Xfqz9uMc9J28Swpt507d04MHjxYCFFyPM2WL18uRo8eXez2+fPni5deesnivcLDw4W3t7dYtGiRxWPvVNcUZdOzIhc1cuRILFiwAGPHjoWPjw/mzp2LI0eO4IknngBQuJf666+/BgCLal8Uaan/+OOPWLx4MVxcXHDy5EmcPn0aPj4+aNGiBXx9fQEAycnJiI2Nxaeffqq+1qVLl9C4cWPUq1cPABAUFFTiOJOTk7Fjxw78+uuvAApX4c2Kbh10c3NDSEgIAODw4cPqfv527drhypUrVp9TlHlbxZ00aNAAaWlp6s+iWrXiIfL29kZ6ejq8vLyQnp5uk+NGGC9LZY1XaRITE/HSSy9h3bp1cHW13BxhjqHZ7XFcu3YtoqKiULNmTfW27OxsDBs2DC+99BLuvvvuUt+b8bRU2XiWdc6tWbMGN2/eVLdGmR/r5+dn8Th3d3e4u7sDAMaOHYt333231PdnPC1pFc+OHTuidevWiIuLw4kTJxAVFYVBgwbhP//5D6ZOnWr197U1jKelysbznXfewYwZM/Dee++hTZs2aN68ebHHNGzYEADQuXNn1K9fH5cuXcKAAQOwY8cOSJKEXr16oX379hbPWbFiBdasWVPu8TC+lsoaX29vb3Tv3h2urq7o1auXesxzUdZi7erqis8++wwPPfQQ6tSpg27duln8G/jqq68wevToMo3BjDG0VNk5+uqrr+LDDz8s9THmOXrXXXehR48eOHr0KK5evYozZ87g2LFjuHbtGsLCwjBgwAA1fy5btgwzZ8684/sznpbKGs+Sctuduu9mGzZswLJly4qdR2Tx4sU4ePCgxbHGNWvWxNatW3H58mX06tULI0eOVH9m5WG3wtbV1RULFiwAAEycOBEbN25EQEAAdu3aBT8/P8THx6uP9fb2xqlTpwDAYvvIK6+8gsOHD8Pd3R2hoaHqP7Ci2zA7deqE4OBgdVtZTk4O3NzccOHCBVy/fh116tTB7t270blzZ6vj7NSpE/z9/fHMM8+ozzcr+j4uLi7qP/b27dtj27ZtiImJwZEjRyy+FJW0RXTatGk4dOiQxW21a9fGunXrLG6TJAnffPMNhg4dii1btlg9Xst8spmHH34YP//8MyRJsvqe5cF4WSprvEqSkpKCKVOmYPXq1Va/NHt4eKBOnTo4ceIEWrdujfXr1+Pzzz9X71++fDmefPJJ9e95eXkYNWoURo8ejfvuu++O7894WqpsPO805woKCpCfn4/q1aujZs2a6n+bN29GUlIS7rnnHhw7dgy1atWCn58fOnbsqP7ClmXZYuu6NYynJa3imZ2drX6hqlu3LmrXrg2g8Diw2NhYLF68GElJSRg3bhzWrVtX4rZkxtNSZePZsmVLrFmzBkIIjB8/Xv28ZtnZ2RBCwMPDA+fOncOlS5fUcc2fPx8AsHHjRnUrHADs27cP9erVU7+wlgfja6ms8Y2OjlZP/HTixIli206BkmNtPpHQjRs3MGzYMPTq1Ut9zooVK/DDDz9YHVtJGENLlZ2jx48fV7f0njt3DtOnT8dHH32k3i+EwI0bN1C3bl1kZGRg//798PX1xdWrV+Ht7Q03NzfUqVMHubm56vGily5dQkpKCiIiIu74/oynpbLGs6TcduzYMbzyyisACuM5fPjwYnNs69atmD9/PtavXw8PDw/19m+//RarVq3C6tWr1aZPTk4OqlWrBldXV9SqVQseHh4WzykPuxW269atwwcffAA3Nze4u7sjLCwMgYGBGDNmDL744guLoE6aNAljxozB119/jdatW6u3P/DAAwgNDUX79u3VLxC3mzVrFqZOnYoPPvgAANC/f3+88MILeOONNxAREYGWLVta/eVoNnnyZMyYMQMmkwkA0L179zt2TyZPnowJEyYgIiICeXl56nuXpqyrI/369cOGDRsQHh4Od3d3fPHFFwCAX3/9FZcuXcK4cePw/PPP4+GHH8aSJUvg6+ur/uOqDMbLUlnjlZaWhhEjRuDQoUM4ePAg+vfvj/nz5+Pxxx/H9evX8dBDDwEAnn32WQwePBgLFy7EwIED0aVLF7z//vsYP348CgoKMHToUPVMgVeuXEFSUpLFl+0VK1bg999/R1paGr744gt07Nix1DEynpYqG8+S5pw5nr6+vuqCQ3Z2NkaNGoXWrVvjySefVBco5s6dC39/fwQHB2P16tWYN28e6tSpA3d3dyxatKjUcTGelrSKZ1xcHF5++WW4ubkhNzdXPWtr0VVnSZKwfPnyUo+1ZTwtVTaeX3/9tbowOGHCBHTo0AEA8PTTT2PWrFnIysrCkCFDUKtWLeTl5eGTTz6Bq6sr0tLSMHToULi5ucHHx8eio7R8+XL193d5Mb6Wyhrf6OhobNq0CZIkIScnR33tot9/Sor1888/jz179qBatWpYuHCheqbW5ORkeHp6Fts1cyeMoaXKztHk5GT1Mf7+/mpRa/6d2759e5hMJtSsWRM5OTmYPXs2GjVqhJiYGKxcuRKhoaHIycnBE088oZ6/4ptvvsHIkSNLPMazKMbTUlnjWVJuMx8DDRTG01zULl26FHfddRf69u2L8ePHo27duhgyZAiAwpM2duvWDePGjUO3bt3Qt29fAIVd95ycHEycOBFubm7Izs7GnDlz1EXkcrvjZuUyKM/eZ7OTJ0+q+9nJtipyjO2dMF76xXg6F8bT+Vg7hq80jKe+3ekY2zthfPWhtGNs74Qx1C/OSeeji2Ns9Wj8+PHq9gKgcLvBTz/9pOGIqDSMl3NhPJ0L4+lcGE/nxvgaH2PoXBhP+9CssPX19bVoZTvCsmXLHPp+zoTxci6Mp3NhPJ0L4+ncGF/jYwydC+PpPOx2HVsjMR/baG+fffYZevfujYiICIwePRrZ2dkOeV9n5qjYxcXFoUuXLvDw8MDp06fV22/duoWpU6ciJiYGkiSp192TJAnBwcGQJAnTpk1zyBidjaNiCwD//ve/ERMTA5PJhG+//RZA4ckVzCckadq0aZmOW6GSOSqeS5cuRevWrdXYmVfE//77b8TExCA8PLxMZ9GkO3PkHAWAJUuWqMdOAsDrr7+OiIgIhIaGYvz48cjNzXXoeJyZ1rGlytP6u+0PP/yADh06VPgkQFQyrWOrZyxsHSg6Ohrx8fHYunUrWrZsaXFQNulbly5dsHPnzmKnaZ83bx4GDx6MzZs3Q1EUtGvXTr3v+++/h6IoNrl0ENnPxo0bcf78eWzevBmyLOPBBx8EUHhyBUVRoCgKvL29MXz4cI1HSmX16KOPqrFr1aoVAOCFF17Ayy+/jG3btuHs2bOQZVnjUVJ5ZGZm4qefflLjCQDPPfcctm7diu3btwMANm3apNXwqBKsxZaMo6TvtpIk4Y8//kCLFi00HiFVlBHrFl0XtqmpqQgNDYXJZIIkSUhLS8PWrVthMpkQHh6OwYMH49atWwAKJ9AzzzyD/v37Q5IkfP311+jfvz+6deuGo0ePqo+ZPn06+vbti+joaFy8eNHi/XJzczF58mRERUUhLCwMO3fuBFB4OYDevXsjKirqjmcnK42/v796amt3d/cST8PtDJwtdvXq1bN6FrxNmzZBlmVIkoRnn30WeXl5AApPxT5q1CiYTCaHb2+xN2eL7bfffov8/HzExMRgxIgROH/+vMX98fHxaNmyJZo1a1bh99AzZ4snULjFKywsDLNmzUJBQQGAwutKR0VFAQDuv/9+py5snTGmb7/9Np544gmLM6CaL89TUFCAvLw8h3cZtVBVYuvMnC2GJX23bdiwYZXr1laV2Oqao89WVR5LliwRc+bMUf9eUFAgMjIy1L8///zzYunSpUIIISIjI8WqVauEEEI8+uij4umnnxZCCLF8+XLxwgsvqI/58ssv1deeOXOmEEIIPz8/IYQQn3zyiXjjjTeEEEJcvHhRBAUFCSGEaN++vfq++fn5xcY5dOhQERkZafHfo48+WuLnOnTokOjZs6fFZ7Ele5wVubycNXaRkZHi77//Vv9eo0YN8dNPPwkhhJgxY4ZYsmSJEEKIS5cuCSGEOH36tGjXrp1IT08v/QdWCY6IZ1HOFtt+/fqJJ598UgghxPfffy/GjRtncf+0adPE8uXLy/rjqTTGs3LxvHr1qsjLyxN5eXliwoQJ4r///a8QQoi2bduqj9m0aZOYNm1aeX5MlVKRs65WhrPF9Ny5c2Lw4MEW72n26quvCj8/P3HvvfeKmzdvlvVHVCmVPStyZVSl2NpbZc6KXBnOFkOzkr7bahVXR8WzqKoWW0dxmrMijxw5EgsWLMDYsWPh4+ODuXPn4uDBg5g9ezays7Nx4cIF1K1bV318z549AQAtWrRQr1nWokULxMbGqo8JCQlR/79q1SqL90tOTsaOHTvw66+/AgDS09MBAB9++CGmT5+OvLw8TJ06FWFhYRbPK89ZzFJTU/Hwww/ju+++K/U6h0bnjLGzxtvbG/feey8AYODAgVi/fj2AwpVKALjrrrvQo0cPHD161OKC8UbmbLEtGsNBgwZh3rx56n05OTn45Zdf8Oabb5bptYzI2eLp5eWl/nn06NFYs2YNHnnkEXXV2fyeRS9i72ycLaZz587F7Nmzrd732muvYe7cuZg+fTqWLl3q9Oc0qEqxdVbOFkOg6ny3vRPGVnu6LmxdXV2xYMECAMDEiROxceNGLF68GK+99hqCg4Px/PPPQwihPr7oNpaify76mPj4ePj7+yM+Pt7ieEgA6NSpE/z9/fHMM88AKPxSCwDBwcGIjo7GqVOnMHToUCQkJFg874EHHsDVq1ctbvP398fixYstbjt//jxGjBiBJUuWoE2bNuX+eRiJs8WuJNHR0di7dy/CwsKwa9cuBAQEQAiBGzduoG7dusjIyMD+/fvh6+tbptczAmeLrTmG99xzjxpDs/Xr1yMiIsIQv8wrytnimZ6ejvr16wMAtmzZor5/9+7dERsbi8jISPz888945JFHyv5DMhhni+mxY8fwyiuvAADOnTuH4cOH44cffkBWVhY8PDzg4uKCevXqwdPTs3w/KAOqKrF1Zs4Ww6r03fZOGFvt6bqwXbduHT744AO4ubnB3d0dYWFhyMjIwKOPPor27dujbt26FisfZZGYmIgvv/wS+fn5WLlypcV9kydPxowZM2AymQAUfhF69913MXToUGRlZSErKwvTp08v9pplXfl48cUXceHCBTz55JMAgDFjxmDKlCnlGr9ROFvsUlJS8MQTT2D//v0YPXo0HnzwQcyYMQMLFy7EpEmTkJWVhcaNG2PZsmXIy8uDyWRCzZo1kZOTg9mzZ6NRo0bl+qx65myxHT9+PKZOnQqTyQQhhMUv9uXLl+Oxxx4r12cxGmeL51tvvYXNmzejWrVqaNu2rdqBX7hwISZOnIicnBwEBgaq7++MnC2mRc9T4O/vrxY+06ZNw4kTJ5Cfn4+AgACL3RbOqqrE1pk5WwxL+m6rKArmz5+Ps2fPIiYmBo899hhGjBhRrs9lNFUltrrm6L3PWrr9+EhnpYdjbG2tqsSuIowYz6IYW0uMp/Nx9DF8tsaYWtLyGFtbq8qx1eoYW1uryjG0xuhzsijGtlB5YqrrsyITERERERER3YmutyLbmqIoWg+BKoixc16MrXNhPJ0PY+q8GFvjYwydF2Nbfk7TsU1NTUVMTIzD3m/u3Lno0KEDJEmCJEnqAdtJSUkICwtDSEgI3nnnHavPXbFiBYKDgxEcHOzU11IsCy3i1qdPH4SGhuLJJ59UD9CfMmUKgoKCEBQUhIULF1p97l9//YX7778fUVFR6ll0AaBmzZrqv4NFixYBAH799VeEhoZCkiRERUXh77//tv+H0wFHx/OHH35Ahw4dil0r78qVKxgzZgyio6MhSRKuX79ucb8QAjNmzEBwcDB69eqlXnR80aJFaizbt2+PYcOGASj5301VoJeYDho0CKGhoejTpw++/PJLq88t7XfrkSNHUL16dcTFxQEA1qxZgz59+iAyMhIDBw7ElStX7POBdMbR8Xz99dcRERGB0NBQjB8/Hrm5uQDKFk+gcC57eXmpcxQoPClYTEwMTCYTXnrpJQCFXwCbNWumzt/du3fb94PphF7mp1lERAQmTZpU7PYLFy4gJCQEkiShT58++P333wGUPA+XLl2K1q1bq/E8deqU/T6Ujjg6nmavvvqqxXWgb926halTpyImJgaSJOHIkSMWj09PT0d0dDTCwsIQFBSEDRs2WNx/+7zNycnByJEjER4ejt69e+O3336z/4fSIb18592wYQN69eqF8PBwjB49Wv29XJS177aG+D3r6L3P9nLy5EkRHR3tsPebM2eO1WtbhoWFiaNHj4r8/HwRHh4ujh07ZnF/WlqauPvuu8WtW7fEpUuXxN133231GlOVYaRjbB0dtyNHjqh/HjFihNi8ebPF7fn5+SIoKKhY3IQQYsCAAeL06dPFbrd2jbbs7Gz1z0WvPWYPVTmely5dErdu3SoWg3Hjxol9+/aV+Lzk5GQhSZIQQoiMjAzRunXrYo+ZPHmy+Pbbb4UQJf+7sQc9xVMI/cTUHAPzfbdu3bK4/06/W0eNGiViYmLEtm3bhBCFnysnJ0cIIcRHH30kZs+ebbfPpKdj+Bwdz6K/C8eNGyfWrVsnhLhzPM2efvppMWjQIDXfXr58WQwYMEBkZWVZPE6W5VKvw2hLejrGVi/zUwghfvrpJ3HfffdZjYP52tJCCHH8+HERGBgohCh5Hn7xxRfiX//6l70+hhBCn8fYOjqeQghx+vRpMWrUKIuYvvjii+KXX34p8TmZmZnqsZ+XLl0SAQEBFvffPm/Xrl0rJkyYIIQQ4tSpU6JHjx62/hgqredkafTynbdnz54iNTVVCFF4Dd2ff/652HOtzXFH/p4tymmOsZ05cyZ+/PFHAEBeXh66du2K3NxcvPzyy4iKikKPHj3wySefFHvehAkT1FV5RVHU1cMDBw4gJiYGUVFRGDFiBDIzMys1vjfffBNhYWH497//DQDIzs7G9evX0bZtW7i6umLQoEEW16ICgF27diEyMhIeHh5o2LAhmjdvjtTU1EqNQ2/0HLeil3Jxd3eHm5ubxe2urq6oVq2aervZqVOncPPmTfzP//wPIiMjsWTJEvW+8+fPIzIyEvfffz9OnDgBAKhRo4Z6f3p6Orp27VrhMWtNz/Fs2LBhsc5Bfn4+kpKS8OGHHyIyMhKvv/56sec1b94cNWrUQG5uLm7cuAFvb2+L+7OysrBp0yYMHjwYQMn/bozKaDEF/olBjRo14OrqanFpBKD0361bt26Fr68v7rrrLvXxvr6+qF69OgDjx1TP8TT/LiwoKEBeXp7aFbpTPIHCS8FcuXJFvdYjAPzyyy9o1KgR7r//fsTExCA+Pl69b9OmTQgLC8O0adMqnd+1pOd4ljQ/8/Ly8Mknn1g9AysAuLm5qXOsaE4sbR4uW7YMYWFhmDVrFgoKCio8Zq3pOZ6A9WsJb9q0CbIsQ5IkPPvss8jLy7O4v2bNmmjRooX656Lz19q89fPzQ3Z2NoQQSEtLQ+PGjSs1Zj3Rc3xL+u7SqVMnpKenQwiB9PR0q1fusPbdFtD/71ldF7YTJkxQtyht3LgRUVFRqF69OmbNmoUtW7Zg586d+Pe//221hW7NtGnT8N///hdbtmyxaK2b5eTkqO31ov9Zu3i4+dIvmzdvxq+//gpZltWtF2ZeXl7FtreV5TFGp+e4mSmKgtOnTyMiIsLi9hUrVqBly5bFrjt75swZJCQk4M0338TGjRvx+eef488//wRQuLUkNjYWTzzxBCZOnKg+Z9WqVQgMDMQnn3yC4ODgMn1WPTJCPIu6ePEikpKSMHXqVMiyjN27d2PLli0Wj/Hy8oKfnx8CAgLQtWtXzJo1y+L+tWvXIiYmptgXuJL+3RiN0WJa1BtvvIHhw4fD3d3d4vaSfrcKIbBgwQK88MILVl/v/Pnz+PDDD/V/CYNS6D2ec+bMQUBAANLT09GyZUuL+0qKJ1C4PXLOnDkWt505cwYpKSlYtWoVlixZov7O7dmzJ44ePYq4uDg0bNgQ//u//1umz6pHeo+nNZ9++ikeeughq3E0O3nyJMLCwtC/f38MHTrU4r7b5+GQIUOQkpKC2NhYnD17ttTt6nqn53gmJSUBKCx0ijpw4ABCQkKgKApyc3OxbNmyEsfz9NNP49lnn1X/bm3etmnTBpmZmWjfvj369u1b7H4j03N8zW7/7vLQQw/hnnvuQfv27QEAQUFBxZ5j7butEX7P6vrkUZ07d8alS5dw8eJFfPnll+qxNJ988glWr14NNzc3XLx4ERcvXrR4XkkXOT548CDGjx8PoLC7KkmSxfNq1KhR5gO1GzRoAADw8PDAsGHDsHfvXgQHByM9PV19THp6uvq4os9LS0sr9TFGp+e4AYXXBHvppZewbt06uLr+s7azYcMGLFu2DD///HOx53h7e6NTp05o1aoVAECSJCQnJ6Nt27Zo2LAhACA6OtrimqdDhw7F0KFD8c033+Dll1/Gd999V+Yx6one43k7b29vNGnSRF0tvvfee7Fv3z5ERUWpj9m0aRPOnDmDY8eO4dq1awgLC8OAAQPUL2XLli3DzJkzLV63pH83RmS0mJotXrwYBw8etDje0qyk363ffPMNYmJiUL9+/WLPSUtLw7Bhw7Bo0SI0b9680uPTit7j+dprr2Hu3LmYPn06li5dimnTpgEoPZ47duxAgwYN4OfnZ3G7t7c3TCYTPDw84OPjg7p16+Lq1asWuy4eeughPPPMM2Uen97oPZ63u379OlavXo1NmzZh69atJT6udevWiIuLw4kTJxAVFYVBgwYBsD4Piy5SjR49GmvWrMEjjzxS4TFqSc/xfPXVV/Hhhx8Wu93b21s9l8jAgQOxfv16q89/5ZVX4O3trS5IlDRvly5dihYtWmD16tVITU3F0KFD8ccff5RpjHqn5/gC1r+7TJ06FfHx8fDx8cHUqVPx7bff4sEHH7R4nrXvtnXq1FHv1+vvWV0XtgAwduxYfPTRR0hNTUX37t2RlpaGL774AklJScjNzUW7du2KncjF29tbPdHAnj171Ns7d+6MlStXolmzZgCgnvDJLCcnB/369Ss2hrCwMMyfP9/itvT0dNSvXx9CCMiyjNGjR8PDwwN16tTBiRMn0Lp1a6xfvx6ff/65xfP69OmDl156CdnZ2bh58ybOnDlTrDvoDPQat5SUFEyZMgWrV6+2WFDYunUr5s+fj/Xr11vdZuXv74/s7Gxcu3YNdevWxd69ezF27FhkZGSgZs2acHNzw4EDB9QvV1lZWerreHl5wdPTs8w/Oz3SazytcXd3R7t27ZCamgpfX1/s2rVLPQnU7eNzc3NDnTp1kJubi/z8fADApUuXkJKSYtGVLenfjZEZKaYA8O2332LVqlVYvXq11YWFkn63fvbZZ9i7dy82b96M5ORkHD58GF9//TUaN26MIUOG4LXXXkOvXr3KNAY902s8zb8LXVxcUK9ePfV34Z3iuXfvXiQlJeGee+7BsWPHUKtWLfj5+cFkMuHHH3+EEALXrl1DWloavLy8cO3aNdSrVw9A4cml2rVrV94foa7oNZ7WpKSk4Pr16xgwYACuXr2Kc+fO4bPPPrNY6M3OzlYXDuvWrYvatWsDADIyMqzOQ/N3LIDxBOwXz+PHj6tbYM+dO4fp06fjo48+QnR0NPbu3YuwsDDs2rXLYkur2VtvvYWzZ89aHJpV0rwFoG539fLyQkZGRtl+cAah1/iW9N2lWrVq6uJRo0aNLJpyAEr8bmuI37OOPqi3vK5cuSI8PT3F22+/LYQQoqCgQAwfPlwEBQWJiRMniu7du4u///7b4oDsQ4cOiW7duomBAweKGTNmqAc6Jycni379+gmTySRMJpPYsGFDhcf18MMPi6CgINGnTx+LEwMlJiaK0NBQERwcLN5880319jFjxqh//vLLL0VQUJAICgqyy0lo9HDyKL3GLTIyUrRt21ZERkaKyMhIsWbNGiGEED4+PqJLly7q7bt27RJCCPHUU0+JixcvCiGE2LJliwgLCxNBQUFi3rx5Qgghdu3aJbp16ybCw8NFeHi4SExMFEII8f7774vIyEghSZLo37+/epC+PVTleMqyLKKjo0XNmjVFdHS0+O6774QQQiQlJQlJkkRoaKiYOnWqKCgoEEL8Mw/z8vLEww8/LEJCQkRgYKB477331Nd8//33xUsvvWTxPiX9u7EHR534wkgxzc7OFtWrVxe9evVSY/DXX38JIcr3u/Xhhx9WTx41Z84c0ahRI/X1XnvttQqP+U4ccXIavcbzkUceEZGRkSIsLExMnDhR5OTklDmeZrefrPHdd98V4eHhonfv3urJqD766CMRGBgowsPDxZAhQ8SVK1cqPOY7ccTJo/Qaz5J+5xa9v+jJZczx3LZtmwgPD1d/L5vnZ0nz8OWXXxa9e/cWISEh4uGHH7Y4CZmtOPLkUXqNZ1FFTxb0999/i/79+4vIyEgxYsQI9eRu5u9EJ06cEC4uLiIsLEyN3e0xKjpvMzIyxH333SciIiJEYGCgemJGe9Di5FF6jW9J312+++479ffloEGDxI0bN4QQ/8zXkr7bOvL3bFHliamLEJW/bkViYiJ69uyJhIQE9OjRo7IvR5V0p3gwXs6F8XQujKfz+eqrr/DQQw8xpk6i6BwFwPlqUOY4rlixgvPTiTCHOp/yxNTYB4oRERERERFRlcfCloiIiIiIiAyNhS0REREREREZGgtbIiIiIiIiMjSbXu4nJSXFli9HFVTWODBezsEcR8bTOTCezufkyZMAGFNnYS2OjK3x3B4zxtA5MIc6n/LE0iZnRT516hQ6dOiAzMzMyr4U2YinpydSUlLQqlWrYvcxXs7H1dUVBQUFWg+DbITxdD5ubm7qtZLJ+Mw5FgDzqYF5enpi8+bNiImJYQydCHOo8ymtrinKJoUtUFgsXb582RYvRTbQsGHDUoPPeDmXc+fOAYB6QW8yNsbT+WRnZ8Pd3V3rYZCNFM2xzKfGZY4jY+hcmEOdz53qGjObFbZEREREREREWuDJo4iIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGj/BxWf2d82Buy4AAAAAElFTkSuQmCC", "text/plain": [ "
" ] @@ -1041,7 +1041,7 @@ }, { "cell_type": "markdown", - "id": "817eff2c", + "id": "074e230c", "metadata": {}, "source": [ " \n", @@ -1050,7 +1050,7 @@ }, { "cell_type": "markdown", - "id": "3e4b98e4", + "id": "aa0e4849", "metadata": {}, "source": [ "## Bagging and Random Forests" @@ -1058,7 +1058,7 @@ }, { "cell_type": "markdown", - "id": "878b4a89", + "id": "b17ca840", "metadata": {}, "source": [ "Here we apply bagging and random forests to the `Boston` data, using\n", @@ -1071,13 +1071,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "c82eb98b", + "id": "275feef7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:16.834792Z", - "iopub.status.busy": "2023-08-07T00:19:16.834681Z", - "iopub.status.idle": "2023-08-07T00:19:16.995212Z", - "shell.execute_reply": "2023-08-07T00:19:16.994915Z" + "iopub.execute_input": "2023-08-21T02:29:47.051447Z", + "iopub.status.busy": "2023-08-21T02:29:47.051323Z", + "iopub.status.idle": "2023-08-21T02:29:47.211049Z", + "shell.execute_reply": "2023-08-21T02:29:47.210740Z" }, "lines_to_next_cell": 2 }, @@ -1103,7 +1103,7 @@ }, { "cell_type": "markdown", - "id": "06cf548a", + "id": "06e84da6", "metadata": {}, "source": [ "The argument `max_features` indicates that all 12 predictors should\n", @@ -1115,13 +1115,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "7d592004", + "id": "01dbbef3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:16.996857Z", - "iopub.status.busy": "2023-08-07T00:19:16.996747Z", - "iopub.status.idle": "2023-08-07T00:19:17.088613Z", - "shell.execute_reply": "2023-08-07T00:19:17.088204Z" + "iopub.execute_input": "2023-08-21T02:29:47.212716Z", + "iopub.status.busy": "2023-08-21T02:29:47.212598Z", + "iopub.status.idle": "2023-08-21T02:29:47.305563Z", + "shell.execute_reply": "2023-08-21T02:29:47.305155Z" } }, "outputs": [ @@ -1155,7 +1155,7 @@ }, { "cell_type": "markdown", - "id": "f38f7522", + "id": "885a3843", "metadata": {}, "source": [ "The test set MSE associated with the bagged regression tree is\n", @@ -1168,13 +1168,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "892aa556", + "id": "b75cc90e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:17.090496Z", - "iopub.status.busy": "2023-08-07T00:19:17.090359Z", - "iopub.status.idle": "2023-08-07T00:19:17.888986Z", - "shell.execute_reply": "2023-08-07T00:19:17.888683Z" + "iopub.execute_input": "2023-08-21T02:29:47.307949Z", + "iopub.status.busy": "2023-08-21T02:29:47.307809Z", + "iopub.status.idle": "2023-08-21T02:29:48.296516Z", + "shell.execute_reply": "2023-08-21T02:29:48.296211Z" }, "lines_to_next_cell": 0 }, @@ -1200,7 +1200,7 @@ }, { "cell_type": "markdown", - "id": "6c2a8868", + "id": "37d5fe61", "metadata": {}, "source": [ "There is not much change. Bagging and random forests cannot overfit by\n", @@ -1217,13 +1217,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "35636d87", + "id": "bf9a5ed4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:17.890621Z", - "iopub.status.busy": "2023-08-07T00:19:17.890501Z", - "iopub.status.idle": "2023-08-07T00:19:17.998521Z", - "shell.execute_reply": "2023-08-07T00:19:17.998227Z" + "iopub.execute_input": "2023-08-21T02:29:48.298333Z", + "iopub.status.busy": "2023-08-21T02:29:48.298184Z", + "iopub.status.idle": "2023-08-21T02:29:48.412949Z", + "shell.execute_reply": "2023-08-21T02:29:48.412594Z" }, "lines_to_next_cell": 2 }, @@ -1248,7 +1248,7 @@ }, { "cell_type": "markdown", - "id": "a6edace1", + "id": "eb2c3917", "metadata": {}, "source": [ "The test set MSE is 20.04;\n", @@ -1260,13 +1260,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "b5a0869f", + "id": "71316e9a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:18.000185Z", - "iopub.status.busy": "2023-08-07T00:19:18.000073Z", - "iopub.status.idle": "2023-08-07T00:19:18.006477Z", - "shell.execute_reply": "2023-08-07T00:19:18.006110Z" + "iopub.execute_input": "2023-08-21T02:29:48.414933Z", + "iopub.status.busy": "2023-08-21T02:29:48.414785Z", + "iopub.status.idle": "2023-08-21T02:29:48.422251Z", + "shell.execute_reply": "2023-08-21T02:29:48.421922Z" }, "lines_to_next_cell": 0 }, @@ -1378,7 +1378,7 @@ }, { "cell_type": "markdown", - "id": "4acf5bdc", + "id": "b3cd6a28", "metadata": {}, "source": [ " This\n", @@ -1394,7 +1394,7 @@ }, { "cell_type": "markdown", - "id": "9a07b01d", + "id": "270fc0fb", "metadata": {}, "source": [ "## Boosting" @@ -1402,7 +1402,7 @@ }, { "cell_type": "markdown", - "id": "f2b3dde2", + "id": "5bd28754", "metadata": {}, "source": [ "Here we use `GradientBoostingRegressor()` from `sklearn.ensemble`\n", @@ -1418,13 +1418,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "844fce26", + "id": "0bcc5ff1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:18.008149Z", - "iopub.status.busy": "2023-08-07T00:19:18.008037Z", - "iopub.status.idle": "2023-08-07T00:19:21.749934Z", - "shell.execute_reply": "2023-08-07T00:19:21.749526Z" + "iopub.execute_input": "2023-08-21T02:29:48.424109Z", + "iopub.status.busy": "2023-08-21T02:29:48.423996Z", + "iopub.status.idle": "2023-08-21T02:29:52.311829Z", + "shell.execute_reply": "2023-08-21T02:29:52.311492Z" } }, "outputs": [ @@ -1455,7 +1455,7 @@ }, { "cell_type": "markdown", - "id": "15f35667", + "id": "4e8553ec", "metadata": {}, "source": [ "We can see how the training error decreases with the `train_score_` attribute.\n", @@ -1466,13 +1466,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "eae8687c", + "id": "060f47eb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:21.751640Z", - "iopub.status.busy": "2023-08-07T00:19:21.751529Z", - "iopub.status.idle": "2023-08-07T00:19:22.217916Z", - "shell.execute_reply": "2023-08-07T00:19:22.217584Z" + "iopub.execute_input": "2023-08-21T02:29:52.313643Z", + "iopub.status.busy": "2023-08-21T02:29:52.313522Z", + "iopub.status.idle": "2023-08-21T02:29:52.788145Z", + "shell.execute_reply": "2023-08-21T02:29:52.787823Z" } }, "outputs": [ @@ -1507,7 +1507,7 @@ }, { "cell_type": "markdown", - "id": "e0499e04", + "id": "3ebd0944", "metadata": {}, "source": [ "We now use the boosted model to predict `medv` on the test set:" @@ -1516,13 +1516,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "46947fc6", + "id": "43505dad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:22.219939Z", - "iopub.status.busy": "2023-08-07T00:19:22.219785Z", - "iopub.status.idle": "2023-08-07T00:19:22.232084Z", - "shell.execute_reply": "2023-08-07T00:19:22.231779Z" + "iopub.execute_input": "2023-08-21T02:29:52.789753Z", + "iopub.status.busy": "2023-08-21T02:29:52.789632Z", + "iopub.status.idle": "2023-08-21T02:29:52.801529Z", + "shell.execute_reply": "2023-08-21T02:29:52.801234Z" } }, "outputs": [ @@ -1544,7 +1544,7 @@ }, { "cell_type": "markdown", - "id": "07d3ccd4", + "id": "7f76bb89", "metadata": {}, "source": [ " The test MSE obtained is 14.48,\n", @@ -1557,13 +1557,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "f67fdfec", + "id": "c0a03126", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:22.233692Z", - "iopub.status.busy": "2023-08-07T00:19:22.233584Z", - "iopub.status.idle": "2023-08-07T00:19:24.675084Z", - "shell.execute_reply": "2023-08-07T00:19:24.674626Z" + "iopub.execute_input": "2023-08-21T02:29:52.803315Z", + "iopub.status.busy": "2023-08-21T02:29:52.803174Z", + "iopub.status.idle": "2023-08-21T02:29:55.330726Z", + "shell.execute_reply": "2023-08-21T02:29:55.330425Z" }, "lines_to_next_cell": 2 }, @@ -1592,7 +1592,7 @@ }, { "cell_type": "markdown", - "id": "f767c57a", + "id": "cbcad91c", "metadata": {}, "source": [ "In this case, using $\\lambda=0.2$ leads to a almost the same test MSE\n", @@ -1603,7 +1603,7 @@ }, { "cell_type": "markdown", - "id": "37cf0481", + "id": "8d561719", "metadata": {}, "source": [ "## Bayesian Additive Regression Trees" @@ -1611,7 +1611,7 @@ }, { "cell_type": "markdown", - "id": "c3a3419a", + "id": "f68c0d8f", "metadata": {}, "source": [ "In this section we demonstrate a `Python` implementation of BART found in the\n", @@ -1624,13 +1624,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "06b92877", + "id": "58f6e11f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:24.676878Z", - "iopub.status.busy": "2023-08-07T00:19:24.676742Z", - "iopub.status.idle": "2023-08-07T00:19:26.416295Z", - "shell.execute_reply": "2023-08-07T00:19:26.415996Z" + "iopub.execute_input": "2023-08-21T02:29:55.332677Z", + "iopub.status.busy": "2023-08-21T02:29:55.332550Z", + "iopub.status.idle": "2023-08-21T02:29:56.797204Z", + "shell.execute_reply": "2023-08-21T02:29:56.796899Z" }, "lines_to_next_cell": 2 }, @@ -1656,7 +1656,7 @@ }, { "cell_type": "markdown", - "id": "d6d7ad70", + "id": "26e4d574", "metadata": {}, "source": [ "On this data set, with this split into test and training, we see that the test error of BART is similar to that of random forest." @@ -1665,13 +1665,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "c09cb099", + "id": "a5b1296f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:26.418098Z", - "iopub.status.busy": "2023-08-07T00:19:26.417976Z", - "iopub.status.idle": "2023-08-07T00:19:26.718709Z", - "shell.execute_reply": "2023-08-07T00:19:26.718412Z" + "iopub.execute_input": "2023-08-21T02:29:56.798892Z", + "iopub.status.busy": "2023-08-21T02:29:56.798779Z", + "iopub.status.idle": "2023-08-21T02:29:57.098494Z", + "shell.execute_reply": "2023-08-21T02:29:57.098140Z" }, "lines_to_next_cell": 2 }, @@ -1694,7 +1694,7 @@ }, { "cell_type": "markdown", - "id": "bb48211a", + "id": "92a60f97", "metadata": {}, "source": [ "We can check how many times each variable appeared in the collection of trees.\n", @@ -1704,13 +1704,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "f9d6b394", + "id": "36c52755", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:26.720402Z", - "iopub.status.busy": "2023-08-07T00:19:26.720254Z", - "iopub.status.idle": "2023-08-07T00:19:26.723384Z", - "shell.execute_reply": "2023-08-07T00:19:26.723106Z" + "iopub.execute_input": "2023-08-21T02:29:57.100444Z", + "iopub.status.busy": "2023-08-21T02:29:57.100310Z", + "iopub.status.idle": "2023-08-21T02:29:57.103577Z", + "shell.execute_reply": "2023-08-21T02:29:57.103213Z" }, "lines_to_next_cell": 0 }, @@ -1746,7 +1746,7 @@ }, { "cell_type": "markdown", - "id": "0aac2d50", + "id": "ab69e5b5", "metadata": {}, "source": [ " \n", diff --git a/Ch09-svm-lab.ipynb b/Ch09-svm-lab.ipynb index c6863a2..bf1cc7c 100644 --- a/Ch09-svm-lab.ipynb +++ b/Ch09-svm-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "d45c6d2b", + "id": "30b873f3", "metadata": {}, "source": [ "\n", @@ -12,7 +12,7 @@ }, { "cell_type": "markdown", - "id": "94d1e03c", + "id": "3e06bca8", "metadata": {}, "source": [ "# Lab: Support Vector Machines\n", @@ -25,13 +25,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "eeaa5be0", + "id": "3973b95f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:27.947789Z", - "iopub.status.busy": "2023-08-07T00:19:27.947634Z", - "iopub.status.idle": "2023-08-07T00:19:28.991210Z", - "shell.execute_reply": "2023-08-07T00:19:28.990616Z" + "iopub.execute_input": "2023-08-21T02:29:58.477582Z", + "iopub.status.busy": "2023-08-21T02:29:58.477467Z", + "iopub.status.idle": "2023-08-21T02:29:59.432527Z", + "shell.execute_reply": "2023-08-21T02:29:59.432225Z" }, "lines_to_next_cell": 0 }, @@ -45,7 +45,7 @@ }, { "cell_type": "markdown", - "id": "26ebd377", + "id": "631b7d3d", "metadata": {}, "source": [ "We also collect the new imports\n", @@ -55,13 +55,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "41a59634", + "id": "0161e55e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:28.993557Z", - "iopub.status.busy": "2023-08-07T00:19:28.993245Z", - "iopub.status.idle": "2023-08-07T00:19:29.028199Z", - "shell.execute_reply": "2023-08-07T00:19:29.027857Z" + "iopub.execute_input": "2023-08-21T02:29:59.434432Z", + "iopub.status.busy": "2023-08-21T02:29:59.434258Z", + "iopub.status.idle": "2023-08-21T02:29:59.466972Z", + "shell.execute_reply": "2023-08-21T02:29:59.466647Z" } }, "outputs": [], @@ -73,7 +73,7 @@ }, { "cell_type": "markdown", - "id": "f197b846", + "id": "b397af05", "metadata": {}, "source": [ "We will use the function `RocCurveDisplay.from_estimator()` to\n", @@ -83,13 +83,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "c9a175d7", + "id": "7661b056", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.030225Z", - "iopub.status.busy": "2023-08-07T00:19:29.030097Z", - "iopub.status.idle": "2023-08-07T00:19:29.032026Z", - "shell.execute_reply": "2023-08-07T00:19:29.031756Z" + "iopub.execute_input": "2023-08-21T02:29:59.469128Z", + "iopub.status.busy": "2023-08-21T02:29:59.468999Z", + "iopub.status.idle": "2023-08-21T02:29:59.470961Z", + "shell.execute_reply": "2023-08-21T02:29:59.470667Z" } }, "outputs": [], @@ -99,7 +99,7 @@ }, { "cell_type": "markdown", - "id": "f666c212", + "id": "38115984", "metadata": {}, "source": [ "## Support Vector Classifier\n", @@ -123,13 +123,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "a7216b47", + "id": "46e9ab84", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.033695Z", - "iopub.status.busy": "2023-08-07T00:19:29.033581Z", - "iopub.status.idle": "2023-08-07T00:19:29.207161Z", - "shell.execute_reply": "2023-08-07T00:19:29.205980Z" + "iopub.execute_input": "2023-08-21T02:29:59.472867Z", + "iopub.status.busy": "2023-08-21T02:29:59.472726Z", + "iopub.status.idle": "2023-08-21T02:29:59.583508Z", + "shell.execute_reply": "2023-08-21T02:29:59.583126Z" }, "lines_to_next_cell": 0 }, @@ -159,7 +159,7 @@ }, { "cell_type": "markdown", - "id": "7b4aff06", + "id": "a9766d18", "metadata": {}, "source": [ "They are not. We now fit the classifier." @@ -168,13 +168,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "ed329198", + "id": "605ffdc0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.211951Z", - "iopub.status.busy": "2023-08-07T00:19:29.211403Z", - "iopub.status.idle": "2023-08-07T00:19:29.220643Z", - "shell.execute_reply": "2023-08-07T00:19:29.219858Z" + "iopub.execute_input": "2023-08-21T02:29:59.585485Z", + "iopub.status.busy": "2023-08-21T02:29:59.585317Z", + "iopub.status.idle": "2023-08-21T02:29:59.590274Z", + "shell.execute_reply": "2023-08-21T02:29:59.589979Z" }, "lines_to_next_cell": 2 }, @@ -200,7 +200,7 @@ }, { "cell_type": "markdown", - "id": "5e6b4c79", + "id": "16215b77", "metadata": {}, "source": [ "The support vector classifier with two features can\n", @@ -212,13 +212,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "95494b8b", + "id": "302a49a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.224179Z", - "iopub.status.busy": "2023-08-07T00:19:29.223775Z", - "iopub.status.idle": "2023-08-07T00:19:29.400927Z", - "shell.execute_reply": "2023-08-07T00:19:29.400620Z" + "iopub.execute_input": "2023-08-21T02:29:59.591976Z", + "iopub.status.busy": "2023-08-21T02:29:59.591865Z", + "iopub.status.idle": "2023-08-21T02:29:59.734225Z", + "shell.execute_reply": "2023-08-21T02:29:59.733936Z" } }, "outputs": [ @@ -243,7 +243,7 @@ }, { "cell_type": "markdown", - "id": "f6ce1246", + "id": "6010e865", "metadata": {}, "source": [ "The decision\n", @@ -257,13 +257,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "98c2236f", + "id": "cc1d6a13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.402894Z", - "iopub.status.busy": "2023-08-07T00:19:29.402744Z", - "iopub.status.idle": "2023-08-07T00:19:29.544636Z", - "shell.execute_reply": "2023-08-07T00:19:29.544249Z" + "iopub.execute_input": "2023-08-21T02:29:59.735943Z", + "iopub.status.busy": "2023-08-21T02:29:59.735816Z", + "iopub.status.idle": "2023-08-21T02:29:59.878335Z", + "shell.execute_reply": "2023-08-21T02:29:59.878032Z" }, "lines_to_next_cell": 0 }, @@ -291,7 +291,7 @@ }, { "cell_type": "markdown", - "id": "906f4bb8", + "id": "301d764d", "metadata": {}, "source": [ "With a smaller value of the cost parameter, we\n", @@ -303,13 +303,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "b498f594", + "id": "6133c846", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.546722Z", - "iopub.status.busy": "2023-08-07T00:19:29.546549Z", - "iopub.status.idle": "2023-08-07T00:19:29.549088Z", - "shell.execute_reply": "2023-08-07T00:19:29.548814Z" + "iopub.execute_input": "2023-08-21T02:29:59.880078Z", + "iopub.status.busy": "2023-08-21T02:29:59.879965Z", + "iopub.status.idle": "2023-08-21T02:29:59.882347Z", + "shell.execute_reply": "2023-08-21T02:29:59.882070Z" }, "lines_to_next_cell": 2 }, @@ -331,7 +331,7 @@ }, { "cell_type": "markdown", - "id": "90a0ee53", + "id": "0693b3eb", "metadata": {}, "source": [ "Since the support vector machine is an estimator in `sklearn`, we\n", @@ -341,13 +341,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "b65e80d6", + "id": "9adb3793", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.550593Z", - "iopub.status.busy": "2023-08-07T00:19:29.550485Z", - "iopub.status.idle": "2023-08-07T00:19:29.578952Z", - "shell.execute_reply": "2023-08-07T00:19:29.578657Z" + "iopub.execute_input": "2023-08-21T02:29:59.883852Z", + "iopub.status.busy": "2023-08-21T02:29:59.883749Z", + "iopub.status.idle": "2023-08-21T02:29:59.910535Z", + "shell.execute_reply": "2023-08-21T02:29:59.910272Z" }, "lines_to_next_cell": 2 }, @@ -378,7 +378,7 @@ }, { "cell_type": "markdown", - "id": "d390528c", + "id": "611e76a6", "metadata": {}, "source": [ "We can easily access the cross-validation errors for each of these models\n", @@ -389,13 +389,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "bba8fad7", + "id": "d3ab343e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.580977Z", - "iopub.status.busy": "2023-08-07T00:19:29.580845Z", - "iopub.status.idle": "2023-08-07T00:19:29.583558Z", - "shell.execute_reply": "2023-08-07T00:19:29.583239Z" + "iopub.execute_input": "2023-08-21T02:29:59.912005Z", + "iopub.status.busy": "2023-08-21T02:29:59.911925Z", + "iopub.status.idle": "2023-08-21T02:29:59.914189Z", + "shell.execute_reply": "2023-08-21T02:29:59.913943Z" }, "lines_to_next_cell": 0 }, @@ -417,7 +417,7 @@ }, { "cell_type": "markdown", - "id": "703e2d43", + "id": "41d85a2a", "metadata": {}, "source": [ "We see that `C=1` results in the highest cross-validation\n", @@ -430,13 +430,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "ad64269d", + "id": "6aba117e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.585087Z", - "iopub.status.busy": "2023-08-07T00:19:29.584981Z", - "iopub.status.idle": "2023-08-07T00:19:29.586995Z", - "shell.execute_reply": "2023-08-07T00:19:29.586714Z" + "iopub.execute_input": "2023-08-21T02:29:59.915563Z", + "iopub.status.busy": "2023-08-21T02:29:59.915487Z", + "iopub.status.idle": "2023-08-21T02:29:59.917323Z", + "shell.execute_reply": "2023-08-21T02:29:59.917078Z" } }, "outputs": [], @@ -448,7 +448,7 @@ }, { "cell_type": "markdown", - "id": "db41f5e2", + "id": "ddbda9de", "metadata": {}, "source": [ "Now we predict the class labels of these test observations. Here we\n", @@ -459,13 +459,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "5107fca1", + "id": "dbe7d737", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.588685Z", - "iopub.status.busy": "2023-08-07T00:19:29.588519Z", - "iopub.status.idle": "2023-08-07T00:19:29.595768Z", - "shell.execute_reply": "2023-08-07T00:19:29.595341Z" + "iopub.execute_input": "2023-08-21T02:29:59.918744Z", + "iopub.status.busy": "2023-08-21T02:29:59.918666Z", + "iopub.status.idle": "2023-08-21T02:29:59.925361Z", + "shell.execute_reply": "2023-08-21T02:29:59.925039Z" } }, "outputs": [ @@ -534,7 +534,7 @@ }, { "cell_type": "markdown", - "id": "bbfc8005", + "id": "7f002ea6", "metadata": {}, "source": [ "Thus, with this value of `C`,\n", @@ -546,13 +546,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "0320d9e0", + "id": "ab1697c2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.597509Z", - "iopub.status.busy": "2023-08-07T00:19:29.597387Z", - "iopub.status.idle": "2023-08-07T00:19:29.602346Z", - "shell.execute_reply": "2023-08-07T00:19:29.601964Z" + "iopub.execute_input": "2023-08-21T02:29:59.927158Z", + "iopub.status.busy": "2023-08-21T02:29:59.927027Z", + "iopub.status.idle": "2023-08-21T02:29:59.931558Z", + "shell.execute_reply": "2023-08-21T02:29:59.931228Z" } }, "outputs": [ @@ -622,7 +622,7 @@ }, { "cell_type": "markdown", - "id": "427d775f", + "id": "7574703a", "metadata": {}, "source": [ "In this case 60% of test observations are correctly classified.\n", @@ -637,13 +637,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "84d7e778", + "id": "0fd42b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.604018Z", - "iopub.status.busy": "2023-08-07T00:19:29.603879Z", - "iopub.status.idle": "2023-08-07T00:19:29.734586Z", - "shell.execute_reply": "2023-08-07T00:19:29.734264Z" + "iopub.execute_input": "2023-08-21T02:29:59.933100Z", + "iopub.status.busy": "2023-08-21T02:29:59.933001Z", + "iopub.status.idle": "2023-08-21T02:30:00.054738Z", + "shell.execute_reply": "2023-08-21T02:30:00.054338Z" } }, "outputs": [ @@ -666,7 +666,7 @@ }, { "cell_type": "markdown", - "id": "ff7bdad1", + "id": "4bdaf415", "metadata": {}, "source": [ "Now the observations are just barely linearly separable." @@ -675,13 +675,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "abb1f8be", + "id": "09c15299", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.736388Z", - "iopub.status.busy": "2023-08-07T00:19:29.736251Z", - "iopub.status.idle": "2023-08-07T00:19:29.741179Z", - "shell.execute_reply": "2023-08-07T00:19:29.740886Z" + "iopub.execute_input": "2023-08-21T02:30:00.056655Z", + "iopub.status.busy": "2023-08-21T02:30:00.056526Z", + "iopub.status.idle": "2023-08-21T02:30:00.061096Z", + "shell.execute_reply": "2023-08-21T02:30:00.060792Z" } }, "outputs": [ @@ -750,7 +750,7 @@ }, { "cell_type": "markdown", - "id": "c44297cc", + "id": "d987eecc", "metadata": {}, "source": [ "We fit the\n", @@ -762,13 +762,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "2e4ed2f5", + "id": "d5fd2ff9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.742864Z", - "iopub.status.busy": "2023-08-07T00:19:29.742750Z", - "iopub.status.idle": "2023-08-07T00:19:29.860686Z", - "shell.execute_reply": "2023-08-07T00:19:29.860305Z" + "iopub.execute_input": "2023-08-21T02:30:00.062673Z", + "iopub.status.busy": "2023-08-21T02:30:00.062585Z", + "iopub.status.idle": "2023-08-21T02:30:00.199860Z", + "shell.execute_reply": "2023-08-21T02:30:00.199129Z" }, "lines_to_next_cell": 0 }, @@ -794,7 +794,7 @@ }, { "cell_type": "markdown", - "id": "2836d70d", + "id": "0834d471", "metadata": {}, "source": [ "Indeed no training errors were made and only three support vectors were used.\n", @@ -807,13 +807,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "164a611c", + "id": "39aff1b1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.862647Z", - "iopub.status.busy": "2023-08-07T00:19:29.862496Z", - "iopub.status.idle": "2023-08-07T00:19:29.867261Z", - "shell.execute_reply": "2023-08-07T00:19:29.866916Z" + "iopub.execute_input": "2023-08-21T02:30:00.202380Z", + "iopub.status.busy": "2023-08-21T02:30:00.202233Z", + "iopub.status.idle": "2023-08-21T02:30:00.207886Z", + "shell.execute_reply": "2023-08-21T02:30:00.207493Z" } }, "outputs": [ @@ -882,7 +882,7 @@ }, { "cell_type": "markdown", - "id": "39a432d1", + "id": "d0684844", "metadata": {}, "source": [ "Using `C=0.1`, we again do not misclassify any training observations, but we\n", @@ -894,13 +894,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "c67591a1", + "id": "63a9d752", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.868821Z", - "iopub.status.busy": "2023-08-07T00:19:29.868723Z", - "iopub.status.idle": "2023-08-07T00:19:29.990207Z", - "shell.execute_reply": "2023-08-07T00:19:29.989921Z" + "iopub.execute_input": "2023-08-21T02:30:00.209907Z", + "iopub.status.busy": "2023-08-21T02:30:00.209781Z", + "iopub.status.idle": "2023-08-21T02:30:00.340803Z", + "shell.execute_reply": "2023-08-21T02:30:00.340433Z" }, "lines_to_next_cell": 2 }, @@ -926,7 +926,7 @@ }, { "cell_type": "markdown", - "id": "25e61f65", + "id": "a70d84f4", "metadata": {}, "source": [ "## Support Vector Machine\n", @@ -947,13 +947,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "322be574", + "id": "2fee8df5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.991910Z", - "iopub.status.busy": "2023-08-07T00:19:29.991799Z", - "iopub.status.idle": "2023-08-07T00:19:29.993907Z", - "shell.execute_reply": "2023-08-07T00:19:29.993635Z" + "iopub.execute_input": "2023-08-21T02:30:00.342773Z", + "iopub.status.busy": "2023-08-21T02:30:00.342626Z", + "iopub.status.idle": "2023-08-21T02:30:00.345094Z", + "shell.execute_reply": "2023-08-21T02:30:00.344774Z" } }, "outputs": [], @@ -966,7 +966,7 @@ }, { "cell_type": "markdown", - "id": "22fe2182", + "id": "d5c7545e", "metadata": {}, "source": [ "Plotting the data makes it clear that the class boundary is indeed non-linear." @@ -975,13 +975,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "04fda182", + "id": "48f01abe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:29.995558Z", - "iopub.status.busy": "2023-08-07T00:19:29.995406Z", - "iopub.status.idle": "2023-08-07T00:19:30.089596Z", - "shell.execute_reply": "2023-08-07T00:19:30.089130Z" + "iopub.execute_input": "2023-08-21T02:30:00.347053Z", + "iopub.status.busy": "2023-08-21T02:30:00.346902Z", + "iopub.status.idle": "2023-08-21T02:30:00.440453Z", + "shell.execute_reply": "2023-08-21T02:30:00.440153Z" }, "lines_to_next_cell": 2 }, @@ -989,7 +989,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 20, @@ -1017,7 +1017,7 @@ }, { "cell_type": "markdown", - "id": "64913fe3", + "id": "7c0bc32b", "metadata": {}, "source": [ "The data is randomly split into training and testing groups. We then\n", @@ -1028,13 +1028,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "0c2690d1", + "id": "4acc3246", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.091605Z", - "iopub.status.busy": "2023-08-07T00:19:30.091498Z", - "iopub.status.idle": "2023-08-07T00:19:30.095614Z", - "shell.execute_reply": "2023-08-07T00:19:30.095347Z" + "iopub.execute_input": "2023-08-21T02:30:00.442257Z", + "iopub.status.busy": "2023-08-21T02:30:00.442156Z", + "iopub.status.idle": "2023-08-21T02:30:00.446674Z", + "shell.execute_reply": "2023-08-21T02:30:00.446369Z" } }, "outputs": [ @@ -1066,7 +1066,7 @@ }, { "cell_type": "markdown", - "id": "5da9efdb", + "id": "b2c7e95e", "metadata": {}, "source": [ "The plot shows that the resulting SVM has a decidedly non-linear\n", @@ -1076,13 +1076,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "3eb171e8", + "id": "e9852a28", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.097178Z", - "iopub.status.busy": "2023-08-07T00:19:30.097088Z", - "iopub.status.idle": "2023-08-07T00:19:30.357131Z", - "shell.execute_reply": "2023-08-07T00:19:30.356847Z" + "iopub.execute_input": "2023-08-21T02:30:00.448268Z", + "iopub.status.busy": "2023-08-21T02:30:00.448160Z", + "iopub.status.idle": "2023-08-21T02:30:00.828511Z", + "shell.execute_reply": "2023-08-21T02:30:00.828128Z" } }, "outputs": [ @@ -1107,7 +1107,7 @@ }, { "cell_type": "markdown", - "id": "ab5b1446", + "id": "acfa4bed", "metadata": {}, "source": [ "We can see from the figure that there are a fair number of training\n", @@ -1120,13 +1120,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "9a6b905b", + "id": "01232fc9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.358811Z", - "iopub.status.busy": "2023-08-07T00:19:30.358698Z", - "iopub.status.idle": "2023-08-07T00:19:30.513702Z", - "shell.execute_reply": "2023-08-07T00:19:30.513395Z" + "iopub.execute_input": "2023-08-21T02:30:00.830365Z", + "iopub.status.busy": "2023-08-21T02:30:00.830226Z", + "iopub.status.idle": "2023-08-21T02:30:01.132677Z", + "shell.execute_reply": "2023-08-21T02:30:01.132224Z" } }, "outputs": [ @@ -1153,7 +1153,7 @@ }, { "cell_type": "markdown", - "id": "300c1b8b", + "id": "5bc77e3f", "metadata": {}, "source": [ "We can perform cross-validation using `skm.GridSearchCV()` to select the\n", @@ -1164,13 +1164,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "5ab01d6c", + "id": "bcbd15a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.515803Z", - "iopub.status.busy": "2023-08-07T00:19:30.515668Z", - "iopub.status.idle": "2023-08-07T00:19:30.612245Z", - "shell.execute_reply": "2023-08-07T00:19:30.611940Z" + "iopub.execute_input": "2023-08-21T02:30:01.134616Z", + "iopub.status.busy": "2023-08-21T02:30:01.134486Z", + "iopub.status.idle": "2023-08-21T02:30:01.243519Z", + "shell.execute_reply": "2023-08-21T02:30:01.243203Z" } }, "outputs": [ @@ -1201,7 +1201,7 @@ }, { "cell_type": "markdown", - "id": "1bb987ae", + "id": "997bbfbd", "metadata": {}, "source": [ "The best choice of parameters under five-fold CV is achieved at `C=1`\n", @@ -1212,13 +1212,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "166a6acb", + "id": "28ca551e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.614152Z", - "iopub.status.busy": "2023-08-07T00:19:30.614029Z", - "iopub.status.idle": "2023-08-07T00:19:30.850984Z", - "shell.execute_reply": "2023-08-07T00:19:30.850653Z" + "iopub.execute_input": "2023-08-21T02:30:01.245550Z", + "iopub.status.busy": "2023-08-21T02:30:01.245377Z", + "iopub.status.idle": "2023-08-21T02:30:01.600896Z", + "shell.execute_reply": "2023-08-21T02:30:01.600574Z" } }, "outputs": [ @@ -1303,7 +1303,7 @@ }, { "cell_type": "markdown", - "id": "39ee6f32", + "id": "48e671f4", "metadata": {}, "source": [ "With these parameters, 12% of test\n", @@ -1312,7 +1312,7 @@ }, { "cell_type": "markdown", - "id": "f0ea699d", + "id": "eaed0a87", "metadata": {}, "source": [ "## ROC Curves\n", @@ -1346,13 +1346,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "0607fc41", + "id": "68ac9421", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.853079Z", - "iopub.status.busy": "2023-08-07T00:19:30.852934Z", - "iopub.status.idle": "2023-08-07T00:19:30.948570Z", - "shell.execute_reply": "2023-08-07T00:19:30.948252Z" + "iopub.execute_input": "2023-08-21T02:30:01.602740Z", + "iopub.status.busy": "2023-08-21T02:30:01.602614Z", + "iopub.status.idle": "2023-08-21T02:30:01.698620Z", + "shell.execute_reply": "2023-08-21T02:30:01.698322Z" }, "lines_to_next_cell": 0 }, @@ -1380,7 +1380,7 @@ }, { "cell_type": "markdown", - "id": "54446e71", + "id": "0c35d32a", "metadata": {}, "source": [ " In this example, the SVM appears to provide accurate predictions. By increasing\n", @@ -1391,13 +1391,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "5211a882", + "id": "f79a9e0a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:30.950213Z", - "iopub.status.busy": "2023-08-07T00:19:30.950106Z", - "iopub.status.idle": "2023-08-07T00:19:31.095103Z", - "shell.execute_reply": "2023-08-07T00:19:31.094737Z" + "iopub.execute_input": "2023-08-21T02:30:01.700479Z", + "iopub.status.busy": "2023-08-21T02:30:01.700347Z", + "iopub.status.idle": "2023-08-21T02:30:01.837479Z", + "shell.execute_reply": "2023-08-21T02:30:01.837102Z" } }, "outputs": [ @@ -1428,7 +1428,7 @@ }, { "cell_type": "markdown", - "id": "de7e4be8", + "id": "7bd1a22b", "metadata": {}, "source": [ "However, these ROC curves are all on the training data. We are really\n", @@ -1440,13 +1440,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "12acc4ff", + "id": "bdb9e503", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.096951Z", - "iopub.status.busy": "2023-08-07T00:19:31.096805Z", - "iopub.status.idle": "2023-08-07T00:19:31.101372Z", - "shell.execute_reply": "2023-08-07T00:19:31.101097Z" + "iopub.execute_input": "2023-08-21T02:30:01.839390Z", + "iopub.status.busy": "2023-08-21T02:30:01.839243Z", + "iopub.status.idle": "2023-08-21T02:30:01.843595Z", + "shell.execute_reply": "2023-08-21T02:30:01.843287Z" } }, "outputs": [], @@ -1462,7 +1462,7 @@ }, { "cell_type": "markdown", - "id": "eb5c8aeb", + "id": "8a42e924", "metadata": {}, "source": [ "Let’s look at our tuned SVM." @@ -1471,13 +1471,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "21c81913", + "id": "329f5d2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.103089Z", - "iopub.status.busy": "2023-08-07T00:19:31.102993Z", - "iopub.status.idle": "2023-08-07T00:19:31.204133Z", - "shell.execute_reply": "2023-08-07T00:19:31.203835Z" + "iopub.execute_input": "2023-08-21T02:30:01.845300Z", + "iopub.status.busy": "2023-08-21T02:30:01.845201Z", + "iopub.status.idle": "2023-08-21T02:30:01.944073Z", + "shell.execute_reply": "2023-08-21T02:30:01.943763Z" } }, "outputs": [ @@ -1510,7 +1510,7 @@ }, { "cell_type": "markdown", - "id": "b9fefe9f", + "id": "bac19279", "metadata": {}, "source": [ "## SVM with Multiple Classes\n", @@ -1526,13 +1526,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "2fff4fa8", + "id": "267e113d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.205816Z", - "iopub.status.busy": "2023-08-07T00:19:31.205709Z", - "iopub.status.idle": "2023-08-07T00:19:31.294925Z", - "shell.execute_reply": "2023-08-07T00:19:31.294593Z" + "iopub.execute_input": "2023-08-21T02:30:01.945725Z", + "iopub.status.busy": "2023-08-21T02:30:01.945611Z", + "iopub.status.idle": "2023-08-21T02:30:02.034378Z", + "shell.execute_reply": "2023-08-21T02:30:02.034069Z" } }, "outputs": [ @@ -1558,7 +1558,7 @@ }, { "cell_type": "markdown", - "id": "b7adc87d", + "id": "a9f4297c", "metadata": {}, "source": [ "We now fit an SVM to the data:" @@ -1567,13 +1567,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "5396f2df", + "id": "64cbebd0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.296594Z", - "iopub.status.busy": "2023-08-07T00:19:31.296472Z", - "iopub.status.idle": "2023-08-07T00:19:31.880175Z", - "shell.execute_reply": "2023-08-07T00:19:31.879674Z" + "iopub.execute_input": "2023-08-21T02:30:02.036083Z", + "iopub.status.busy": "2023-08-21T02:30:02.035963Z", + "iopub.status.idle": "2023-08-21T02:30:03.015535Z", + "shell.execute_reply": "2023-08-21T02:30:03.014798Z" }, "lines_to_next_cell": 0 }, @@ -1605,7 +1605,7 @@ }, { "cell_type": "markdown", - "id": "837644f5", + "id": "62c5d16e", "metadata": {}, "source": [ "The `sklearn.svm` library can also be used to perform support vector\n", @@ -1614,7 +1614,7 @@ }, { "cell_type": "markdown", - "id": "a6bc0cbc", + "id": "5c0824b6", "metadata": {}, "source": [ "## Application to Gene Expression Data\n", @@ -1631,13 +1631,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "f63c575e", + "id": "b6e6f12b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.882095Z", - "iopub.status.busy": "2023-08-07T00:19:31.881962Z", - "iopub.status.idle": "2023-08-07T00:19:31.959079Z", - "shell.execute_reply": "2023-08-07T00:19:31.958769Z" + "iopub.execute_input": "2023-08-21T02:30:03.017430Z", + "iopub.status.busy": "2023-08-21T02:30:03.017293Z", + "iopub.status.idle": "2023-08-21T02:30:03.099156Z", + "shell.execute_reply": "2023-08-21T02:30:03.098760Z" } }, "outputs": [ @@ -1659,7 +1659,7 @@ }, { "cell_type": "markdown", - "id": "bfd6492c", + "id": "e3fbaa58", "metadata": {}, "source": [ "This data set consists of expression measurements for 2,308\n", @@ -1677,13 +1677,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "32091338", + "id": "273a10b2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.960641Z", - "iopub.status.busy": "2023-08-07T00:19:31.960528Z", - "iopub.status.idle": "2023-08-07T00:19:31.990176Z", - "shell.execute_reply": "2023-08-07T00:19:31.989868Z" + "iopub.execute_input": "2023-08-21T02:30:03.101069Z", + "iopub.status.busy": "2023-08-21T02:30:03.100881Z", + "iopub.status.idle": "2023-08-21T02:30:03.130224Z", + "shell.execute_reply": "2023-08-21T02:30:03.129845Z" } }, "outputs": [ @@ -1777,7 +1777,7 @@ }, { "cell_type": "markdown", - "id": "23043ab0", + "id": "31cad43a", "metadata": {}, "source": [ "We see that there are *no* training\n", @@ -1791,13 +1791,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "d9058023", + "id": "bc3079a7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:31.991754Z", - "iopub.status.busy": "2023-08-07T00:19:31.991636Z", - "iopub.status.idle": "2023-08-07T00:19:32.002452Z", - "shell.execute_reply": "2023-08-07T00:19:32.002189Z" + "iopub.execute_input": "2023-08-21T02:30:03.132111Z", + "iopub.status.busy": "2023-08-21T02:30:03.131975Z", + "iopub.status.idle": "2023-08-21T02:30:03.143298Z", + "shell.execute_reply": "2023-08-21T02:30:03.142948Z" } }, "outputs": [ @@ -1889,7 +1889,7 @@ }, { "cell_type": "markdown", - "id": "d0d5aba4", + "id": "0d059312", "metadata": {}, "source": [ "We see that using `C=10` yields two test set errors on these data.\n", diff --git a/Ch10-deeplearning-lab.Rmd b/Ch10-deeplearning-lab.Rmd index e6911cc..51674b6 100644 --- a/Ch10-deeplearning-lab.Rmd +++ b/Ch10-deeplearning-lab.Rmd @@ -1,19 +1,3 @@ ---- -jupyter: - jupytext: - cell_metadata_filter: -all - formats: ipynb,Rmd - text_representation: - extension: .Rmd - format_name: rmarkdown - format_version: '1.2' - jupytext_version: 1.14.7 - kernelspec: - display_name: Python 3 (ipykernel) - language: python - name: python3 ---- - # Chapter 10 @@ -872,7 +856,7 @@ for idx, (X_ ,Y_) in enumerate(cifar_dm.train_dataloader()): Before we start, we look at some of the training images; similar code produced -Figure 10.5 on page 164. The example below also illustrates +Figure 10.5 on page 447. The example below also illustrates that `TensorDataset` objects can be indexed with integers --- we are choosing random images from the training data by indexing `cifar_train`. In order to display correctly, we must reorder the dimensions by a call to `np.transpose()`. @@ -1705,7 +1689,6 @@ early stopping, since then the test performance would be biased. We form the training dataset similar to our `Hitters` example. - ```{python} datasets = [] diff --git a/Ch10-deeplearning-lab.ipynb b/Ch10-deeplearning-lab.ipynb index 835512f..2577eac 100644 --- a/Ch10-deeplearning-lab.ipynb +++ b/Ch10-deeplearning-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "b672dcf6", + "id": "23016bca", "metadata": {}, "source": [ "\n", @@ -24,7 +24,7 @@ { "cell_type": "code", "execution_count": 1, - "id": "9b5b8319", + "id": "cf431f3f", "metadata": { "lines_to_next_cell": 2 }, @@ -48,7 +48,7 @@ }, { "cell_type": "markdown", - "id": "c0cb2c87", + "id": "667eff82", "metadata": {}, "source": [ "### Torch-Specific Imports\n", @@ -61,7 +61,7 @@ { "cell_type": "code", "execution_count": 2, - "id": "f66f362c", + "id": "1db00e03", "metadata": {}, "outputs": [], "source": [ @@ -73,7 +73,7 @@ }, { "cell_type": "markdown", - "id": "5ce27a8d", + "id": "b3407495", "metadata": {}, "source": [ "There are several other helper packages for `torch`. For instance,\n", @@ -87,7 +87,7 @@ { "cell_type": "code", "execution_count": 3, - "id": "17bce9cb", + "id": "3da0a445", "metadata": {}, "outputs": [], "source": [ @@ -98,7 +98,7 @@ }, { "cell_type": "markdown", - "id": "a14990c3", + "id": "e5c55b19", "metadata": {}, "source": [ "The package `pytorch_lightning` is a somewhat higher-level\n", @@ -111,7 +111,7 @@ { "cell_type": "code", "execution_count": 4, - "id": "4c3b6e43", + "id": "bbbf32fe", "metadata": {}, "outputs": [], "source": [ @@ -121,7 +121,7 @@ }, { "cell_type": "markdown", - "id": "e5bc78bd", + "id": "cf5ec401", "metadata": {}, "source": [ "In order to reproduce results we use `seed_everything()`. We will also instruct `torch` to use deterministic algorithms\n", @@ -131,7 +131,7 @@ { "cell_type": "code", "execution_count": 5, - "id": "6839d8ad", + "id": "3810caf4", "metadata": {}, "outputs": [ { @@ -150,7 +150,7 @@ }, { "cell_type": "markdown", - "id": "1f1490e7", + "id": "c3dea945", "metadata": {}, "source": [ "We will use several datasets shipped with `torchvision` for our\n", @@ -161,7 +161,7 @@ { "cell_type": "code", "execution_count": 6, - "id": "07dba2dd", + "id": "454dc419", "metadata": { "lines_to_next_cell": 0 }, @@ -179,7 +179,7 @@ }, { "cell_type": "markdown", - "id": "36ec305c", + "id": "f7f9578a", "metadata": {}, "source": [ "We have provided a few utilities in `ISLP` specifically for this lab.\n", @@ -197,7 +197,7 @@ { "cell_type": "code", "execution_count": 7, - "id": "89763447", + "id": "cd43a4c6", "metadata": {}, "outputs": [], "source": [ @@ -209,7 +209,7 @@ }, { "cell_type": "markdown", - "id": "dfc13283", + "id": "c5231b9d", "metadata": {}, "source": [ "In addition we have included some helper\n", @@ -226,7 +226,7 @@ { "cell_type": "code", "execution_count": 8, - "id": "ac5ab1b0", + "id": "eaf84e9c", "metadata": {}, "outputs": [], "source": [ @@ -238,7 +238,7 @@ }, { "cell_type": "markdown", - "id": "04f757bd", + "id": "c42bc542", "metadata": {}, "source": [ "Finally, we introduce some utility imports not directly related to\n", @@ -255,7 +255,7 @@ { "cell_type": "code", "execution_count": 9, - "id": "5a5468e6", + "id": "d007a49b", "metadata": { "lines_to_next_cell": 2 }, @@ -267,7 +267,7 @@ }, { "cell_type": "markdown", - "id": "690a5255", + "id": "d0fe1cff", "metadata": {}, "source": [ "## Single Layer Network on Hitters Data\n", @@ -277,7 +277,7 @@ { "cell_type": "code", "execution_count": 10, - "id": "d635398b", + "id": "9da64364", "metadata": { "lines_to_next_cell": 0 }, @@ -289,7 +289,7 @@ }, { "cell_type": "markdown", - "id": "a0fd86f3", + "id": "0e80a8c0", "metadata": {}, "source": [ " We will fit two linear models (least squares and lasso) and compare their performance\n", @@ -305,7 +305,7 @@ { "cell_type": "code", "execution_count": 11, - "id": "2c621749", + "id": "a2cfe999", "metadata": { "lines_to_next_cell": 0 }, @@ -318,7 +318,7 @@ }, { "cell_type": "markdown", - "id": "f32a66d7", + "id": "5f0851bc", "metadata": {}, "source": [ "The `to_numpy()` method above converts `pandas`\n", @@ -331,7 +331,7 @@ }, { "cell_type": "markdown", - "id": "b5565350", + "id": "afe4eb28", "metadata": {}, "source": [ "We now split the data into test and training, fixing the random\n", @@ -341,7 +341,7 @@ { "cell_type": "code", "execution_count": 12, - "id": "cd19596a", + "id": "5c600069", "metadata": {}, "outputs": [], "source": [ @@ -356,7 +356,7 @@ }, { "cell_type": "markdown", - "id": "b82951aa", + "id": "e27a6313", "metadata": {}, "source": [ "### Linear Models\n", @@ -366,7 +366,7 @@ { "cell_type": "code", "execution_count": 13, - "id": "e4bfcd5a", + "id": "6ea4f551", "metadata": {}, "outputs": [ { @@ -388,7 +388,7 @@ }, { "cell_type": "markdown", - "id": "bf3523a8", + "id": "e5fe8c6b", "metadata": {}, "source": [ "Next we fit the lasso using `sklearn`. We are using\n", @@ -402,7 +402,7 @@ { "cell_type": "code", "execution_count": 14, - "id": "36f8290b", + "id": "f1b8b3f5", "metadata": {}, "outputs": [], "source": [ @@ -414,7 +414,7 @@ }, { "cell_type": "markdown", - "id": "9f1bf0ad", + "id": "39a58ed0", "metadata": {}, "source": [ "We need to create a grid of values for $\\lambda$. As is common practice, \n", @@ -425,7 +425,7 @@ { "cell_type": "code", "execution_count": 15, - "id": "5015c394", + "id": "50ce4171", "metadata": { "lines_to_next_cell": 0 }, @@ -440,7 +440,7 @@ }, { "cell_type": "markdown", - "id": "89f6b4e4", + "id": "2cdc3810", "metadata": {}, "source": [ "Note that we had to transform the data first, since the scale of the variables impacts the choice of $\\lambda$.\n", @@ -450,7 +450,7 @@ { "cell_type": "code", "execution_count": 16, - "id": "b5dc7d68", + "id": "94c4ab75", "metadata": {}, "outputs": [], "source": [ @@ -466,7 +466,7 @@ }, { "cell_type": "markdown", - "id": "0b64a882", + "id": "e5262d51", "metadata": {}, "source": [ "We extract the lasso model with best cross-validated mean absolute error, and evaluate its\n", @@ -477,7 +477,7 @@ { "cell_type": "code", "execution_count": 17, - "id": "2c49196f", + "id": "86e45999", "metadata": { "lines_to_next_cell": 0 }, @@ -501,7 +501,7 @@ }, { "cell_type": "markdown", - "id": "61f016c9", + "id": "1f905d89", "metadata": {}, "source": [ "This is similar to the results we got for the linear model fit by least squares. However, these results can vary a lot for different train/test splits; we encourage the reader to try a different seed in code block 12 and rerun the subsequent code up to this point.\n", @@ -519,7 +519,7 @@ { "cell_type": "code", "execution_count": 18, - "id": "df5864e2", + "id": "00ac7606", "metadata": {}, "outputs": [], "source": [ @@ -541,7 +541,7 @@ }, { "cell_type": "markdown", - "id": "4b05cc28", + "id": "a25aab3b", "metadata": {}, "source": [ "The `class` statement identifies the code chunk as a\n", @@ -577,7 +577,7 @@ { "cell_type": "code", "execution_count": 19, - "id": "da601fe1", + "id": "bb7ff7e9", "metadata": {}, "outputs": [], "source": [ @@ -586,7 +586,7 @@ }, { "cell_type": "markdown", - "id": "326f3b54", + "id": "ac0c6bf7", "metadata": {}, "source": [ "The object `self.sequential` is a composition of four maps. The\n", @@ -601,7 +601,7 @@ }, { "cell_type": "markdown", - "id": "a246aedb", + "id": "9e8e69ac", "metadata": {}, "source": [ "The package `torchinfo` provides a `summary()` function that neatly summarizes\n", @@ -612,7 +612,7 @@ { "cell_type": "code", "execution_count": 20, - "id": "15dd23a9", + "id": "b60d34e1", "metadata": { "lines_to_next_cell": 0 }, @@ -658,7 +658,7 @@ }, { "cell_type": "markdown", - "id": "3cb4b8bc", + "id": "aa499e3f", "metadata": {}, "source": [ "We have truncated the end of the output slightly, here and in subsequent uses.\n", @@ -680,7 +680,7 @@ { "cell_type": "code", "execution_count": 21, - "id": "dae83bc5", + "id": "42f63682", "metadata": { "lines_to_next_cell": 0 }, @@ -693,7 +693,7 @@ }, { "cell_type": "markdown", - "id": "80475fa2", + "id": "6e184dcd", "metadata": {}, "source": [ "We do the same for the test data." @@ -702,7 +702,7 @@ { "cell_type": "code", "execution_count": 22, - "id": "81e217a8", + "id": "57fbf564", "metadata": {}, "outputs": [], "source": [ @@ -713,7 +713,7 @@ }, { "cell_type": "markdown", - "id": "7f49263d", + "id": "09cabaa8", "metadata": {}, "source": [ "Finally, this dataset is passed to a `DataLoader()` which ultimately\n", @@ -737,7 +737,7 @@ { "cell_type": "code", "execution_count": 23, - "id": "e5359e31", + "id": "570bdd73", "metadata": {}, "outputs": [], "source": [ @@ -746,7 +746,7 @@ }, { "cell_type": "markdown", - "id": "105b015f", + "id": "a7bc2151", "metadata": {}, "source": [ "The general training setup in `pytorch_lightning` involves\n", @@ -769,7 +769,7 @@ { "cell_type": "code", "execution_count": 24, - "id": "7a19d6d8", + "id": "c08a4d6d", "metadata": {}, "outputs": [], "source": [ @@ -782,7 +782,7 @@ }, { "cell_type": "markdown", - "id": "8d1f2a76", + "id": "db5447fa", "metadata": {}, "source": [ "Next we must provide a `pytorch_lightning` module that controls\n", @@ -797,7 +797,7 @@ { "cell_type": "code", "execution_count": 25, - "id": "07bc10ef", + "id": "aaa1e593", "metadata": {}, "outputs": [], "source": [ @@ -807,7 +807,7 @@ }, { "cell_type": "markdown", - "id": "1ebf9835", + "id": "8500a2ba", "metadata": {}, "source": [ " By using the `SimpleModule.regression()` method, we indicate that we will use squared-error loss as in\n", @@ -824,7 +824,7 @@ { "cell_type": "code", "execution_count": 26, - "id": "08c71fb4", + "id": "1a4e9b3c", "metadata": {}, "outputs": [], "source": [ @@ -833,7 +833,7 @@ }, { "cell_type": "markdown", - "id": "511617c3", + "id": "77e3c7a5", "metadata": {}, "source": [ "Finally we are ready to train our model and log the results. We\n", @@ -855,7 +855,7 @@ { "cell_type": "code", "execution_count": 27, - "id": "81a8c626", + "id": "2f839fde", "metadata": { "lines_to_next_cell": 0 }, @@ -897,7 +897,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4cb0d8941d43434883b4142c14e198f8", + "model_id": "3f81045e13e641428a7f37ab7ceb43be", "version_major": 2, "version_minor": 0 }, @@ -1569,7 +1569,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "840b55ce195b42edbe9f3fd394dec7e5", + "model_id": "553e586e7cd54ad3bb9e01d0fc37754e", "version_major": 2, "version_minor": 0 }, @@ -1583,7 +1583,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2e3d175f2c294fac992ff04733267452", + "model_id": "05c22b9bdd4c48098756a37b57fc963b", "version_major": 2, "version_minor": 0 }, @@ -1597,7 +1597,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2d0477c9d13945bb8a6cbd38620bc93f", + "model_id": "f073bf03d90b4e318352c5de82bb9953", "version_major": 2, "version_minor": 0 }, @@ -1627,7 +1627,7 @@ }, { "cell_type": "markdown", - "id": "abe1a22c", + "id": "4018f616", "metadata": {}, "source": [ "At each step of SGD, the algorithm randomly selects 32 training observations for\n", @@ -1643,7 +1643,7 @@ { "cell_type": "code", "execution_count": 28, - "id": "083670c6", + "id": "672b4410", "metadata": { "lines_to_next_cell": 2 }, @@ -1651,7 +1651,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ddc1a0eaac9e4fcda9e91e34abdcc67d", + "model_id": "f0857a2a00a847c084831c51d7fd8dfd", "version_major": 2, "version_minor": 0 }, @@ -1704,7 +1704,7 @@ }, { "cell_type": "markdown", - "id": "c6b3317b", + "id": "0f4e3b11", "metadata": {}, "source": [ "The results of the fit have been logged into a CSV file. We can find the\n", @@ -1720,7 +1720,7 @@ { "cell_type": "code", "execution_count": 29, - "id": "02ba9edf", + "id": "8cf6ef60", "metadata": {}, "outputs": [], "source": [ @@ -1729,7 +1729,7 @@ }, { "cell_type": "markdown", - "id": "daf8ed8d", + "id": "537efe03", "metadata": {}, "source": [ "Since we will produce similar plots in later examples, we write a\n", @@ -1739,7 +1739,7 @@ { "cell_type": "code", "execution_count": 30, - "id": "4184557c", + "id": "67ce1e26", "metadata": { "lines_to_next_cell": 0 }, @@ -1773,7 +1773,7 @@ }, { "cell_type": "markdown", - "id": "026c1c4d", + "id": "53309bb0", "metadata": {}, "source": [ "We now set up our axes, and use our function to produce the MAE plot." @@ -1782,7 +1782,7 @@ { "cell_type": "code", "execution_count": 31, - "id": "3244deeb", + "id": "deb684d2", "metadata": { "lines_to_next_cell": 2 }, @@ -1811,7 +1811,7 @@ }, { "cell_type": "markdown", - "id": "670a3e8f", + "id": "eab05619", "metadata": {}, "source": [ "We can predict directly from the final model, and\n", @@ -1829,7 +1829,7 @@ { "cell_type": "code", "execution_count": 32, - "id": "36bb545e", + "id": "454033dd", "metadata": { "lines_to_next_cell": 0 }, @@ -1853,7 +1853,7 @@ }, { "cell_type": "markdown", - "id": "ae4b9ca6", + "id": "b3625ff5", "metadata": {}, "source": [ " " @@ -1861,7 +1861,7 @@ }, { "cell_type": "markdown", - "id": "b8b7fd3c", + "id": "f46e3883", "metadata": {}, "source": [ "### Cleanup\n", @@ -1875,7 +1875,7 @@ { "cell_type": "code", "execution_count": 33, - "id": "00371f48", + "id": "71b3d0d0", "metadata": { "lines_to_next_cell": 2 }, @@ -1894,7 +1894,7 @@ }, { "cell_type": "markdown", - "id": "5707d61c", + "id": "28d1c832", "metadata": {}, "source": [ "## Multilayer Network on the MNIST Digit Data\n", @@ -1908,7 +1908,7 @@ { "cell_type": "code", "execution_count": 34, - "id": "3e28d6ba", + "id": "def8605c", "metadata": {}, "outputs": [ { @@ -1939,7 +1939,7 @@ }, { "cell_type": "markdown", - "id": "eb8b7e29", + "id": "95ffc346", "metadata": {}, "source": [ "There are 60,000 images in the training data and 10,000 in the test\n", @@ -1963,7 +1963,7 @@ { "cell_type": "code", "execution_count": 35, - "id": "cb04829e", + "id": "8b9e2b8c", "metadata": {}, "outputs": [], "source": [ @@ -1976,7 +1976,7 @@ }, { "cell_type": "markdown", - "id": "1119e22a", + "id": "91256a1b", "metadata": {}, "source": [ "Let’s take a look at the data that will get fed into our network. We loop through the first few\n", @@ -1986,7 +1986,7 @@ { "cell_type": "code", "execution_count": 36, - "id": "c4a265fc", + "id": "a4b95dc6", "metadata": { "lines_to_next_cell": 2 }, @@ -2012,7 +2012,7 @@ }, { "cell_type": "markdown", - "id": "f65ada90", + "id": "12e7eddb", "metadata": {}, "source": [ "We see that the $X$ for each batch consists of 256 images of size `1x28x28`.\n", @@ -2025,7 +2025,7 @@ { "cell_type": "code", "execution_count": 37, - "id": "60339a03", + "id": "17714c25", "metadata": {}, "outputs": [], "source": [ @@ -2051,7 +2051,7 @@ }, { "cell_type": "markdown", - "id": "5b8f87da", + "id": "9893ffb2", "metadata": {}, "source": [ "We see that in the first layer, each `1x28x28` image is flattened, then mapped to\n", @@ -2065,7 +2065,7 @@ { "cell_type": "code", "execution_count": 38, - "id": "1d0f24b2", + "id": "88a4bf46", "metadata": {}, "outputs": [], "source": [ @@ -2074,7 +2074,7 @@ }, { "cell_type": "markdown", - "id": "0ee4771e", + "id": "049febff", "metadata": {}, "source": [ "We can check that the model produces output of expected size based\n", @@ -2084,7 +2084,7 @@ { "cell_type": "code", "execution_count": 39, - "id": "42a4931b", + "id": "ea0d9387", "metadata": {}, "outputs": [ { @@ -2104,7 +2104,7 @@ }, { "cell_type": "markdown", - "id": "628d56f9", + "id": "638026d1", "metadata": {}, "source": [ "Let’s take a look at the summary of the model. Instead of an `input_size` we can pass\n", @@ -2115,7 +2115,7 @@ { "cell_type": "code", "execution_count": 40, - "id": "69e62d88", + "id": "17c34a29", "metadata": {}, "outputs": [ { @@ -2164,7 +2164,7 @@ }, { "cell_type": "markdown", - "id": "f8e77337", + "id": "73e3cd00", "metadata": {}, "source": [ "Having set up both the model and the data module, fitting this model is\n", @@ -2177,7 +2177,7 @@ { "cell_type": "code", "execution_count": 41, - "id": "2027a378", + "id": "a0608bd1", "metadata": {}, "outputs": [], "source": [ @@ -2188,7 +2188,7 @@ }, { "cell_type": "markdown", - "id": "9146b9b5", + "id": "6959c893", "metadata": {}, "source": [ "Now we are ready to go. The final step is to supply training data, and fit the model." @@ -2197,7 +2197,7 @@ { "cell_type": "code", "execution_count": 42, - "id": "4a5e941d", + "id": "cf8e3d9d", "metadata": { "lines_to_next_cell": 0 }, @@ -2239,7 +2239,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "23f1384f37824cc59404e8a856f4962d", + "model_id": "2c7fc7b3fc61455b88cf7020ce62d19e", "version_major": 2, "version_minor": 0 }, @@ -2689,7 +2689,7 @@ }, { "cell_type": "markdown", - "id": "8099bdc9", + "id": "cc8724fa", "metadata": {}, "source": [ "We have suppressed the output here, which is a progress report on the\n", @@ -2707,7 +2707,7 @@ }, { "cell_type": "markdown", - "id": "d6c3bbbc", + "id": "b9dc38ac", "metadata": {}, "source": [ "`SimpleModule.classification()` includes\n", @@ -2720,7 +2720,7 @@ { "cell_type": "code", "execution_count": 43, - "id": "603a278a", + "id": "45e03385", "metadata": { "lines_to_next_cell": 0 }, @@ -2750,7 +2750,7 @@ }, { "cell_type": "markdown", - "id": "654cec05", + "id": "1679f357", "metadata": {}, "source": [ "Once again we evaluate the accuracy using the `test()` method of our trainer. This model achieves\n", @@ -2760,13 +2760,13 @@ { "cell_type": "code", "execution_count": 44, - "id": "93dc968b", + "id": "3a875b78", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3eeaa8a87a31475bb36fe8dd24e694d9", + "model_id": "759de3284ee24f5c8191c1fc922f3e1d", "version_major": 2, "version_minor": 0 }, @@ -2820,7 +2820,7 @@ }, { "cell_type": "markdown", - "id": "5f7dc344", + "id": "12ef4787", "metadata": {}, "source": [ "Table 10.1 also reports the error rates resulting from LDA (Chapter 4) and multiclass logistic\n", @@ -2834,7 +2834,7 @@ { "cell_type": "code", "execution_count": 45, - "id": "e1975a3e", + "id": "2f035d83", "metadata": {}, "outputs": [], "source": [ @@ -2855,7 +2855,7 @@ { "cell_type": "code", "execution_count": 46, - "id": "14c79199", + "id": "2cd67ad8", "metadata": { "lines_to_next_cell": 0 }, @@ -2899,7 +2899,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9ecb4b2d1cba45a9b762950d7ad365e4", + "model_id": "c932821add0e4296a5ff2122a94b6090", "version_major": 2, "version_minor": 0 }, @@ -3347,7 +3347,7 @@ }, { "cell_type": "markdown", - "id": "f84cfa36", + "id": "20a316a1", "metadata": {}, "source": [ "We fit the model just as before and compute the test results." @@ -3356,7 +3356,7 @@ { "cell_type": "code", "execution_count": 47, - "id": "acb6f88d", + "id": "3900d16e", "metadata": { "lines_to_next_cell": 0 }, @@ -3364,7 +3364,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "96180813745947aa8b3705fa737d63a0", + "model_id": "63d666ec843544bf804c3fc6fc5fd6ab", "version_major": 2, "version_minor": 0 }, @@ -3418,7 +3418,7 @@ }, { "cell_type": "markdown", - "id": "05244a5e", + "id": "ca80aa75", "metadata": {}, "source": [ "The accuracy is above 90% even for this pretty simple model.\n", @@ -3430,7 +3430,7 @@ { "cell_type": "code", "execution_count": 48, - "id": "f5b3f811", + "id": "679f2ea5", "metadata": { "lines_to_next_cell": 2 }, @@ -3450,7 +3450,7 @@ }, { "cell_type": "markdown", - "id": "b5b395bb", + "id": "dd8ba586", "metadata": {}, "source": [ "## Convolutional Neural Networks\n", @@ -3461,7 +3461,7 @@ { "cell_type": "code", "execution_count": 49, - "id": "e1caa7ac", + "id": "e4af6604", "metadata": {}, "outputs": [ { @@ -3484,7 +3484,7 @@ { "cell_type": "code", "execution_count": 50, - "id": "9e94a7b4", + "id": "2b613ecc", "metadata": {}, "outputs": [], "source": [ @@ -3501,7 +3501,7 @@ }, { "cell_type": "markdown", - "id": "219ccc6f", + "id": "af1d3cdc", "metadata": {}, "source": [ "The `CIFAR100` dataset consists of 50,000 training images, each represented by a three-dimensional tensor:\n", @@ -3515,7 +3515,7 @@ { "cell_type": "code", "execution_count": 51, - "id": "32c78c06", + "id": "4b325cb4", "metadata": { "lines_to_next_cell": 0 }, @@ -3530,7 +3530,7 @@ }, { "cell_type": "markdown", - "id": "e4570164", + "id": "f361276e", "metadata": {}, "source": [ "We again look at the shape of typical batches in our data loaders." @@ -3539,7 +3539,7 @@ { "cell_type": "code", "execution_count": 52, - "id": "b3c27322", + "id": "cb3d00cb", "metadata": { "lines_to_next_cell": 2 }, @@ -3565,11 +3565,11 @@ }, { "cell_type": "markdown", - "id": "f6152280", + "id": "08771862", "metadata": {}, "source": [ "Before we start, we look at some of the training images; similar code produced\n", - "Figure 10.5 on page 164. The example below also illustrates\n", + "Figure 10.5 on page 447. The example below also illustrates\n", "that `TensorDataset` objects can be indexed with integers --- we are choosing\n", "random images from the training data by indexing `cifar_train`. In order to display correctly,\n", "we must reorder the dimensions by a call to `np.transpose()`." @@ -3578,7 +3578,7 @@ { "cell_type": "code", "execution_count": 53, - "id": "c626e0ff", + "id": "60d09656", "metadata": { "lines_to_next_cell": 0 }, @@ -3611,7 +3611,7 @@ }, { "cell_type": "markdown", - "id": "2a1c4832", + "id": "642140af", "metadata": {}, "source": [ "Here the `imshow()` method recognizes from the shape of its argument that it is a 3-dimensional array, with the last dimension indexing the three RGB color channels.\n", @@ -3628,7 +3628,7 @@ { "cell_type": "code", "execution_count": 54, - "id": "9d5bcdf3", + "id": "f823da11", "metadata": {}, "outputs": [], "source": [ @@ -3652,7 +3652,7 @@ }, { "cell_type": "markdown", - "id": "a7204121", + "id": "00927159", "metadata": {}, "source": [ "Notice that we used the `padding = \"same\"` argument to\n", @@ -3673,7 +3673,7 @@ { "cell_type": "code", "execution_count": 55, - "id": "3e13e9bc", + "id": "1a172f7e", "metadata": {}, "outputs": [], "source": [ @@ -3700,7 +3700,7 @@ }, { "cell_type": "markdown", - "id": "1b07fb1a", + "id": "8455079f", "metadata": {}, "source": [ "We build the model and look at the summary. (We had created examples of `X_` earlier.)" @@ -3709,7 +3709,7 @@ { "cell_type": "code", "execution_count": 56, - "id": "15c4a382", + "id": "651e62b4", "metadata": { "lines_to_next_cell": 2 }, @@ -3772,7 +3772,7 @@ }, { "cell_type": "markdown", - "id": "b168c198", + "id": "7dd67ce7", "metadata": {}, "source": [ "The total number of trainable parameters is 964,516.\n", @@ -3806,7 +3806,7 @@ { "cell_type": "code", "execution_count": 57, - "id": "4a40238a", + "id": "63f2650e", "metadata": {}, "outputs": [], "source": [ @@ -3820,7 +3820,7 @@ { "cell_type": "code", "execution_count": 58, - "id": "8aab2c62", + "id": "a3e4bc28", "metadata": {}, "outputs": [ { @@ -3860,7 +3860,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8473f6db1fdc40b7909b66fc6410277d", + "model_id": "40c811fa26da4690a95838e6ab0a8a98", "version_major": 2, "version_minor": 0 }, @@ -4310,7 +4310,7 @@ }, { "cell_type": "markdown", - "id": "090f6400", + "id": "c3fc9402", "metadata": {}, "source": [ "This model can take 10 minutes or more to run and achieves about 42% accuracy on the test\n", @@ -4326,7 +4326,7 @@ { "cell_type": "code", "execution_count": 59, - "id": "12474ef6", + "id": "6b161d93", "metadata": { "lines_to_next_cell": 0 }, @@ -4357,7 +4357,7 @@ }, { "cell_type": "markdown", - "id": "f3fe0cd4", + "id": "71dea0c8", "metadata": {}, "source": [ "Finally, we evaluate our model on our test data." @@ -4366,7 +4366,7 @@ { "cell_type": "code", "execution_count": 60, - "id": "9d632437", + "id": "ab8a91dc", "metadata": { "lines_to_next_cell": 2 }, @@ -4374,7 +4374,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fc46f12820ff4ca281d8a035a53fa610", + "model_id": "6dced9ab160c4c30b094a877f330efba", "version_major": 2, "version_minor": 0 }, @@ -4428,7 +4428,7 @@ }, { "cell_type": "markdown", - "id": "4b69e259", + "id": "11d0e8b3", "metadata": {}, "source": [ "### Hardware Acceleration\n", @@ -4449,7 +4449,7 @@ { "cell_type": "code", "execution_count": 61, - "id": "52a43158", + "id": "6d9962ae", "metadata": { "lines_to_next_cell": 0 }, @@ -4491,7 +4491,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "efb32ed16b3946ebbdb7c6a1714c7347", + "model_id": "6409051044c94ad9af785a42df78d36e", "version_major": 2, "version_minor": 0 }, @@ -4940,7 +4940,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ae6af1d96e5a4d1fa048bbbf0a3f5b7b", + "model_id": "4f37d3b614314b6fbf9dfb3df1775948", "version_major": 2, "version_minor": 0 }, @@ -4969,7 +4969,7 @@ }, { "cell_type": "markdown", - "id": "b72de871", + "id": "3faab186", "metadata": {}, "source": [ "This yields approximately two- or three-fold acceleration for each epoch.\n", @@ -4979,7 +4979,7 @@ }, { "cell_type": "markdown", - "id": "b86d6ef4", + "id": "31759785", "metadata": {}, "source": [ "## Using Pretrained CNN Models\n", @@ -5001,7 +5001,7 @@ { "cell_type": "code", "execution_count": 62, - "id": "db2febe9", + "id": "a71c9acb", "metadata": { "lines_to_next_cell": 2 }, @@ -5031,7 +5031,7 @@ }, { "cell_type": "markdown", - "id": "f6696ee2", + "id": "89071e87", "metadata": {}, "source": [ "We now set up the trained network with the weights we read in code block~6. The model has 50 layers, with a fair bit of complexity." @@ -5040,7 +5040,7 @@ { "cell_type": "code", "execution_count": 63, - "id": "2aabd724", + "id": "4f890244", "metadata": { "lines_to_next_cell": 0 }, @@ -5255,7 +5255,7 @@ }, { "cell_type": "markdown", - "id": "c4ee6ebe", + "id": "185bb4b5", "metadata": {}, "source": [ "We set the mode to `eval()` to ensure that the model is ready to predict on new data." @@ -5264,7 +5264,7 @@ { "cell_type": "code", "execution_count": 64, - "id": "6d27342d", + "id": "c4be9922", "metadata": { "lines_to_next_cell": 0 }, @@ -5461,7 +5461,7 @@ }, { "cell_type": "markdown", - "id": "3c1fbc71", + "id": "f0a3c519", "metadata": {}, "source": [ "Inspecting the output above, we see that when setting up the\n", @@ -5474,7 +5474,7 @@ { "cell_type": "code", "execution_count": 65, - "id": "efdbeda1", + "id": "2dc63d85", "metadata": {}, "outputs": [], "source": [ @@ -5483,7 +5483,7 @@ }, { "cell_type": "markdown", - "id": "38620865", + "id": "15ec1321", "metadata": {}, "source": [ "Let’s look at the predicted probabilities for each of the top 3 choices. First we compute\n", @@ -5495,7 +5495,7 @@ { "cell_type": "code", "execution_count": 66, - "id": "82ceab1c", + "id": "711d5ba7", "metadata": {}, "outputs": [], "source": [ @@ -5505,7 +5505,7 @@ }, { "cell_type": "markdown", - "id": "0e3ae755", + "id": "3b514c1e", "metadata": {}, "source": [ "In order to see the class labels, we must download the index file associated with `imagenet`. {This is avalable from the book website and [s3.amazonaws.com/deep-learning-models/image-models/imagenet_class_index.json](https://s3.amazonaws.com/deep-learning-models/image-models/imagenet_class_index.json).}" @@ -5514,7 +5514,7 @@ { "cell_type": "code", "execution_count": 67, - "id": "921ee168", + "id": "b22f70d8", "metadata": {}, "outputs": [], "source": [ @@ -5528,7 +5528,7 @@ }, { "cell_type": "markdown", - "id": "9fdd7587", + "id": "a5812782", "metadata": {}, "source": [ "We’ll now construct a data frame for each image file\n", @@ -5539,7 +5539,7 @@ { "cell_type": "code", "execution_count": 68, - "id": "e7770017", + "id": "b19c6bd1", "metadata": { "lines_to_next_cell": 2 }, @@ -5592,7 +5592,7 @@ }, { "cell_type": "markdown", - "id": "12862208", + "id": "cd6bd40b", "metadata": {}, "source": [ "We see that the model\n", @@ -5605,7 +5605,7 @@ { "cell_type": "code", "execution_count": 69, - "id": "af2f9856", + "id": "ba80b615", "metadata": { "lines_to_next_cell": 2 }, @@ -5622,7 +5622,7 @@ }, { "cell_type": "markdown", - "id": "d9e8d59c", + "id": "2e6eafaf", "metadata": {}, "source": [ "## IMDB Document Classification\n", @@ -5649,7 +5649,7 @@ { "cell_type": "code", "execution_count": 70, - "id": "afd98123", + "id": "ba6d2d2c", "metadata": { "lines_to_next_cell": 0 }, @@ -5676,7 +5676,7 @@ }, { "cell_type": "markdown", - "id": "28a01855", + "id": "ebeeb069", "metadata": {}, "source": [ "The datasets `imdb_seq_train` and `imdb_seq_test` are\n", @@ -5694,7 +5694,7 @@ { "cell_type": "code", "execution_count": 71, - "id": "5981eb05", + "id": "93bda908", "metadata": {}, "outputs": [ { @@ -5715,7 +5715,7 @@ }, { "cell_type": "markdown", - "id": "b579cb29", + "id": "6de86e76", "metadata": {}, "source": [ "For our first model, we have created a binary feature for each\n", @@ -5728,7 +5728,7 @@ { "cell_type": "code", "execution_count": 72, - "id": "f08024ba", + "id": "40943b7d", "metadata": { "lines_to_next_cell": 0 }, @@ -5746,7 +5746,7 @@ }, { "cell_type": "markdown", - "id": "c070a319", + "id": "9328d75c", "metadata": {}, "source": [ "We’ll use a two-layer model for our first model." @@ -5755,7 +5755,7 @@ { "cell_type": "code", "execution_count": 73, - "id": "7fd34906", + "id": "2117fd9f", "metadata": { "lines_to_next_cell": 0 }, @@ -5783,7 +5783,7 @@ }, { "cell_type": "markdown", - "id": "fcc2a8af", + "id": "845b4d8e", "metadata": {}, "source": [ "We now instantiate our model and look at a summary." @@ -5792,7 +5792,7 @@ { "cell_type": "code", "execution_count": 74, - "id": "56f74fdb", + "id": "66d0b710", "metadata": {}, "outputs": [ { @@ -5836,7 +5836,7 @@ }, { "cell_type": "markdown", - "id": "a32aca43", + "id": "c8bdad40", "metadata": {}, "source": [ "We’ll again use\n", @@ -5854,7 +5854,7 @@ { "cell_type": "code", "execution_count": 75, - "id": "3da7e0bc", + "id": "9df8b4cf", "metadata": {}, "outputs": [], "source": [ @@ -5866,7 +5866,7 @@ }, { "cell_type": "markdown", - "id": "940c8342", + "id": "95cc3b4f", "metadata": {}, "source": [ "Having loaded the datasets into a data module\n", @@ -5877,7 +5877,7 @@ { "cell_type": "code", "execution_count": 76, - "id": "3b6de185", + "id": "73684c66", "metadata": {}, "outputs": [ { @@ -5925,7 +5925,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "57e25e1e102745c18849507d8fe93fe3", + "model_id": "253cf3e077d845569cdc459ef74902b6", "version_major": 2, "version_minor": 0 }, @@ -6376,7 +6376,7 @@ }, { "cell_type": "markdown", - "id": "5985c44a", + "id": "f2e03c88", "metadata": {}, "source": [ "Evaluating the test error yields roughly 86% accuracy." @@ -6385,7 +6385,7 @@ { "cell_type": "code", "execution_count": 77, - "id": "97f86a32", + "id": "01c6e5ff", "metadata": { "lines_to_next_cell": 2 }, @@ -6393,7 +6393,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "57a8b619aaf049b4b06550a47d5e3611", + "model_id": "f2b40a42021f4a9183c3d7d2d545e83b", "version_major": 2, "version_minor": 0 }, @@ -6447,7 +6447,7 @@ }, { "cell_type": "markdown", - "id": "3d677b24", + "id": "c1976042", "metadata": {}, "source": [ "### Comparison to Lasso\n", @@ -6460,7 +6460,7 @@ { "cell_type": "code", "execution_count": 78, - "id": "e36e1542", + "id": "4d5b9d1d", "metadata": {}, "outputs": [], "source": [ @@ -6473,7 +6473,7 @@ }, { "cell_type": "markdown", - "id": "8216f2e7", + "id": "b78eb64e", "metadata": {}, "source": [ "Similar to what we did in\n", @@ -6484,7 +6484,7 @@ { "cell_type": "code", "execution_count": 79, - "id": "ee6d6859", + "id": "e2a88e57", "metadata": { "lines_to_next_cell": 0 }, @@ -6497,7 +6497,7 @@ }, { "cell_type": "markdown", - "id": "cf9b703f", + "id": "81380bee", "metadata": {}, "source": [ "With `LogisticRegression()` the regularization parameter\n", @@ -6509,7 +6509,7 @@ { "cell_type": "code", "execution_count": 80, - "id": "35a6e3c2", + "id": "9a3cf7a3", "metadata": { "lines_to_next_cell": 0 }, @@ -6524,7 +6524,7 @@ }, { "cell_type": "markdown", - "id": "49cec308", + "id": "9ee15d44", "metadata": {}, "source": [ "The path of 50 values takes approximately 40 seconds to run." @@ -6533,7 +6533,7 @@ { "cell_type": "code", "execution_count": 81, - "id": "a8943a6a", + "id": "b46f02c2", "metadata": {}, "outputs": [], "source": [ @@ -6549,7 +6549,7 @@ }, { "cell_type": "markdown", - "id": "4f20738d", + "id": "eb3e3871", "metadata": {}, "source": [ "The coefficient and intercepts have an extraneous dimension which can be removed\n", @@ -6559,7 +6559,7 @@ { "cell_type": "code", "execution_count": 82, - "id": "08268ae5", + "id": "e5fb6afa", "metadata": { "lines_to_next_cell": 0 }, @@ -6571,7 +6571,7 @@ }, { "cell_type": "markdown", - "id": "94991ca8", + "id": "f66fa37c", "metadata": {}, "source": [ "We’ll now make a plot to compare our neural network results with the\n", @@ -6581,7 +6581,7 @@ { "cell_type": "code", "execution_count": 83, - "id": "e98f4506", + "id": "cad28f1a", "metadata": { "lines_to_next_cell": 0 }, @@ -6613,7 +6613,7 @@ }, { "cell_type": "markdown", - "id": "aac5c38c", + "id": "c58ff7cb", "metadata": {}, "source": [ "Notice the use of `%%capture`, which suppresses the displaying of the partially completed figure. This is useful\n", @@ -6624,7 +6624,7 @@ { "cell_type": "code", "execution_count": 84, - "id": "6925d53a", + "id": "a66ecdd8", "metadata": { "lines_to_next_cell": 0 }, @@ -6660,7 +6660,7 @@ }, { "cell_type": "markdown", - "id": "2a8b7736", + "id": "fa1e2550", "metadata": {}, "source": [ "From the graphs we see that the accuracy of the lasso logistic regression peaks at about $0.88$, as it does for the neural network.\n", @@ -6671,7 +6671,7 @@ { "cell_type": "code", "execution_count": 85, - "id": "6d1f7885", + "id": "62440c1c", "metadata": { "lines_to_next_cell": 2 }, @@ -6687,7 +6687,7 @@ }, { "cell_type": "markdown", - "id": "4f79c23a", + "id": "fe67520f", "metadata": {}, "source": [ "## Recurrent Neural Networks\n", @@ -6697,7 +6697,7 @@ }, { "cell_type": "markdown", - "id": "3d376496", + "id": "a9bcdd2a", "metadata": {}, "source": [ "### Sequential Models for Document Classification\n", @@ -6717,7 +6717,7 @@ { "cell_type": "code", "execution_count": 86, - "id": "b5c2b72c", + "id": "c73d6e28", "metadata": {}, "outputs": [], "source": [ @@ -6731,7 +6731,7 @@ }, { "cell_type": "markdown", - "id": "4d1b3ef1", + "id": "1edd3143", "metadata": {}, "source": [ "The first layer of the RNN is an embedding layer of size 32, which will be\n", @@ -6748,7 +6748,7 @@ }, { "cell_type": "markdown", - "id": "fe55c7fa", + "id": "b73e08ab", "metadata": {}, "source": [ "The second layer is an LSTM with 32 units, and the output\n", @@ -6760,7 +6760,7 @@ { "cell_type": "code", "execution_count": 87, - "id": "8985cdb1", + "id": "cc9bbd00", "metadata": { "lines_to_next_cell": 0 }, @@ -6781,7 +6781,7 @@ }, { "cell_type": "markdown", - "id": "78fc988d", + "id": "5e9f28dd", "metadata": {}, "source": [ "We instantiate and take a look at the summary of the model, using the\n", @@ -6791,7 +6791,7 @@ { "cell_type": "code", "execution_count": 88, - "id": "79184187", + "id": "5c9ffb46", "metadata": {}, "outputs": [ { @@ -6833,7 +6833,7 @@ }, { "cell_type": "markdown", - "id": "d5b2c85e", + "id": "5087ff10", "metadata": {}, "source": [ "The 10,003 is suppressed in the summary, but we see it in the\n", @@ -6843,7 +6843,7 @@ { "cell_type": "code", "execution_count": 89, - "id": "29036a47", + "id": "a2d6ddfd", "metadata": {}, "outputs": [], "source": [ @@ -6854,7 +6854,7 @@ { "cell_type": "code", "execution_count": 90, - "id": "0a31576a", + "id": "1d76f970", "metadata": { "lines_to_next_cell": 0 }, @@ -6896,7 +6896,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4abe857cc251478b8855f53164fa5b45", + "model_id": "e24a4171456b412db47d6577cb336c37", "version_major": 2, "version_minor": 0 }, @@ -7206,7 +7206,7 @@ }, { "cell_type": "markdown", - "id": "a20a2113", + "id": "1cbf1b42", "metadata": {}, "source": [ "The rest is now similar to other networks we have fit. We\n", @@ -7216,13 +7216,13 @@ { "cell_type": "code", "execution_count": 91, - "id": "b2602a79", + "id": "d8a60d35", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1648bfd17bc04050b412c36afb32e092", + "model_id": "4e512ef8a7d348eea7f423a9ed96c86e", "version_major": 2, "version_minor": 0 }, @@ -7240,8 +7240,8 @@ "┃ Runningstage.testing ┃\n", "┃ metric DataLoader 0 ┃\n", "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│ test_accuracy 0.8388800024986267 │\n", - "│ test_loss 0.8145671486854553 │\n", + "│ test_accuracy 0.8480799794197083 │\n", + "│ test_loss 0.7677657604217529 │\n", "└───────────────────────────┴───────────────────────────┘\n", "\n" ], @@ -7250,8 +7250,8 @@ "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.8388800024986267 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.8145671486854553 \u001b[0m\u001b[35m \u001b[0m│\n", + "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.8480799794197083 \u001b[0m\u001b[35m \u001b[0m│\n", + "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.7677657604217529 \u001b[0m\u001b[35m \u001b[0m│\n", "└───────────────────────────┴───────────────────────────┘\n" ] }, @@ -7261,7 +7261,7 @@ { "data": { "text/plain": [ - "[{'test_loss': 0.8145671486854553, 'test_accuracy': 0.8388800024986267}]" + "[{'test_loss': 0.7677657604217529, 'test_accuracy': 0.8480799794197083}]" ] }, "execution_count": 91, @@ -7275,7 +7275,7 @@ }, { "cell_type": "markdown", - "id": "54857d49", + "id": "deca21cd", "metadata": {}, "source": [ "We once again show the learning progress, followed by cleanup." @@ -7284,7 +7284,7 @@ { "cell_type": "code", "execution_count": 92, - "id": "32c3e3da", + "id": "65d7276c", "metadata": { "lines_to_next_cell": 2 }, @@ -7301,7 +7301,7 @@ }, { "data": { - "image/png": "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CxQREaFXXnlFN910k84//3yNGjXqnMevqalRamqqoqKi9P7776u8vNyj/0idLl26aO3aterdu7f27NmjOXPmqEuXLvr1r3+tqVOn6uOPP9aWLVv0+uuvS5IiG3gfKisrlZKSoqSkJH3wwQc6dOiQbrvtNs2bN88jZOXl5SkmJkZ5eXnav3+/pk6dqmHDhmnOnDnnfD3wrYKCggavytVxuVwqKipSQUEBw2yBNo4rIa3ELbfcoi+++EJvvvmme9uaNWs0ZcoU9e3bV/fcc4+GDRum/v37684779S4ceP04osvNunYr7/+uj799FM9++yzSkhI0JVXXqlly5bV22/RokW6/PLLFR8frwkTJuiee+5xP0fHjh3VuXNntWvXTtHR0YqOjlbHjh3rHWPdunU6ceKEnn32WV1yySW66qqr9NRTT+m5555TWVmZe79u3brpqaee0kUXXaSf/vSn+slPfqLc3Fxv3zb4gC9XuwXQunAl5FzCw2uvSDTFW29J48efe79XX5WuvLJpz91EF110kS6//HI988wzGj16tPbv36+CggItXbpUTqdTy5Yt04svvqji4mJVV1erqqqqyX0+9u7dq7i4OPXu3du9LSkpqd5+GzZs0BNPPKEvvvhCx44d0w8//OD1Akd79+5VQkKCOp12BeiKK65QTU2N9u3bp6ioKEnSxRdf7DFDZkxMjPbs2ePVc8E3fLnaLYDWhSsh52Kz1TaJNOV27bWSw1H7mMaOFRdXu19TjtfYcRpx66236qWXXtLRo0e1Zs0anX/++fqv//ovPfroo8rKytKCBQuUl5enXbt2KSUlRdXV1Ra8QbW2bdumGTNmaPz48fr73/+uDz/8UPfdd5+lz3G69u3be9y32WyqqanxyXPBO8nJyXI4HO5mwTPZbDbFxcUpOTnZz5UBCDSEECvZ7VJWVu3fz/wPuO5+Zmbtfj5w/fXXKyQkROvWrdOzzz6rW265RTabTe+8844mTpyoG2+8UQkJCerfv78+++yzJh930KBBKioq8rh8/t5773ns8+6776pv37667777NGLECA0YMEAHDhzw2Cc0NPScnREHDRqk3bt3q7Ky0r3tnXfeUUhIiAYOHNjkmmFO3Wq3kuoFEatWuwXQOhBCrJaaKmVnS7GxntsdjtrtFqzy2ZjOnTtr6tSpWrhwoUpKSnTzzTdLkgYMGKCt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NpslNVVUVCguLk5FRUWKiIiw5JjwDz674MVnF7z47IJXeXm5+vTpo+7du1tyPKMhpGfPnrLb7SorK/PYXlZWpujo6CYdo3379rr00ku1f//+Bn8eFhamsLAwj21du3ZtVr3nEhERwRcqSPHZBS8+u+DFZxe8QkKs6VJqtGNqaGiohg8frtzcXPe2mpoa5ebmelztOBun06k9e/YoJibGV2UCAAAfMN4ck5GRoVmzZmnEiBEaNWqUMjMzVVlZqdmzZ0uSZs6cqdjYWC1fvlyStHTpUv3oRz/SBRdcoCNHjujRRx/VgQMHdNttt5l8GQAAwEvGQ8jUqVP17bff6v7771dpaamGDRumLVu2uDurHjx40OOyz3/+8x/NmTNHpaWl6tatm4YPH653331XgwcPNvUSFBYWpiVLltRr9kHg47MLXnx2wYvPLnhZ/dnZXFaNswEAAPCC8cnKAABA20QIAQAARhBCAACAEYQQAABgBCHEAitXrlR8fLw6dOigxMREbd++3XRJOIcHHnhANpvN43bRRReZLgsNeOuttzRhwgT17t1bNptNmzdv9vi5y+XS/fffr5iYGHXs2FFjx47V559/bqZYeDjXZ3fzzTfX+x6OGzfOTLHwsHz5co0cOVJdunRRr169NGnSJO3bt89jnxMnTmju3Lnq0aOHOnfurClTptSbfPRcCCEttGHDBmVkZGjJkiXauXOnEhISlJKSokOHDpkuDedw8cUXq6SkxH17++23TZeEBlRWViohIUErV65s8OePPPKInnjiCa1atUrvv/++OnXqpJSUFJ04ccLPleJM5/rsJGncuHEe38P169f7sUI05s0339TcuXP13nvvaevWrTp58qSuvfZaVVZWuve5++679T//8z/auHGj3nzzTX3zzTdKTU317olcaJFRo0a55s6d677vdDpdvXv3di1fvtxgVTiXJUuWuBISEkyXAS9Jcm3atMl9v6amxhUdHe169NFH3duOHDniCgsLc61fv95AhWjMmZ+dy+VyzZo1yzVx4kQj9cA7hw4dcklyvfnmmy6Xq/Z71r59e9fGjRvd++zdu9clybVt27YmH5crIS1QXV2tHTt2aOzYse5tISEhGjt2rLZt22awMjTF559/rt69e6t///6aMWOGDh48aLokeKmwsFClpaUe38HIyEglJibyHQwS+fn56tWrlwYO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", + "image/png": "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T6SFswghNmto3LP2V4QTE6VO/uCuWbNGDzzwgHbv3u1t69Spk/e/LcuSx+NRu3Znfut79uzpVx2hoaGKiYnx6z5Aa2L3D4iUlBTFx8efce5GSkpKk2u280gIf3os/HnMQJ1IC+cxHHMGlmWpoqKiUZeysjLdddddpx33zMzMVFlZWaP219g5wzExMd5LVFSUXC6X9/qnn36qzp0767XXXtOwYcMUFhamt99+W59//rkmTJig6OhoderUSSNGjNAbb7zhs99Th2NcLpf+93//V5MmTVJERIT69++vl19+2Xv7qcMxK1euVJcuXfT6669r4MCB6tSpk8aOHesTmk6cOKG77rpLXbp0Uffu3TV37lxlZGRo4sSJjXyHAHs4MQzh9NwNuznVY1EbxhrqtXW5XEpISGhWGENgIoScwdGjR9WpU6dGXaKiolRYWNjgvizL0oEDBxQVFdWo/dm5aut9992n//mf/9GuXbs0ePBglZeXa9y4ccrNzdWHH36osWPHavz48d6TBzZk8eLFuu666/TRRx9p3LhxuuGGG3T48OEGtz969Kgef/xxvfDCC9q0aZP27dune+65x3v7r371K/35z3/WihUr9M4776isrEzr16+362kjSNk958rJiZOBdAipUz0WgRbG0IJsOQNNADndyXeOHTtmffLJJ9axY8e8beXl5Y062ZATl/Lycr+f34oVK6yoqCjv9dqTJa1fv/6M973gggusp556ynu9T58+1pNPPum9LslasGBBndfmtdde83msf//7395aJFl79uzx3mfZsmVWdHS093p0dLT12GOPea+fOHHCOuuss6wJEyY09ik3Sn3vLQKTEydtc/JEaLVOnDhh5eXlWatWrbLy8vKafSIxJzh9ErT63ruEhIQ2c8K9YGD3CeyYE3IGERERKi8vb9S2mzZt0rhx48643auvvqof/vCHjXpsuwwfPtznenl5uR588EG98sorKioq0okTJ3Ts2LEz9oQMHjzY+98dO3ZUZGSkDh482OD2EREROvvss73XY2NjvduXlpaqpKREI0eO9N7udrs1bNgwVVdX+/X80DY4NeeqJSZOBsIqlk6vQOrkKqEITISQM3C5XI0+QuTqq69u1CS0q6++usU/dKc+h3vuuUcbN27U448/rnPOOUfh4eFKT09XVVXVaffTvn17n+sul+u0gaG+7et7bYAzcerIDYmJkyerHT6qb4KuHec1CYQwhpbDnBAbBdK45zvvvKObb75ZkyZN0qBBgxQTE6Mvv/yyRWuIiopSdHS0PvjgA2+bx+PRtm3bWrQOBAYn15pg4qSvtLQ0ffnll8rLy9OqVauUl5envXv3tqr5KwgOhBCbBcoktP79+ysnJ0fbt2/Xjh07NHXqVCNDILNmzdKSJUv017/+Vbt371ZmZqb+/e9/c/Zi1OHkkEkg/YBoKaxAipZACHFAIPyKeOKJJ9S1a1ddeumlGj9+vFJTU3XxxRe3eB1z587VlClTNG3aNCUnJ6tTp05KTU3l/C6ooyUW/gqEHxBAMOEEdifhJGfmVVdXa+DAgbruuuv08MMP27Zf3tvA1xInbat9HCZOAvWz+wR2TEyFUV999ZX+/ve/6/LLL1dlZaWefvpp7d27V1OnTjVdGloZp4/cOPlxmDgJtAyGY2BUSEiIVq5cqREjRuiyyy7Tzp079cYbb2jgwIGmS0MrxJAJEFzoCYFRCQkJeuedd0yXAYc4MbTBWhNA8CCEAHCEk2eTZsgECA4MxwCwnRMngwMQfAghAGzl5MngAAQXQggAWzm5simA4EIIAWCrljgZHIDgQAgBYCtOBgegsQghTvF4pPx8afXqmn9b+fj3qFGjNHv2bO/1xMREZWVlnfY+LpdL69evb/Zj27UfNJ3H41F+fr5Wr16t/Pz8Zs3X4GRwABqLEOKEnBwpMVEaPVqaOrXm38TEmnYHjB8/XmPHjq33toKCArlcLn300Ud+7fODDz7Q7bffbkd5Xg8++KCGDh1ap72oqEjXXHONrY+FxsvJyVFiYqJGjx6tqVOnavTo0UpMTGzyESycDA5AYxFC7JaTI6WnS6dOzCssrGl3IIjccsst2rhxY72TAVesWKHhw4dr8ODBfu2zZ8+eioiIsKvE04qJiVFYWFiLPBZ8OXUoLSubAmgMQsiZWJZUUdG4S1mZdNddNfepbz+SlJlZs11j9tfIcwv++Mc/Vs+ePbVy5Uqf9vLycq1du1YTJ07UlClTFBcXp4iICA0aNEirV68+7T5PHY757LPP9MMf/lAdOnTQ+eefr40bN9a5z9y5c3XuuecqIiJC/fr108KFC3X8+HFJ0sqVK7V48WLt2LFDLpdLLpfLW++pwzE7d+7UFVdcofDwcHXv3l233367ysvLvbfffPPNmjhxoh5//HHFxsaqe/fumjFjhvexgpmdwyZOH0obCGeTBmAWK6aeydGjUqdO9uzLsmp6SKKiGrd9ebnUseMZN2vXrp2mTZumlStXav78+d4u77Vr18rj8ejGG2/U2rVrNXfuXEVGRuqVV17RTTfdpLPPPlsjR4484/6rq6uVlpam6Ohovf/++yotLfWZP1Krc+fOWrlypXr37q2dO3fqtttuU+fOnXXvvfdq8uTJ+vjjj7Vhwwa98cYbkqSoel6HiooKpaamKjk5WR988IEOHjyoW2+9VTNnzvQJWXl5eYqNjVVeXp727NmjyZMna+jQobrtttvO+HwCld0rkPpzKG1TVydlZVMAp2W1MaWlpZYkq7S0tM5tx44dsz755BPr2LFj/2ksL7esmvjQ8pfy8kY/r127dlmSrLy8PG9bSkqKdeONN9a7/Y9+9CPrv//7v73XL7/8ciszM9N7vU+fPtaTTz5pWZZlvf7661a7du2swsJC7+2vvfaaJclat25dgzU99thj1rBhw7zXFy1aZA0ZMqTOdifv57nnnrO6du1qlZ/03F955RUrJCTEKi4utizLsjIyMqw+ffpYJ06c8G7z05/+1Jo8eXKDtdT73gaQl156yXK5XJYkn4vL5bJcLpf10ksv+b3PVatW1dlffZdVq1Y58IwABKLTfYc2BcMxZxIRUdMj0ZjLq682bp+vvtq4/fkxJ+O8887TpZdequeff16StGfPHhUUFOiWW26Rx+PRww8/rEGDBqlbt27q1KmTXn/9de3bt69R+961a5cSEhLUu3dvb1tycnKd7dasWaPLLrtMMTEx6tSpkxYsWNDoxzj5sYYMGaKOJ/UAXXbZZaqurtbu3bu9bRdccIHPxMbY2FgdPHjQr8cKFE4Nm3AoLQDTCCFn4nLVDIk05nL11VJ8fM19GtpXQkLNdo3ZX0P7acAtt9yil156Sd9++61WrFihs88+W5dffrkee+wxLV26VHPnzlVeXp62b9+u1NRUVVVV2fAC1di8ebNuuOEGjRs3Tn/729/04Ycfav78+bY+xsnat2/vc93lcqm6utqRxzLNqRVIOZQWgGmEEDu53dL3hybWCRC117OyarZzwHXXXaeQkBCtWrVKf/zjH/Vf//VfcrlceueddzRhwgTdeOONGjJkiPr166d//vOfjd7vwIEDtX//fp8VLt977z2fbd5991316dNH8+fP1/Dhw9W/f3999dVXPtuEhoae8df6wIEDtWPHDlVUVHjb3nnnHYWEhGjAgAGNrjmYOLUCKYfSAjCNEGK3tDQpO1s65dBExcfXtDt4ZECnTp00efJkzZs3T0VFRbr55pslSf3799fGjRv17rvvateuXfrZz36mkpKSRu93zJgxOvfcc5WRkaEdO3aooKBA8+fP99mmf//+2rdvn1588UV9/vnn+s1vfqN169b5bJOYmKi9e/dq+/btOnTokCorK+s81g033KAOHTooIyNDH3/8sfLy8jRr1izddNNNio6O9v9FCQJODptwKC0AkwghTkhLk778UsrLk1atqvl3715HA0itW265Rf/+97+VmprqncOxYMECXXzxxUpNTdWoUaMUExOjiRMnNnqfISEhWrdunY4dO6aRI0fq1ltv1S9/+UufbX7yk5/o7rvv1syZMzV06FC9++67Wrhwoc821157rcaOHavRo0erZ8+e9R4mHBERoddff12HDx/WiBEjlJ6eriuvvFJPP/20/y9GkHB62IRDaQGY4rLqm+0WxMrKyhQVFaXS0lJFRkb63Pbdd99p79696tu3rzp06GCoQjgh0N/b2kXFJPlMUK0NJvRaAGgJp/sObQp6QoAAwLAJgGDEYmVAgEhLS9OECRNUUFCgoqIixcbGKiUlhYmjAAIWIQQIIKxACiCYMBwDAACMIITUo43N1W0TeE8BoPVhOOYktatwHj16VOHh4YargZ2OHj0qqe5Kq07xeDzM3QCAMyCEnMTtdqtLly7ec5BEREQ0uDYDAoNlWTp69KgOHjyoLl26tEgQsPtstwAQrAghp4iJiZGkoD0ZWlvVpUsX73vrpNr1PE4d/iksLFR6ejqH0wLASVisrAEej0fHjx9vwcrglPbt27dID4jH41FiYmKDJ5tzuVyKj4/X3r17GZoBEJDsXqyMnpAGuN1uvijgF3/OdsthtgDA0TGAbZw62y0ABCtCCGATJ892CwDBiBAC2MTps90CQLAhhAA2cbvdWrp0qSTVCSK117OysphrBADfI4SgzfJ4PMrPz9fq1auVn58vj8fT7H1ytlsAaDwO0UWb5PSCYqyYCiAY2f0dSghBm9PQgmK1Qyb0WABA/ez+DmU4Bm2Kx+NRZmZmvSe0q22bPXu2LUMzAIDTI4SgTfFnQTEAgLMIIWhT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JJzBgw8+KJfL5XM577zzTJeFemzatEnjx49X79695XK5tH79ep/bLcvSAw88oNjYWIWHh2vMmDH67LPPzBQLH2d6726++eY6n8OxY8eaKRY+lixZohEjRqhz587q1auXJk6cqN27d/ts891332nGjBnq3r27OnXqpGuvvbbO4qNnQghppjVr1mjOnDlatGiRtm3bpiFDhig1NVUHDx40XRrO4IILLlBRUZH38vbbb5suCfWoqKjQkCFDtGzZsnpvf/TRR/Wb3/xGzz77rN5//3117NhRqamp+u6771q4UpzqTO+dJI0dO9bnc7h69eoWrBANeeuttzRjxgy999572rhxo44fP66rr75aFRUV3m3uvvtu/d///Z/Wrl2rt956S19//bXS0tL8eyALzTJy5EhrxowZ3usej8fq3bu3tWTJEoNV4UwWLVpkDRkyxHQZ8JMka926dd7r1dXVVkxMjPXYY495244cOWKFhYVZq1evNlAhGnLqe2dZlpWRkWFNmDDBSD3wz8GDBy1J1ltvvWVZVs3nrH379tbatWu92+zatcuSZG3evLnR+6UnpBmqqqq0detWjRkzxtsWEhKiMWPGaPPmzQYrQ2N89tln6t27t/r166cbbrhB+/btM10S/LR3714VFxf7fAajoqKUlJTEZzBA5Ofnq1evXhowYIDuvPNO/etf/zJdEupRWloqSd4T123dulXHjx/3+eydd955Ouuss/z67BFCmuHQoUPyeDze1V1rRUdHq7i42FBVaIykpCStXLlSGzZs0DPPPKO9e/cqJSVF3377renS4IfazxmfwcA0duxY/fGPf1Rubq5+9atf6a233tI111wjj8djujScpLq6WrNnz9Zll12mCy+8UFLNZy80NLTOCWH9/ewZX7YdMOGaa67x/vfgwYOVlJSkPn366C9/+YtuueUWg5UBbcf111/v/e9BgwZp8ODBOvvss5Wfn68rr7zSYGU42YwZM/Txxx87Mm+OnpBm6NGjh9xud53ZwCUlJYqJiTFUFZqiS5cuOvfcc7Vnzx7TpcAPtZ8zPoPBoV+/furRowefw1Zk5syZ+tvf/qa8vDzFx8d722NiYlRVVaUjR474bO/vZ48Q0gyhoaEaNmyYcnNzvW3V1dXKzc1VcnKywcrgr/Lycn3++eeKjY01XQr80LdvX8XExPh8BsvKyvT+++/zGQxABw4c0L/+9S8+h62AZVmaOXOm1q1bpzfffFN9+/b1uX3YsGFq3769z2dv9+7d2rdvn1+fPYZjmmnOnDnKyMjQ8OHDNXLkSGVlZamiokLTp083XRpO45577tH48ePVp08fff3111q0aJHcbremTJliujScory83OeX8d69e7V9+3Z169ZNZ511lmbPnq1f/OIX6t+/v/r27auFCxeqd+/emjhxormiIen07123bt20ePFiXXvttYqJidHnn3+ue++9V+ecc45SU1MNVg2pZghm1apV+utf/6rOnTt753lERUUpPDxcUVFRuuWWWzRnzhx169ZNkZGRmjVrlpKTk3XJJZc0/oHsPoynLXrqqaess846ywoNDbVGjhxpvffee6ZLwhlMnjzZio2NtUJDQ624uDhr8uTJ1p49e0yXhXrk5eVZkupcMjIyLMuqOUx34cKFVnR0tBUWFmZdeeWV1u7du80WDcuyTv/eHT161Lr66qutnj17Wu3bt7f69Olj3XbbbVZxcbHpsmFZ9b5vkqwVK1Z4tzl27Jj185//3OratasVERFhTZo0ySoqKvLrcVzfPxgAAECLYk4IAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCICg4HK5tH79etNlAPADIQRAs918881yuVx1LmPHjjVdGoBWjBPYAbDF2LFjtWLFCp+2sLAwQ9UACAT0hACwRVhYmGJiYnwuXbt2lVQzVPLMM8/ommuuUXh4uPr166fs7Gyf++/cuVNXXHGFwsPD1b17d91+++0qLy/32eb555/XBRdcoLCwMMXGxmrmzJk+tx86dEiTJk1SRESE+vfvr5dfftnZJw2gWQghAFrEwoULde2112rHjh264YYbdP3112vXrl2SpIqKCqWmpqpr16764IMPtHbtWr3xxhs+IeOZZ57RjBkzdPvtt2vnzp16+eWXdc455/g8xuLFi3Xdddfpo48+0rhx43TDDTfo8OHDLfo8AfjB1nP/AmiTMjIyLLfbbXXs2NHn8stf/tKyrJrTgt9xxx0+90lKSrLuvPNOy7Is67nnnrO6du1qlZeXe29/5ZVXrJCQEO+p3Xv37m3Nnz+/wRokWQsWLPBeLy8vtyRZr732mm3PE4C9mBMCwBajR4/WM88849PWrVs3738nJyf73JacnKzt27dLknbt2qUhQ4aoY8eO3tsvu+wyVVdXa/fu3XK5XPr666915ZVXnraGwYMHe/+7Y8eOioyM1MGDB5v6lAA4jBACwBYdO3asMzxil/Dw8EZt1759e5/rLpdL1dXVTpQEwAbMCQHQIt5777061wcOHChJGjhwoHbs2KGKigrv7e+8845CQkI0YMAAde7cWYmJicrNzW3RmgE4i54QALaorKxUcXGxT1u7du3Uo0cPSdLatWs1fPhw/eAHP9Cf//xnbdmyRcuXL5ck3XDDDVq0aJEyMjL04IMP6ptvvtGsWbN00003KTo6WpL04IMP6o477lCvXr10zTXX6Ntvv9U777yjWbNmtewTBWAbQggAW2zYsEGxsbE+bQMGDNCnn34qqebIlRdffFE///nPFRsbq9WrV+v888+XJEVEROj1119XZmamRowYoYiICF177bV64oknvPvKyMjQd999pyeffFL33HOPevToofT09JZ7ggBs57IsyzJdBIDg5nK5tG7dOk2cONF0KQBaEeaEAAAAIwghAADACOaEAHAco74A6kNPCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMCI/w+qg7/ja0Jp/AAAAABJRU5ErkJggg==", "text/plain": [ "
" ] @@ -7325,7 +7325,7 @@ { "cell_type": "code", "execution_count": 93, - "id": "be5a979e", + "id": "c6f2d6c4", "metadata": { "lines_to_next_cell": 2 }, @@ -7341,7 +7341,7 @@ }, { "cell_type": "markdown", - "id": "240618c9", + "id": "f920c659", "metadata": {}, "source": [ "### Time Series Prediction\n", @@ -7353,7 +7353,7 @@ { "cell_type": "code", "execution_count": 94, - "id": "cf219016", + "id": "f3e17682", "metadata": {}, "outputs": [], "source": [ @@ -7368,7 +7368,7 @@ }, { "cell_type": "markdown", - "id": "2ebf00d3", + "id": "e621c2eb", "metadata": {}, "source": [ "Next we set up the lagged versions of the data, dropping\n", @@ -7378,7 +7378,7 @@ { "cell_type": "code", "execution_count": 95, - "id": "c0d6bb22", + "id": "78707eda", "metadata": {}, "outputs": [], "source": [ @@ -7393,7 +7393,7 @@ }, { "cell_type": "markdown", - "id": "53d15ddf", + "id": "bb83e654", "metadata": {}, "source": [ "Finally, we extract the response, training indicator, and drop the current day’s `DJ_return` and\n", @@ -7403,7 +7403,7 @@ { "cell_type": "code", "execution_count": 96, - "id": "9de511d5", + "id": "4d894824", "metadata": { "lines_to_next_cell": 2 }, @@ -7431,7 +7431,7 @@ }, { "cell_type": "markdown", - "id": "9c61eaa2", + "id": "f1889769", "metadata": {}, "source": [ "We first fit a simple linear model and compute the $R^2$ on the test data using\n", @@ -7441,7 +7441,7 @@ { "cell_type": "code", "execution_count": 97, - "id": "89666a56", + "id": "4d7f5ce0", "metadata": {}, "outputs": [ { @@ -7463,7 +7463,7 @@ }, { "cell_type": "markdown", - "id": "c3997039", + "id": "02c7294f", "metadata": {}, "source": [ "We refit this model, including the factor variable `day_of_week`.\n", @@ -7474,7 +7474,7 @@ { "cell_type": "code", "execution_count": 98, - "id": "23ebf124", + "id": "a6b371bb", "metadata": { "lines_to_next_cell": 0 }, @@ -7487,7 +7487,7 @@ }, { "cell_type": "markdown", - "id": "8df4e475", + "id": "92fda2e1", "metadata": {}, "source": [ " Note that we do not have\n", @@ -7498,7 +7498,7 @@ { "cell_type": "code", "execution_count": 99, - "id": "4190a4dc", + "id": "a2a8cc85", "metadata": { "lines_to_next_cell": 0 }, @@ -7521,7 +7521,7 @@ }, { "cell_type": "markdown", - "id": "d98cc235", + "id": "68a22c64", "metadata": {}, "source": [ "This model achieves an $R^2$ of about 46%." @@ -7529,7 +7529,7 @@ }, { "cell_type": "markdown", - "id": "131bfc1c", + "id": "1cca42e4", "metadata": {}, "source": [ "To fit the RNN, we must reshape the data, as it will expect 5 lagged\n", @@ -7550,7 +7550,7 @@ { "cell_type": "code", "execution_count": 100, - "id": "a2b41f92", + "id": "8ee6e6a3", "metadata": { "lines_to_next_cell": 0 }, @@ -7581,7 +7581,7 @@ }, { "cell_type": "markdown", - "id": "7b301214", + "id": "a1f41334", "metadata": {}, "source": [ "We now reshape the data." @@ -7590,7 +7590,7 @@ { "cell_type": "code", "execution_count": 101, - "id": "dde73c9e", + "id": "d35ceb54", "metadata": { "lines_to_next_cell": 0 }, @@ -7613,7 +7613,7 @@ }, { "cell_type": "markdown", - "id": "4fa6cd7a", + "id": "11137e1d", "metadata": {}, "source": [ "By specifying the first size as -1, `numpy.reshape()` deduces its size based on the remaining arguments.\n", @@ -7628,7 +7628,7 @@ { "cell_type": "code", "execution_count": 102, - "id": "6f9d6357", + "id": "9e3dc6d5", "metadata": {}, "outputs": [], "source": [ @@ -7649,7 +7649,7 @@ }, { "cell_type": "markdown", - "id": "a5d720e7", + "id": "1fd566f7", "metadata": {}, "source": [ "We fit the model in a similar fashion to previous networks. We\n", @@ -7659,14 +7659,13 @@ "early stopping, since then the test performance would be biased.\n", "\n", "We form the training dataset similar to\n", - "our `Hitters` example.\n", - " " + "our `Hitters` example." ] }, { "cell_type": "code", "execution_count": 103, - "id": "a21ca47e", + "id": "df5e5ab6", "metadata": {}, "outputs": [], "source": [ @@ -7680,7 +7679,7 @@ }, { "cell_type": "markdown", - "id": "0d627892", + "id": "16565d83", "metadata": {}, "source": [ "Following our usual pattern, we inspect the summary." @@ -7689,7 +7688,7 @@ { "cell_type": "code", "execution_count": 104, - "id": "8fa26b87", + "id": "d7f49bec", "metadata": { "lines_to_next_cell": 0 }, @@ -7732,7 +7731,7 @@ }, { "cell_type": "markdown", - "id": "065db586", + "id": "ad57780a", "metadata": {}, "source": [ "We again put the two datasets into a data module, with a\n", @@ -7742,7 +7741,7 @@ { "cell_type": "code", "execution_count": 105, - "id": "9b871361", + "id": "ea7ce0f4", "metadata": { "lines_to_next_cell": 0 }, @@ -7757,7 +7756,7 @@ }, { "cell_type": "markdown", - "id": "8e6d61d8", + "id": "d0d60c8b", "metadata": {}, "source": [ "We run some data through our model to be sure the sizes match up correctly." @@ -7766,7 +7765,7 @@ { "cell_type": "code", "execution_count": 106, - "id": "b63d1f85", + "id": "ccd77738", "metadata": {}, "outputs": [ { @@ -7789,7 +7788,7 @@ }, { "cell_type": "markdown", - "id": "7fc69ade", + "id": "c9397b7f", "metadata": {}, "source": [ "We follow our previous example for setting up a trainer for a\n", @@ -7800,7 +7799,7 @@ { "cell_type": "code", "execution_count": 107, - "id": "c5f32a4f", + "id": "96e04e3f", "metadata": {}, "outputs": [], "source": [ @@ -7813,7 +7812,7 @@ }, { "cell_type": "markdown", - "id": "ed00be6a", + "id": "9d7ef6fc", "metadata": {}, "source": [ "Fitting the model should by now be familiar.\n", @@ -7823,7 +7822,7 @@ { "cell_type": "code", "execution_count": 108, - "id": "6bd98eb9", + "id": "fc6ba2ca", "metadata": { "lines_to_next_cell": 2 }, @@ -7865,7 +7864,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f50cb3862a6e4ddcbcb7131a9c3e6c07", + "model_id": "cd881313814b4b319883de36a456b21e", "version_major": 2, "version_minor": 0 }, @@ -8537,7 +8536,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0e613a523fb24350a02e4af53fc31c0b", + "model_id": "c0851768dd544162913f87e0e0cb118e", "version_major": 2, "version_minor": 0 }, @@ -8551,7 +8550,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c4db1eab382549f1b1beddfad3368138", + "model_id": "6cb1dc51cbad4e1f829a074e29d3a47e", "version_major": 2, "version_minor": 0 }, @@ -8565,7 +8564,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fe986a9354124fab8835d0b2d93529dd", + "model_id": "608984e04fc847d7860dfb48bbcdda9f", "version_major": 2, "version_minor": 0 }, @@ -8579,7 +8578,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b8cb7c8dcfc8407e9bcb453d75fec4fb", + "model_id": "bef4bc23212c41c497e518473db55672", "version_major": 2, "version_minor": 0 }, @@ -8593,7 +8592,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b3bb249322a440fea649e953c6f8e6f9", + "model_id": "890d82c78d59444ea97f6000b0d17fec", "version_major": 2, "version_minor": 0 }, @@ -8607,7 +8606,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fa670100f02b47cf9ec4c3e6bad634e7", + "model_id": "84f285e1262e448186175b5f6ea8a100", "version_major": 2, "version_minor": 0 }, @@ -8621,7 +8620,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1a89941f764245c2ada50a90a13c2de5", + "model_id": "6bcddf29e018487ab3cbd65b9360a31c", "version_major": 2, "version_minor": 0 }, @@ -8635,7 +8634,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f1620d945db8415eb67ca9c7c9204437", + "model_id": "0f5f0bf0e3094d359222a40cfb883e67", "version_major": 2, "version_minor": 0 }, @@ -8649,7 +8648,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ccaab29c24594688aab4e276f0602911", + "model_id": "436f0a6e3a7a4457b6b54fb1c19a9fc1", "version_major": 2, "version_minor": 0 }, @@ -8663,7 +8662,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "985770bbcdc54a978e25689ec98b9ec8", + "model_id": "153517df5e244608a4df90e6d5b3f2fb", "version_major": 2, "version_minor": 0 }, @@ -8677,7 +8676,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "649a7264f6e84529ab9292bab0b77432", + "model_id": "966bf641ff264d9ba465a989337d24c8", "version_major": 2, "version_minor": 0 }, @@ -8691,7 +8690,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bbd262d3471646e38208a319c863cb75", + "model_id": "232ec0a0183e462f92422b1991162466", "version_major": 2, "version_minor": 0 }, @@ -8705,7 +8704,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "58ad0974b15546609feec97cc94b6a7a", + "model_id": "94eebdb823b9416abdb1454fa8b713a1", "version_major": 2, "version_minor": 0 }, @@ -8719,7 +8718,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d6114f44e51d4586b911578aa52ed8e5", + "model_id": "63e68c7095d74639a33c6b422dde8e6b", "version_major": 2, "version_minor": 0 }, @@ -8733,7 +8732,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d42389c558874de3932eb5bc0c4165cb", + "model_id": "858b9ede991d4db5a65f3738145661b0", "version_major": 2, "version_minor": 0 }, @@ -8747,7 +8746,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "892652c223b4426b8e809a0cc36985a2", + "model_id": "1320a563fa1141f48ec1121a4da566dd", "version_major": 2, "version_minor": 0 }, @@ -8761,7 +8760,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc6a9c7712ac47e7be436a5e53c1d203", + "model_id": "c258eee32312493f820b0be1001b702d", "version_major": 2, "version_minor": 0 }, @@ -8775,7 +8774,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "71474f43feee42a78f5b2dd1441ebea8", + "model_id": "cfe59e5c336b483595b2c2f3e5002fe5", "version_major": 2, "version_minor": 0 }, @@ -8789,7 +8788,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d35c015e070a4066a00638dfea294e20", + "model_id": "da49b9baca8d43deb73852ac22411b59", "version_major": 2, "version_minor": 0 }, @@ -8803,7 +8802,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bbe8d6a738a2452eb96907cfd94a865e", + "model_id": "2edefd368841420799756fdeb9eb350e", "version_major": 2, "version_minor": 0 }, @@ -8817,7 +8816,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c4e37d0e56cf4433bae37ba25dd6addc", + "model_id": "fb1ab9dd650c4327b9e08083ea6f855e", "version_major": 2, "version_minor": 0 }, @@ -8831,7 +8830,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "508e2b4b875b4f3eb89460503b82a44b", + "model_id": "337548c8b3a649b3bbb2aa022d0bc33c", "version_major": 2, "version_minor": 0 }, @@ -8845,7 +8844,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fe84b5d4fff64e4e84eb3baf63f49ebb", + "model_id": "469f0f8eaf84468689dc81a6866590c6", "version_major": 2, "version_minor": 0 }, @@ -8859,7 +8858,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "234a8305cd0e4671bafd6347a508006a", + "model_id": "5a3d2d6c73104569b2431592878a0680", "version_major": 2, "version_minor": 0 }, @@ -8873,7 +8872,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9314bb524e4c4c988e0637f0b426dea3", + "model_id": "0a4f360d5a1c4e688c806475aa15e2aa", "version_major": 2, "version_minor": 0 }, @@ -8887,7 +8886,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "73bb408fb3b14067bc5a00c51f2b46ab", + "model_id": "32861129effb47cdb392fa0a20b636c3", "version_major": 2, "version_minor": 0 }, @@ -8901,7 +8900,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "80e55275d2694434ba664645a53cfdfb", + "model_id": "0713f563c1fc4d6292be6340e83f6417", "version_major": 2, "version_minor": 0 }, @@ -8915,7 +8914,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "af57619b39e141b0a849207567f12685", + "model_id": "1364d3ae21274234a26921be5a610c57", "version_major": 2, "version_minor": 0 }, @@ -8929,7 +8928,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1e9d1664e7094f3a80c4c29a64c69850", + "model_id": "c5e4630ea30945fd862bce8a68c9eaff", "version_major": 2, "version_minor": 0 }, @@ -8943,7 +8942,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cbadff921ed84c079d2920fa8f108d79", + "model_id": "fb014ea654fa49c6b29fda1c42a4239b", "version_major": 2, "version_minor": 0 }, @@ -8957,7 +8956,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1a4f763710f54a64a164ed4e8ade0cd4", + "model_id": "fc9065e42c5946f88aa84da055bf968e", "version_major": 2, "version_minor": 0 }, @@ -8971,7 +8970,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7ae34405e0904941bde7ac34156ef5d9", + "model_id": "b33c56819c07474596c522b66e69d8e0", "version_major": 2, "version_minor": 0 }, @@ -8985,7 +8984,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "758b295e2ebc4f818bf7634dc9e6511b", + "model_id": "e227733b97fd411fa91be941aa0826f3", "version_major": 2, "version_minor": 0 }, @@ -8999,7 +8998,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "70ed4e60b2724c27bba5e161f5d6c0e9", + "model_id": "b0de6788585a43d387ee192d3e919582", "version_major": 2, "version_minor": 0 }, @@ -9013,7 +9012,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1838ceec52264c5b9ef4bbf089932af4", + "model_id": "95f701a89b174f96a7121b1741fcb9fe", "version_major": 2, "version_minor": 0 }, @@ -9027,7 +9026,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c8ab1adbbefd432f84ccff998e3382de", + "model_id": "d138f67a0d8d44b69b94c79290ab60fa", "version_major": 2, "version_minor": 0 }, @@ -9041,7 +9040,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6e5346be07274ca9b3124ad9db4e0a6d", + "model_id": "472095f2f7de47dca63bb953593f60a9", "version_major": 2, "version_minor": 0 }, @@ -9055,7 +9054,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "626e911567f949d5bb8aa78b6b60f934", + "model_id": "d696f828b464421c95874bae379a6fa0", "version_major": 2, "version_minor": 0 }, @@ -9069,7 +9068,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f6d5ce4338784c1cbdaf100334b1407b", + "model_id": "a92efff5798b4681b9d9de929e5f6336", "version_major": 2, "version_minor": 0 }, @@ -9083,7 +9082,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c810e6fd3ceb4568ae78b53fa213914e", + "model_id": "289e5bce5f284ce99e064521ce0e05a9", "version_major": 2, "version_minor": 0 }, @@ -9097,7 +9096,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "afc2246d6e184b538ecfe056dc38f16d", + "model_id": "fdd3f827c9c34a3190aba38b1b13c21f", "version_major": 2, "version_minor": 0 }, @@ -9111,7 +9110,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "61255356db634ba984e8844968f4a5e9", + "model_id": "d99ecb21f9e54c9fb262b29adde16bd0", "version_major": 2, "version_minor": 0 }, @@ -9125,7 +9124,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "02f1a079b35a44d89dfce052a355c17a", + "model_id": "725a40f03b734c21b8b8e67b3212718f", "version_major": 2, "version_minor": 0 }, @@ -9139,7 +9138,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cb0fb5da2654482ebe196bf0f1751b7f", + "model_id": "640019ee89d047fd8725565835db0eaf", "version_major": 2, "version_minor": 0 }, @@ -9153,7 +9152,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bc33b4976a164058bceeb2cfb77eff20", + "model_id": "1580c64b5a874e6aad7a89abacd5cb60", "version_major": 2, "version_minor": 0 }, @@ -9167,7 +9166,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cba3bae12a654da39ea22a391431f2ff", + "model_id": "75eddb18a4c546b1a364977b91a38001", "version_major": 2, "version_minor": 0 }, @@ -9181,7 +9180,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "69f0c0bde038485e8c49934eb6ea819d", + "model_id": "96302a61558d40549b7802f4c44263eb", "version_major": 2, "version_minor": 0 }, @@ -9195,7 +9194,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ac8fff761b724c6cb58569db5feeeaa5", + "model_id": "fb7dd989673a4223b66345ef77406828", "version_major": 2, "version_minor": 0 }, @@ -9209,7 +9208,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d0cdf39392d24750901d79aa4bef1a76", + "model_id": "6e74c6d1b7c64e4596a655a0fbaf1bfb", "version_major": 2, "version_minor": 0 }, @@ -9223,7 +9222,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1a0d550efbba47d88357781f7b68e073", + "model_id": "d716d0b7820d475ca7653959b52d5450", "version_major": 2, "version_minor": 0 }, @@ -9237,7 +9236,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "286d953141b24199a4253f9fc85b6f82", + "model_id": "137da5f57ba84efdb51aff612b72db01", "version_major": 2, "version_minor": 0 }, @@ -9251,7 +9250,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "67cf98d2686948a6b3bd39efb55b3ef4", + "model_id": "bd227089abe34ebda36b2d18df87a86a", "version_major": 2, "version_minor": 0 }, @@ -9265,7 +9264,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "608086150668499e85ab742d06ea4ebd", + "model_id": "044b5721d12d4dadbc68f2e1ef6db71a", "version_major": 2, "version_minor": 0 }, @@ -9279,7 +9278,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "021bf402711e428b97a3e2e96dfcb49e", + "model_id": "cc86818b06a740479b3157b29a1cb18e", "version_major": 2, "version_minor": 0 }, @@ -9293,7 +9292,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e0a7bb5628c944b4b570907e91ee7248", + "model_id": "dd634e6fc883498cadcb00911c514371", "version_major": 2, "version_minor": 0 }, @@ -9307,7 +9306,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "46c080135dd7438ea38e749bbe0cc747", + "model_id": "3a52574849754ad5b349a2ef52a33722", "version_major": 2, "version_minor": 0 }, @@ -9321,7 +9320,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4ca53ff274f84b3a9c88ace97834f8c5", + "model_id": "35f1a57c0f6147ce81b036c866a17275", "version_major": 2, "version_minor": 0 }, @@ -9335,7 +9334,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "373a0410ec8444ad957a468cefb21b42", + "model_id": "3cb251ea1f6a4ae7a87fb959e362d392", "version_major": 2, "version_minor": 0 }, @@ -9349,7 +9348,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b67298bbb00b47d290167050e011d20c", + "model_id": "4e12dfd333064cf5a1fffa8ab56f67a6", "version_major": 2, "version_minor": 0 }, @@ -9363,7 +9362,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1dcdd15fe16d401cacf14f9a6f151a17", + "model_id": "73e3283065a94da9b0de1b38f87eb801", "version_major": 2, "version_minor": 0 }, @@ -9377,7 +9376,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "43883ea84b364edea1d9fe08e2db75d8", + "model_id": "d2755e57697a4a01b6514fdba5578bec", "version_major": 2, "version_minor": 0 }, @@ -9391,7 +9390,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0e6e2306c5e043cd98d2c5f41d6fba33", + "model_id": "f8f3787f489f46959322dac484b7ed93", "version_major": 2, "version_minor": 0 }, @@ -9405,7 +9404,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "31ac9e15ce594f32b36c8898e6500bc9", + "model_id": "f24824825bf644ae831c0e922e16a6c7", "version_major": 2, "version_minor": 0 }, @@ -9419,7 +9418,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6f20edbc41064e44a166abb5c43d4304", + "model_id": "9abde42fb6564285aef92cdc78ac08a4", "version_major": 2, "version_minor": 0 }, @@ -9433,7 +9432,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e6965e8c00a3426ba8206bd8ddbe62b3", + "model_id": "18ab584d1482478b9b7d34e90db79dd1", "version_major": 2, "version_minor": 0 }, @@ -9447,7 +9446,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6b0624ec65fc4ce1abc177b512766854", + "model_id": "7b030704b1b545fcad5ee48c27c6b90c", "version_major": 2, "version_minor": 0 }, @@ -9461,7 +9460,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c63fe05c857b4052a9aeaca8f092d047", + "model_id": "c47f07fcd58847b1b24f383546eb653c", "version_major": 2, "version_minor": 0 }, @@ -9475,7 +9474,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e949d28f416d47b59fd403bfea38687b", + "model_id": "f99c0e8c4b65436dafa5c2a9a5452e06", "version_major": 2, "version_minor": 0 }, @@ -9489,7 +9488,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "11797220658a4b4fbf505ffa9118a10a", + "model_id": "24f347e1c972488ab6d64bcb07757238", "version_major": 2, "version_minor": 0 }, @@ -9503,7 +9502,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7813aa85a7314b2e8df4b6db5580e21f", + "model_id": "cc6b7ff2a86c41cca3a9b423c0297b69", "version_major": 2, "version_minor": 0 }, @@ -9517,7 +9516,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2c6ad5889d0b4c69a5847eaab80d1a8e", + "model_id": "eeff56e6de874ca3bbacdf08fbcead78", "version_major": 2, "version_minor": 0 }, @@ -9531,7 +9530,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f7f8f3aceca14e2b9d6f172a3be239b3", + "model_id": "2253d5fd390a4ba1b32e8fd8639187bc", "version_major": 2, "version_minor": 0 }, @@ -9545,7 +9544,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d6910bf855634072b7b5e451ae13e1d5", + "model_id": "dc58353b22e14f9bb332e8a38b77a717", "version_major": 2, "version_minor": 0 }, @@ -9559,7 +9558,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2cb6739f919e40e4ab59d37b2eb4f4e3", + "model_id": "caac960a2e374b8fb4bfd726a3b20235", "version_major": 2, "version_minor": 0 }, @@ -9573,7 +9572,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2f828a85bd9846be86f63bfe87807643", + "model_id": "debee1aed4cc40d5b303d02eedbdfc41", "version_major": 2, "version_minor": 0 }, @@ -9587,7 +9586,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "91acc5ec90d542fd91e2fa1a60c2b472", + "model_id": "49af03e929d149319965f79777b874d7", "version_major": 2, "version_minor": 0 }, @@ -9601,7 +9600,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc002d7048f34829bf0e153de53ec761", + "model_id": "518f016e8418473fa5c367ba4782ea70", "version_major": 2, "version_minor": 0 }, @@ -9615,7 +9614,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c18ba9a746364e29b913561d638c3657", + "model_id": "d5d84c78937e4e86809c6752d2ab9b34", "version_major": 2, "version_minor": 0 }, @@ -9629,7 +9628,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "592ebdfedc0c4e8fadfd0d8070088221", + "model_id": "d0e7561ad6254c608e8ccbe9419bf13d", "version_major": 2, "version_minor": 0 }, @@ -9643,7 +9642,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8660bae7cde74d19be0473f0e5ee22e3", + "model_id": "62bf8c5f5e884276b3423cb35af947cc", "version_major": 2, "version_minor": 0 }, @@ -9657,7 +9656,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0aa4a50bce0748dbbf9fb78d3caf595d", + "model_id": "09fbe3b2afb844e087c8b8131940f52f", "version_major": 2, "version_minor": 0 }, @@ -9671,7 +9670,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "78cc5764f0b44b9fb718eb88b75e175d", + "model_id": "248d1480e07844f5aae809b8d75f6f05", "version_major": 2, "version_minor": 0 }, @@ -9685,7 +9684,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "65233da35c0b4a20a9745a8f0a5da902", + "model_id": "b16a871746b7454fa6dbf640904fba60", "version_major": 2, "version_minor": 0 }, @@ -9699,7 +9698,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "64c05f6c181a44d29a51ac96098f7bf8", + "model_id": "3080997668ed41d9ab15a00e2e56022a", "version_major": 2, "version_minor": 0 }, @@ -9713,7 +9712,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8adea85b3c844d31befda6c9b8873c41", + "model_id": "4788ab535ba14e80a1f6847da6310b78", "version_major": 2, "version_minor": 0 }, @@ -9727,7 +9726,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3bdb272e874045f3ac0edcb0a987724b", + "model_id": "f8c7af5af17445b7a9af29dcf422e74f", "version_major": 2, "version_minor": 0 }, @@ -9741,7 +9740,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4bf7256b41f14f37b97415cef52309da", + "model_id": "c5e43276790a42fda94871a6b05d611a", "version_major": 2, "version_minor": 0 }, @@ -9755,7 +9754,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "74d54ca9ec124a879e927167eb24682f", + "model_id": "801b75b2e42742d6bd8680b776df8e35", "version_major": 2, "version_minor": 0 }, @@ -9769,7 +9768,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a523ab0c7c864663840a42f03089040b", + "model_id": "a00c72e3f166473a876f02fec7326ff9", "version_major": 2, "version_minor": 0 }, @@ -9783,7 +9782,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6fa0919d758b43ff9156627fab054600", + "model_id": "66c4ce98f5ba4957b673c1969ac1ec6b", "version_major": 2, "version_minor": 0 }, @@ -9797,7 +9796,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "80ecf1da2dd340a7aa6136aa43e7655d", + "model_id": "65829521a0704628ad14ef78741bbfc8", "version_major": 2, "version_minor": 0 }, @@ -9811,7 +9810,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4cc8c92b9e224ebeab44e4a14df7179b", + "model_id": "fab5d683ba714ad58a9aab8de4df7b4f", "version_major": 2, "version_minor": 0 }, @@ -9825,7 +9824,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c9fc2259c77a467fb5abc0f4422e8dc9", + "model_id": "e042dbbd1baa44fa9f73d06426c862ef", "version_major": 2, "version_minor": 0 }, @@ -9839,7 +9838,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9c0623c653894e629bb4bbab64c0fe0b", + "model_id": "9b23da050f7e4d928362df6059d09c58", "version_major": 2, "version_minor": 0 }, @@ -9853,7 +9852,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f30c449b45314a988d24ef7b456e4422", + "model_id": "b1f1ad4e73bf410497c46c1e3d4ef017", "version_major": 2, "version_minor": 0 }, @@ -9867,7 +9866,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "77ad20ffc8a240acb93bafb56edfa9da", + "model_id": "95951bcd163a48a083e71524e3c8c80f", "version_major": 2, "version_minor": 0 }, @@ -9881,7 +9880,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f26b8c97f5b74aeb837cf5550934dad2", + "model_id": "bfd23af6b76b4c66bb24b6c0af0151db", "version_major": 2, "version_minor": 0 }, @@ -9895,7 +9894,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1b14fe9c7b2640e4a732181e4891d04d", + "model_id": "a620323d378841ffa3fb4e8af6b7b677", "version_major": 2, "version_minor": 0 }, @@ -9909,7 +9908,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ebd93c6972e24dcc87f97210c9226ec5", + "model_id": "5c140c009d62482faf2bb955304ddfb5", "version_major": 2, "version_minor": 0 }, @@ -9923,7 +9922,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d2b14ad1b9704bd0bc3b958aa8d3122f", + "model_id": "eec96bca2672471fa10edafc612715f9", "version_major": 2, "version_minor": 0 }, @@ -9937,7 +9936,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "11760a605a8c4595a561f565072d3912", + "model_id": "13d227699d96405e9672968a117dd835", "version_major": 2, "version_minor": 0 }, @@ -9951,7 +9950,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "efc5f8437a284a4dbfbc1eababe72f5c", + "model_id": "bdf0d51cecf64b6b88b2189e61e2697d", "version_major": 2, "version_minor": 0 }, @@ -9965,7 +9964,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fca92dc2b3314004b806de3f0476982d", + "model_id": "3663a9cc5dd6492c838b8856ee3db172", "version_major": 2, "version_minor": 0 }, @@ -9979,7 +9978,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0c57faff8c244782b4c634632c79fd6d", + "model_id": "5b8a90932c5c43449baddb012d3f8d2f", "version_major": 2, "version_minor": 0 }, @@ -9993,7 +9992,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8b1608716da04764a9e79b15ff3b9cd0", + "model_id": "acfe2fcbcbeb40b689a942d4a384e81e", "version_major": 2, "version_minor": 0 }, @@ -10007,7 +10006,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "34b6076acc7c46cd85e0580ed62051f7", + "model_id": "a41e9df7b5be41f680c2486bb036eac0", "version_major": 2, "version_minor": 0 }, @@ -10021,7 +10020,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "be9d5f1a1fc1411bac32b804ab4a55c6", + "model_id": "70cfd7e68ad546fca7b8b4fcb5fe112a", "version_major": 2, "version_minor": 0 }, @@ -10035,7 +10034,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "15ba55fa813d429d8c096aeab77dac6d", + "model_id": "cc6d28f7b6674cc78526f2a04a232f87", "version_major": 2, "version_minor": 0 }, @@ -10049,7 +10048,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "82981797edd24e66a9c7f595777993b3", + "model_id": "ae26f55dfe5d44cd9fae433fb8a3ed46", "version_major": 2, "version_minor": 0 }, @@ -10063,7 +10062,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f497013dca4544cf9027f8c57b9d3862", + "model_id": "b61738f2417244b6b7df1ebb3b3f24d7", "version_major": 2, "version_minor": 0 }, @@ -10077,7 +10076,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "18ae423604124c14ad1c546040258830", + "model_id": "fdbf1b51bbd54898b58a2de9f695d5ba", "version_major": 2, "version_minor": 0 }, @@ -10091,7 +10090,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bbcf1925befb44f68ae7c057b87d47fc", + "model_id": "d438be1b459e4f0f90e1a26704baa0f1", "version_major": 2, "version_minor": 0 }, @@ -10105,7 +10104,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3390fcad4b5a4ed7b0962a3c40c08c6c", + "model_id": "164a559d88cd48c58bb43f99cf5819fb", "version_major": 2, "version_minor": 0 }, @@ -10119,7 +10118,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8b2672dda8714e74b34df403f44958fb", + "model_id": "e142ec45c48e400bbf4cf7dbc8b94e39", "version_major": 2, "version_minor": 0 }, @@ -10133,7 +10132,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8f19a36be4da4760be75497c7125b8f0", + "model_id": "b98239d615c44f9280cd53bf430b38ef", "version_major": 2, "version_minor": 0 }, @@ -10147,7 +10146,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4a2a1c7d9d20421e9e92870a6a2e9660", + "model_id": "ee3012ec548c4468ab19394fcc61dfe1", "version_major": 2, "version_minor": 0 }, @@ -10161,7 +10160,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f0286c8429b84e2ab0c163e1b4eef1d0", + "model_id": "59abff92475945148512c124b31620ae", "version_major": 2, "version_minor": 0 }, @@ -10175,7 +10174,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "dd58ef8e610842f2b301171926de7182", + "model_id": "10742df4535742c8acdcdbea8d8d6a02", "version_major": 2, "version_minor": 0 }, @@ -10189,7 +10188,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "539ca6d6148543548ecd3dcf70ed7c11", + "model_id": "7e3d33d2a59f4e2c8413b43cfaee41d1", "version_major": 2, "version_minor": 0 }, @@ -10203,7 +10202,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "06e7f0d966004f43b3be4b20ccedee56", + "model_id": "1fd03ae4594b4574a55f06d248d8b61a", "version_major": 2, "version_minor": 0 }, @@ -10217,7 +10216,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fda62ae60c6c4677a6ea5636f934dc92", + "model_id": "976c6fee189c41b4b5445895fb180c8d", "version_major": 2, "version_minor": 0 }, @@ -10231,7 +10230,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3baf1bb80b444609bbfdea5378d88b16", + "model_id": "198e1fa4f5124895bc0ee188984ea726", "version_major": 2, "version_minor": 0 }, @@ -10245,7 +10244,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f668c7e605ea48fb8c8ccc3ce9942537", + "model_id": "c78ca1847595417aa71358a1c1b1a4b0", "version_major": 2, "version_minor": 0 }, @@ -10259,7 +10258,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8ab646cb72bc4395ab928bd90d12876f", + "model_id": "af7a5a5a341348f2a0be2f3e77656549", "version_major": 2, "version_minor": 0 }, @@ -10273,7 +10272,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "81a2b942d66144f394a057e50cf01f7c", + "model_id": "b5ab2cc2a47b42828c7a6780a6db2e00", "version_major": 2, "version_minor": 0 }, @@ -10287,7 +10286,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a2c733eb3a2f40e0b80254de8610baa9", + "model_id": "f972c01912c545948b56ea640af2c5b0", "version_major": 2, "version_minor": 0 }, @@ -10301,7 +10300,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d3cee07e2b804c9f84e6d1c6985f6eb6", + "model_id": "213b3d4ee66d42e1b57a82d35b720112", "version_major": 2, "version_minor": 0 }, @@ -10315,7 +10314,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e7a1d5c5a3d2447b99b09d54782e92e4", + "model_id": "ddfc7dcdd1c94636929318d51a61e048", "version_major": 2, "version_minor": 0 }, @@ -10329,7 +10328,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2d6dff1e8e8d492c8020df32915020f6", + "model_id": "3fdce7be7f074ec589421caa0319862f", "version_major": 2, "version_minor": 0 }, @@ -10343,7 +10342,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1c58bb14675c42759eb18385d3f2c364", + "model_id": "180334cb0f4c4cc6a5f2eeedc55a986b", "version_major": 2, "version_minor": 0 }, @@ -10357,7 +10356,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6e846537940449eba9b3df06d6908d2c", + "model_id": "d2e9e0572d4c48bd9dcf25960be64cde", "version_major": 2, "version_minor": 0 }, @@ -10371,7 +10370,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eaabc8c0805b4ce38620516da7b5dd2f", + "model_id": "0e26b9ff0a7642e0b8400f0a937eeb30", "version_major": 2, "version_minor": 0 }, @@ -10385,7 +10384,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0b54cea4ca634312ac62cef9554c2abd", + "model_id": "bf9537d5986b4aacad134c66a4242b0e", "version_major": 2, "version_minor": 0 }, @@ -10399,7 +10398,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7d538586b87440b89506a951ea660c85", + "model_id": "e4ab38c6e45d4628b56bbe5dac9458d7", "version_major": 2, "version_minor": 0 }, @@ -10413,7 +10412,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "06ff3bed3b2c44368623e1fe4d16c42d", + "model_id": "18e800771f6f439bb9f15de7edaf8274", "version_major": 2, "version_minor": 0 }, @@ -10427,7 +10426,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6034c4e13c63492399314dd1d0e86900", + "model_id": "ee30326da017481f94e780628f0ec74d", "version_major": 2, "version_minor": 0 }, @@ -10441,7 +10440,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1d2a3ec474f84d7dbd2b1d0811b5679a", + "model_id": "ebaaaf47fecb406facb8804280ed88e2", "version_major": 2, "version_minor": 0 }, @@ -10455,7 +10454,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eedba0809dc948c6b8338bde323e79a5", + "model_id": "ac274611a2704a2ab1468b205859dfc1", "version_major": 2, "version_minor": 0 }, @@ -10469,7 +10468,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b476ab3908ea4301a13f5cc23ff44fa2", + "model_id": "41be5520b1964125872189d604272dc4", "version_major": 2, "version_minor": 0 }, @@ -10483,7 +10482,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "aff3135a532a4ee88010da77f492cf4d", + "model_id": "666d79b38fcd49c79cac956f8b2f7677", "version_major": 2, "version_minor": 0 }, @@ -10497,7 +10496,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ffe38591306e4351a4228d7f17d91a24", + "model_id": "2253e50224c642a7a56858b1c135213e", "version_major": 2, "version_minor": 0 }, @@ -10511,7 +10510,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2a1a7c1af8fa4e98b60723cbc3766c0b", + "model_id": "f01094a315c4420e9aba161bd526a1e0", "version_major": 2, "version_minor": 0 }, @@ -10525,7 +10524,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb73984ee683427195a75edb8a65dfd1", + "model_id": "652fb20eb89245a8ac16173eeb553633", "version_major": 2, "version_minor": 0 }, @@ -10539,7 +10538,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7fed65b24c3e4cccb75b5e190e192e99", + "model_id": "92757d397a9944e9bf89a627d34d670a", "version_major": 2, "version_minor": 0 }, @@ -10553,7 +10552,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "40c7a7a509f94bbdb99ff06868239a58", + "model_id": "d4b73d5c186347d9a05f2486c5baafee", "version_major": 2, "version_minor": 0 }, @@ -10567,7 +10566,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "043b17d4db7c4a8c92529fac3371ae87", + "model_id": "4daeb823d61246a0aa572689807c117d", "version_major": 2, "version_minor": 0 }, @@ -10581,7 +10580,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9340de6a00d54d7e8efb980fb7a63b88", + "model_id": "4da85fb13a6241efa01e2e144209cd5f", "version_major": 2, "version_minor": 0 }, @@ -10595,7 +10594,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "69596ddf1da94aed9d62d104734a11ad", + "model_id": "6f4c663a0b6449828fcacf1d77b0fad1", "version_major": 2, "version_minor": 0 }, @@ -10609,7 +10608,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "83228734f253473ab9b36daa64130a36", + "model_id": "ada51e9d1ee84f7c8d7cda87a9fed382", "version_major": 2, "version_minor": 0 }, @@ -10623,7 +10622,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9fce07d5848d49b9acbd80959f48d055", + "model_id": "035517fa34c84edb8520548a6a6f5f2f", "version_major": 2, "version_minor": 0 }, @@ -10637,7 +10636,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "23ac188be0de4418997c43a01c865381", + "model_id": "ddc0d23180304537a5d5a408daed4159", "version_major": 2, "version_minor": 0 }, @@ -10651,7 +10650,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "81a145df7fda42b08319ec1963375f71", + "model_id": "c4c0bccb88c34e5da862f7bf33948498", "version_major": 2, "version_minor": 0 }, @@ -10665,7 +10664,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a006b6be707d4cf49143c0588abefcae", + "model_id": "27c5c425ce414190aae3c840ca8df1e0", "version_major": 2, "version_minor": 0 }, @@ -10686,7 +10685,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3a233b74289744058b15d52d3362d9ef", + "model_id": "23414392e3a74a4b8dff5fe1a30f6eec", "version_major": 2, "version_minor": 0 }, @@ -10745,7 +10744,7 @@ }, { "cell_type": "markdown", - "id": "3c78b138", + "id": "fc55d4f9", "metadata": {}, "source": [ "We could also fit a model without the `nn.RNN()` layer by just\n", @@ -10762,7 +10761,7 @@ { "cell_type": "code", "execution_count": 109, - "id": "5586a609", + "id": "c60876d7", "metadata": {}, "outputs": [], "source": [ @@ -10777,7 +10776,7 @@ }, { "cell_type": "markdown", - "id": "c1c361b4", + "id": "c7fc165f", "metadata": {}, "source": [ "Creating a data module follows a familiar pattern." @@ -10786,7 +10785,7 @@ { "cell_type": "code", "execution_count": 110, - "id": "b72ecb13", + "id": "282f7e1c", "metadata": {}, "outputs": [], "source": [ @@ -10799,7 +10798,7 @@ }, { "cell_type": "markdown", - "id": "32016e95", + "id": "310271e1", "metadata": {}, "source": [ "We build a `NonLinearARModel()` that takes as input the 20 features and a hidden layer with 32 units. The remaining steps are familiar." @@ -10808,7 +10807,7 @@ { "cell_type": "code", "execution_count": 111, - "id": "595df68b", + "id": "038fea74", "metadata": {}, "outputs": [], "source": [ @@ -10827,7 +10826,7 @@ { "cell_type": "code", "execution_count": 112, - "id": "e8142533", + "id": "68d309b2", "metadata": {}, "outputs": [], "source": [ @@ -10841,7 +10840,7 @@ }, { "cell_type": "markdown", - "id": "86d4e139", + "id": "998d317c", "metadata": {}, "source": [ "We continue with the usual training steps, fit the model,\n", @@ -10851,7 +10850,7 @@ { "cell_type": "code", "execution_count": 113, - "id": "47bdb236", + "id": "9fc113a1", "metadata": { "lines_to_next_cell": 0 }, @@ -10893,7 +10892,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f7abedb50db348d49e14abb6ac8ee82a", + "model_id": "6327380ca56a49628cb311d7382fe96d", "version_major": 2, "version_minor": 0 }, @@ -11194,7 +11193,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0ae34f21f0364f47ae24e5b0a0758062", + "model_id": "e9c0c0840a4e4fe3bd9aa771a035ec2a", "version_major": 2, "version_minor": 0 }, @@ -11251,7 +11250,7 @@ }, { "cell_type": "markdown", - "id": "51f435d5", + "id": "66cd716d", "metadata": {}, "source": [ " \n", @@ -11263,8 +11262,8 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", - "main_language": "python" + "main_language": "python", + "notebook_metadata_filter": "-all" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", diff --git a/Ch11-surv-lab.ipynb b/Ch11-surv-lab.ipynb index 55d07b3..d4c812c 100644 --- a/Ch11-surv-lab.ipynb +++ b/Ch11-surv-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "c7f4eb5a", + "id": "62a1a218", "metadata": {}, "source": [ "\n", @@ -12,7 +12,7 @@ }, { "cell_type": "markdown", - "id": "0ae03bc9", + "id": "9da89fbb", "metadata": {}, "source": [ "# Lab: Survival Analysis\n", @@ -31,13 +31,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "91ac40fd", + "id": "d2d71add", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:33.224953Z", - "iopub.status.busy": "2023-08-07T00:19:33.224846Z", - "iopub.status.idle": "2023-08-07T00:19:34.446999Z", - "shell.execute_reply": "2023-08-07T00:19:34.446629Z" + "iopub.execute_input": "2023-08-21T02:30:04.373618Z", + "iopub.status.busy": "2023-08-21T02:30:04.373522Z", + "iopub.status.idle": "2023-08-21T02:30:05.528375Z", + "shell.execute_reply": "2023-08-21T02:30:05.528065Z" } }, "outputs": [], @@ -51,7 +51,7 @@ }, { "cell_type": "markdown", - "id": "a3dbcbbf", + "id": "70fe80b5", "metadata": {}, "source": [ "We also collect the new imports\n", @@ -61,13 +61,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "99782418", + "id": "994efc94", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.448996Z", - "iopub.status.busy": "2023-08-07T00:19:34.448819Z", - "iopub.status.idle": "2023-08-07T00:19:34.539258Z", - "shell.execute_reply": "2023-08-07T00:19:34.538955Z" + "iopub.execute_input": "2023-08-21T02:30:05.530453Z", + "iopub.status.busy": "2023-08-21T02:30:05.530271Z", + "iopub.status.idle": "2023-08-21T02:30:05.593786Z", + "shell.execute_reply": "2023-08-21T02:30:05.593483Z" } }, "outputs": [], @@ -83,7 +83,7 @@ }, { "cell_type": "markdown", - "id": "2c538d28", + "id": "e65a4796", "metadata": {}, "source": [ "## Brain Cancer Data\n", @@ -94,13 +94,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "3137149a", + "id": "9d41ddea", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.541177Z", - "iopub.status.busy": "2023-08-07T00:19:34.541057Z", - "iopub.status.idle": "2023-08-07T00:19:34.547991Z", - "shell.execute_reply": "2023-08-07T00:19:34.547753Z" + "iopub.execute_input": "2023-08-21T02:30:05.595762Z", + "iopub.status.busy": "2023-08-21T02:30:05.595642Z", + "iopub.status.idle": "2023-08-21T02:30:05.602243Z", + "shell.execute_reply": "2023-08-21T02:30:05.601969Z" } }, "outputs": [ @@ -122,7 +122,7 @@ }, { "cell_type": "markdown", - "id": "e798f172", + "id": "4ac65a33", "metadata": {}, "source": [ "The rows index the 88 patients, while the 8 columns contain the predictors and outcome variables.\n", @@ -132,13 +132,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "45963c92", + "id": "2bece782", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.549558Z", - "iopub.status.busy": "2023-08-07T00:19:34.549453Z", - "iopub.status.idle": "2023-08-07T00:19:34.552571Z", - "shell.execute_reply": "2023-08-07T00:19:34.552293Z" + "iopub.execute_input": "2023-08-21T02:30:05.603954Z", + "iopub.status.busy": "2023-08-21T02:30:05.603852Z", + "iopub.status.idle": "2023-08-21T02:30:05.607075Z", + "shell.execute_reply": "2023-08-21T02:30:05.606729Z" }, "lines_to_next_cell": 2 }, @@ -163,13 +163,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "73be61f6", + "id": "9ca465e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.553962Z", - "iopub.status.busy": "2023-08-07T00:19:34.553866Z", - "iopub.status.idle": "2023-08-07T00:19:34.556544Z", - "shell.execute_reply": "2023-08-07T00:19:34.556286Z" + "iopub.execute_input": "2023-08-21T02:30:05.608553Z", + "iopub.status.busy": "2023-08-21T02:30:05.608445Z", + "iopub.status.idle": "2023-08-21T02:30:05.611386Z", + "shell.execute_reply": "2023-08-21T02:30:05.611134Z" }, "lines_to_next_cell": 2 }, @@ -196,13 +196,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "572f0b9e", + "id": "33bc4d3c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.557984Z", - "iopub.status.busy": "2023-08-07T00:19:34.557901Z", - "iopub.status.idle": "2023-08-07T00:19:34.560759Z", - "shell.execute_reply": "2023-08-07T00:19:34.560490Z" + "iopub.execute_input": "2023-08-21T02:30:05.612735Z", + "iopub.status.busy": "2023-08-21T02:30:05.612639Z", + "iopub.status.idle": "2023-08-21T02:30:05.615164Z", + "shell.execute_reply": "2023-08-21T02:30:05.614915Z" }, "lines_to_next_cell": 2 }, @@ -226,7 +226,7 @@ }, { "cell_type": "markdown", - "id": "fbd132de", + "id": "eb9c6d4f", "metadata": {}, "source": [ "Before beginning an analysis, it is important to know how the\n", @@ -252,13 +252,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "92c39707", + "id": "0b6dba70", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.562264Z", - "iopub.status.busy": "2023-08-07T00:19:34.562173Z", - "iopub.status.idle": "2023-08-07T00:19:34.764386Z", - "shell.execute_reply": "2023-08-07T00:19:34.763084Z" + "iopub.execute_input": "2023-08-21T02:30:05.616714Z", + "iopub.status.busy": "2023-08-21T02:30:05.616622Z", + "iopub.status.idle": "2023-08-21T02:30:05.728265Z", + "shell.execute_reply": "2023-08-21T02:30:05.727903Z" } }, "outputs": [ @@ -292,7 +292,7 @@ }, { "cell_type": "markdown", - "id": "f037665b", + "id": "2cc511cd", "metadata": {}, "source": [ "Next we create Kaplan-Meier survival curves that are stratified by\n", @@ -318,13 +318,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "3fc7848c", + "id": "9e6f2e70", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.770269Z", - "iopub.status.busy": "2023-08-07T00:19:34.769500Z", - "iopub.status.idle": "2023-08-07T00:19:34.900514Z", - "shell.execute_reply": "2023-08-07T00:19:34.900203Z" + "iopub.execute_input": "2023-08-21T02:30:05.730200Z", + "iopub.status.busy": "2023-08-21T02:30:05.730056Z", + "iopub.status.idle": "2023-08-21T02:30:05.845830Z", + "shell.execute_reply": "2023-08-21T02:30:05.845506Z" } }, "outputs": [ @@ -350,7 +350,7 @@ }, { "cell_type": "markdown", - "id": "c0c1a16a", + "id": "4d7efefb", "metadata": {}, "source": [ "As discussed in Section 11.4, we can perform a\n", @@ -363,13 +363,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "bf30d26f", + "id": "c135f7aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.902462Z", - "iopub.status.busy": "2023-08-07T00:19:34.902313Z", - "iopub.status.idle": "2023-08-07T00:19:34.956077Z", - "shell.execute_reply": "2023-08-07T00:19:34.955714Z" + "iopub.execute_input": "2023-08-21T02:30:05.847658Z", + "iopub.status.busy": "2023-08-21T02:30:05.847519Z", + "iopub.status.idle": "2023-08-21T02:30:05.901295Z", + "shell.execute_reply": "2023-08-21T02:30:05.900935Z" }, "lines_to_next_cell": 2 }, @@ -462,7 +462,7 @@ }, { "cell_type": "markdown", - "id": "e270649c", + "id": "bd14317d", "metadata": {}, "source": [ "The resulting $p$-value is $0.23$, indicating no evidence of a\n", @@ -476,13 +476,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "2ab78e07", + "id": "5f9303dd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.957966Z", - "iopub.status.busy": "2023-08-07T00:19:34.957792Z", - "iopub.status.idle": "2023-08-07T00:19:34.984567Z", - "shell.execute_reply": "2023-08-07T00:19:34.984261Z" + "iopub.execute_input": "2023-08-21T02:30:05.903263Z", + "iopub.status.busy": "2023-08-21T02:30:05.903017Z", + "iopub.status.idle": "2023-08-21T02:30:05.930691Z", + "shell.execute_reply": "2023-08-21T02:30:05.930331Z" } }, "outputs": [ @@ -553,7 +553,7 @@ }, { "cell_type": "markdown", - "id": "b58b93ae", + "id": "7e56e83e", "metadata": {}, "source": [ "The first argument to `fit` should be a data frame containing\n", @@ -569,13 +569,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "4716b7b0", + "id": "bcc8470c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.986336Z", - "iopub.status.busy": "2023-08-07T00:19:34.986193Z", - "iopub.status.idle": "2023-08-07T00:19:34.991518Z", - "shell.execute_reply": "2023-08-07T00:19:34.991252Z" + "iopub.execute_input": "2023-08-21T02:30:05.932434Z", + "iopub.status.busy": "2023-08-21T02:30:05.932285Z", + "iopub.status.idle": "2023-08-21T02:30:05.937796Z", + "shell.execute_reply": "2023-08-21T02:30:05.937549Z" } }, "outputs": [ @@ -659,7 +659,7 @@ }, { "cell_type": "markdown", - "id": "2820f486", + "id": "2e6163ca", "metadata": {}, "source": [ "Regardless of which test we use, we see that there is no clear\n", @@ -675,13 +675,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "c2767d88", + "id": "c26a3499", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:34.993223Z", - "iopub.status.busy": "2023-08-07T00:19:34.993093Z", - "iopub.status.idle": "2023-08-07T00:19:35.028673Z", - "shell.execute_reply": "2023-08-07T00:19:35.028408Z" + "iopub.execute_input": "2023-08-21T02:30:05.939300Z", + "iopub.status.busy": "2023-08-21T02:30:05.939184Z", + "iopub.status.idle": "2023-08-21T02:30:05.979585Z", + "shell.execute_reply": "2023-08-21T02:30:05.979250Z" } }, "outputs": [ @@ -800,7 +800,7 @@ }, { "cell_type": "markdown", - "id": "eee4ab1f", + "id": "a96e311c", "metadata": {}, "source": [ " The `diagnosis` variable has been coded so that the baseline\n", @@ -823,13 +823,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "ede1d219", + "id": "8d999f26", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.030313Z", - "iopub.status.busy": "2023-08-07T00:19:35.030211Z", - "iopub.status.idle": "2023-08-07T00:19:35.034142Z", - "shell.execute_reply": "2023-08-07T00:19:35.033836Z" + "iopub.execute_input": "2023-08-21T02:30:05.981441Z", + "iopub.status.busy": "2023-08-21T02:30:05.981315Z", + "iopub.status.idle": "2023-08-21T02:30:05.986317Z", + "shell.execute_reply": "2023-08-21T02:30:05.985949Z" } }, "outputs": [], @@ -845,7 +845,7 @@ }, { "cell_type": "markdown", - "id": "e1c307ae", + "id": "bf628fd8", "metadata": {}, "source": [ "We make four\n", @@ -856,13 +856,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "dc032a71", + "id": "a1f6b355", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.035583Z", - "iopub.status.busy": "2023-08-07T00:19:35.035483Z", - "iopub.status.idle": "2023-08-07T00:19:35.041790Z", - "shell.execute_reply": "2023-08-07T00:19:35.041394Z" + "iopub.execute_input": "2023-08-21T02:30:05.988012Z", + "iopub.status.busy": "2023-08-21T02:30:05.987898Z", + "iopub.status.idle": "2023-08-21T02:30:05.993889Z", + "shell.execute_reply": "2023-08-21T02:30:05.993534Z" } }, "outputs": [ @@ -974,7 +974,7 @@ }, { "cell_type": "markdown", - "id": "84da2586", + "id": "3f6334e4", "metadata": {}, "source": [ "We then construct the model matrix based on the model specification `all_MS` used to fit\n", @@ -984,13 +984,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "e7c1fe43", + "id": "a1a9d5b3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.043454Z", - "iopub.status.busy": "2023-08-07T00:19:35.043346Z", - "iopub.status.idle": "2023-08-07T00:19:35.050931Z", - "shell.execute_reply": "2023-08-07T00:19:35.050643Z" + "iopub.execute_input": "2023-08-21T02:30:05.995682Z", + "iopub.status.busy": "2023-08-21T02:30:05.995549Z", + "iopub.status.idle": "2023-08-21T02:30:06.005479Z", + "shell.execute_reply": "2023-08-21T02:30:06.005089Z" } }, "outputs": [ @@ -1117,7 +1117,7 @@ }, { "cell_type": "markdown", - "id": "3cfe1ec4", + "id": "3eaec7e6", "metadata": {}, "source": [ "We can use the `predict_survival_function()` method to obtain the estimated survival function." @@ -1126,13 +1126,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "f89fbed7", + "id": "1a18b56a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.052472Z", - "iopub.status.busy": "2023-08-07T00:19:35.052367Z", - "iopub.status.idle": "2023-08-07T00:19:35.059232Z", - "shell.execute_reply": "2023-08-07T00:19:35.058922Z" + "iopub.execute_input": "2023-08-21T02:30:06.007172Z", + "iopub.status.busy": "2023-08-21T02:30:06.007049Z", + "iopub.status.idle": "2023-08-21T02:30:06.014185Z", + "shell.execute_reply": "2023-08-21T02:30:06.013870Z" }, "lines_to_next_cell": 0 }, @@ -1276,7 +1276,7 @@ }, { "cell_type": "markdown", - "id": "29afd641", + "id": "7d533f90", "metadata": {}, "source": [ "This returns a data frame,\n", @@ -1287,13 +1287,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "8f0329b4", + "id": "ff3de29c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.061046Z", - "iopub.status.busy": "2023-08-07T00:19:35.060930Z", - "iopub.status.idle": "2023-08-07T00:19:35.167601Z", - "shell.execute_reply": "2023-08-07T00:19:35.167288Z" + "iopub.execute_input": "2023-08-21T02:30:06.015778Z", + "iopub.status.busy": "2023-08-21T02:30:06.015664Z", + "iopub.status.idle": "2023-08-21T02:30:06.124035Z", + "shell.execute_reply": "2023-08-21T02:30:06.123732Z" }, "lines_to_next_cell": 2 }, @@ -1316,7 +1316,7 @@ }, { "cell_type": "markdown", - "id": "12723ce5", + "id": "e660793e", "metadata": {}, "source": [ "## Publication Data\n", @@ -1330,13 +1330,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "3045bfc0", + "id": "cd9060c1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.169251Z", - "iopub.status.busy": "2023-08-07T00:19:35.169133Z", - "iopub.status.idle": "2023-08-07T00:19:35.287186Z", - "shell.execute_reply": "2023-08-07T00:19:35.286859Z" + "iopub.execute_input": "2023-08-21T02:30:06.125714Z", + "iopub.status.busy": "2023-08-21T02:30:06.125592Z", + "iopub.status.idle": "2023-08-21T02:30:06.243701Z", + "shell.execute_reply": "2023-08-21T02:30:06.243300Z" } }, "outputs": [ @@ -1363,7 +1363,7 @@ }, { "cell_type": "markdown", - "id": "6fcb22f7", + "id": "d8f0f687", "metadata": {}, "source": [ "As discussed previously, the $p$-values from fitting Cox’s\n", @@ -1375,13 +1375,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "d070f716", + "id": "6af7106e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.288887Z", - "iopub.status.busy": "2023-08-07T00:19:35.288769Z", - "iopub.status.idle": "2023-08-07T00:19:35.321428Z", - "shell.execute_reply": "2023-08-07T00:19:35.321128Z" + "iopub.execute_input": "2023-08-21T02:30:06.245493Z", + "iopub.status.busy": "2023-08-21T02:30:06.245357Z", + "iopub.status.idle": "2023-08-21T02:30:06.281521Z", + "shell.execute_reply": "2023-08-21T02:30:06.281138Z" }, "lines_to_next_cell": 2 }, @@ -1453,7 +1453,7 @@ }, { "cell_type": "markdown", - "id": "513a55b1", + "id": "8ef28b8b", "metadata": {}, "source": [ "However, the results change dramatically when we include other\n", @@ -1464,13 +1464,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "2bbcdd0c", + "id": "b6ebefa7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.323119Z", - "iopub.status.busy": "2023-08-07T00:19:35.323003Z", - "iopub.status.idle": "2023-08-07T00:19:35.362910Z", - "shell.execute_reply": "2023-08-07T00:19:35.362438Z" + "iopub.execute_input": "2023-08-21T02:30:06.283282Z", + "iopub.status.busy": "2023-08-21T02:30:06.283123Z", + "iopub.status.idle": "2023-08-21T02:30:06.327003Z", + "shell.execute_reply": "2023-08-21T02:30:06.326646Z" } }, "outputs": [ @@ -1573,7 +1573,7 @@ }, { "cell_type": "markdown", - "id": "75bb8aa6", + "id": "d463e623", "metadata": {}, "source": [ "We see that there are a number of statistically significant variables,\n", @@ -1583,7 +1583,7 @@ }, { "cell_type": "markdown", - "id": "bfe236e5", + "id": "a23c38e0", "metadata": {}, "source": [ "## Call Center Data\n", @@ -1608,13 +1608,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "b8ece43a", + "id": "098f42ea", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.364905Z", - "iopub.status.busy": "2023-08-07T00:19:35.364772Z", - "iopub.status.idle": "2023-08-07T00:19:35.368589Z", - "shell.execute_reply": "2023-08-07T00:19:35.368291Z" + "iopub.execute_input": "2023-08-21T02:30:06.329058Z", + "iopub.status.busy": "2023-08-21T02:30:06.328927Z", + "iopub.status.idle": "2023-08-21T02:30:06.332782Z", + "shell.execute_reply": "2023-08-21T02:30:06.332425Z" } }, "outputs": [], @@ -1637,7 +1637,7 @@ }, { "cell_type": "markdown", - "id": "c93e44f3", + "id": "2f54ed03", "metadata": {}, "source": [ "We then build a model matrix (omitting the intercept)" @@ -1646,13 +1646,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "3e4f766f", + "id": "26d5d0d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.370485Z", - "iopub.status.busy": "2023-08-07T00:19:35.370371Z", - "iopub.status.idle": "2023-08-07T00:19:35.377790Z", - "shell.execute_reply": "2023-08-07T00:19:35.377469Z" + "iopub.execute_input": "2023-08-21T02:30:06.334692Z", + "iopub.status.busy": "2023-08-21T02:30:06.334589Z", + "iopub.status.idle": "2023-08-21T02:30:06.344047Z", + "shell.execute_reply": "2023-08-21T02:30:06.343708Z" } }, "outputs": [], @@ -1666,7 +1666,7 @@ }, { "cell_type": "markdown", - "id": "cad1ed19", + "id": "a1a8f65d", "metadata": {}, "source": [ "It is worthwhile to take a peek at the model matrix `X`, so\n", @@ -1678,13 +1678,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "72f42d14", + "id": "77500663", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.380244Z", - "iopub.status.busy": "2023-08-07T00:19:35.380068Z", - "iopub.status.idle": "2023-08-07T00:19:35.384542Z", - "shell.execute_reply": "2023-08-07T00:19:35.384259Z" + "iopub.execute_input": "2023-08-21T02:30:06.345660Z", + "iopub.status.busy": "2023-08-21T02:30:06.345575Z", + "iopub.status.idle": "2023-08-21T02:30:06.350086Z", + "shell.execute_reply": "2023-08-21T02:30:06.349797Z" } }, "outputs": [ @@ -1781,7 +1781,7 @@ }, { "cell_type": "markdown", - "id": "38c40ae1", + "id": "fd7bd61c", "metadata": {}, "source": [ "Next, we specify the coefficients and the hazard function." @@ -1790,13 +1790,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "8b921536", + "id": "74324a56", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.386034Z", - "iopub.status.busy": "2023-08-07T00:19:35.385942Z", - "iopub.status.idle": "2023-08-07T00:19:35.420461Z", - "shell.execute_reply": "2023-08-07T00:19:35.405608Z" + "iopub.execute_input": "2023-08-21T02:30:06.351738Z", + "iopub.status.busy": "2023-08-21T02:30:06.351549Z", + "iopub.status.idle": "2023-08-21T02:30:06.444268Z", + "shell.execute_reply": "2023-08-21T02:30:06.441484Z" } }, "outputs": [], @@ -1808,7 +1808,7 @@ }, { "cell_type": "markdown", - "id": "a0698ffd", + "id": "cfe879e6", "metadata": {}, "source": [ "Here, we have set the coefficient associated with `Operators` to\n", @@ -1837,13 +1837,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "96ce0f99", + "id": "d4be10c2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.484657Z", - "iopub.status.busy": "2023-08-07T00:19:35.484150Z", - "iopub.status.idle": "2023-08-07T00:19:35.509286Z", - "shell.execute_reply": "2023-08-07T00:19:35.508169Z" + "iopub.execute_input": "2023-08-21T02:30:06.449822Z", + "iopub.status.busy": "2023-08-21T02:30:06.449515Z", + "iopub.status.idle": "2023-08-21T02:30:06.458388Z", + "shell.execute_reply": "2023-08-21T02:30:06.457673Z" }, "lines_to_next_cell": 0 }, @@ -1854,7 +1854,7 @@ }, { "cell_type": "markdown", - "id": "1956e4c2", + "id": "6095cfc1", "metadata": {}, "source": [ "We are now ready to generate data under the Cox proportional hazards\n", @@ -1868,13 +1868,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "63d78ff9", + "id": "c98d396f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.522637Z", - "iopub.status.busy": "2023-08-07T00:19:35.522260Z", - "iopub.status.idle": "2023-08-07T00:19:35.630452Z", - "shell.execute_reply": "2023-08-07T00:19:35.627960Z" + "iopub.execute_input": "2023-08-21T02:30:06.461931Z", + "iopub.status.busy": "2023-08-21T02:30:06.461787Z", + "iopub.status.idle": "2023-08-21T02:30:06.624349Z", + "shell.execute_reply": "2023-08-21T02:30:06.624026Z" } }, "outputs": [], @@ -1886,7 +1886,7 @@ }, { "cell_type": "markdown", - "id": "035e4ecf", + "id": "ed2e23ea", "metadata": {}, "source": [ "We now simulate our censoring variable, for which we assume\n", @@ -1897,13 +1897,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "fe008dbf", + "id": "caf627bc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.635844Z", - "iopub.status.busy": "2023-08-07T00:19:35.635469Z", - "iopub.status.idle": "2023-08-07T00:19:35.649527Z", - "shell.execute_reply": "2023-08-07T00:19:35.646191Z" + "iopub.execute_input": "2023-08-21T02:30:06.626165Z", + "iopub.status.busy": "2023-08-21T02:30:06.626054Z", + "iopub.status.idle": "2023-08-21T02:30:06.630808Z", + "shell.execute_reply": "2023-08-21T02:30:06.630542Z" }, "lines_to_next_cell": 2 }, @@ -2005,13 +2005,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "c3a2bec7", + "id": "e63242f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.653001Z", - "iopub.status.busy": "2023-08-07T00:19:35.652338Z", - "iopub.status.idle": "2023-08-07T00:19:35.656830Z", - "shell.execute_reply": "2023-08-07T00:19:35.656500Z" + "iopub.execute_input": "2023-08-21T02:30:06.632357Z", + "iopub.status.busy": "2023-08-21T02:30:06.632261Z", + "iopub.status.idle": "2023-08-21T02:30:06.634630Z", + "shell.execute_reply": "2023-08-21T02:30:06.634305Z" } }, "outputs": [ @@ -2032,7 +2032,7 @@ }, { "cell_type": "markdown", - "id": "207937e5", + "id": "5f345011", "metadata": {}, "source": [ "We now plot Kaplan-Meier survival curves. First, we stratify by `Center`." @@ -2041,13 +2041,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "2b27af56", + "id": "338db71d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.658421Z", - "iopub.status.busy": "2023-08-07T00:19:35.658328Z", - "iopub.status.idle": "2023-08-07T00:19:35.811796Z", - "shell.execute_reply": "2023-08-07T00:19:35.811449Z" + "iopub.execute_input": "2023-08-21T02:30:06.636188Z", + "iopub.status.busy": "2023-08-21T02:30:06.636081Z", + "iopub.status.idle": "2023-08-21T02:30:06.791856Z", + "shell.execute_reply": "2023-08-21T02:30:06.791521Z" } }, "outputs": [ @@ -2084,7 +2084,7 @@ }, { "cell_type": "markdown", - "id": "be6d37f7", + "id": "1b5a1230", "metadata": {}, "source": [ "Next, we stratify by `Time`." @@ -2093,13 +2093,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "9625598d", + "id": "c1db6e15", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:35.813696Z", - "iopub.status.busy": "2023-08-07T00:19:35.813601Z", - "iopub.status.idle": "2023-08-07T00:19:36.041021Z", - "shell.execute_reply": "2023-08-07T00:19:36.040708Z" + "iopub.execute_input": "2023-08-21T02:30:06.793629Z", + "iopub.status.busy": "2023-08-21T02:30:06.793538Z", + "iopub.status.idle": "2023-08-21T02:30:06.992155Z", + "shell.execute_reply": "2023-08-21T02:30:06.991803Z" } }, "outputs": [ @@ -2136,7 +2136,7 @@ }, { "cell_type": "markdown", - "id": "1408ebc0", + "id": "deb73d38", "metadata": {}, "source": [ "It seems that calls at Call Center B take longer to be answered than\n", @@ -2149,13 +2149,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "75a744ef", + "id": "02ea4212", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:36.043079Z", - "iopub.status.busy": "2023-08-07T00:19:36.042900Z", - "iopub.status.idle": "2023-08-07T00:19:36.061936Z", - "shell.execute_reply": "2023-08-07T00:19:36.061630Z" + "iopub.execute_input": "2023-08-21T02:30:06.993929Z", + "iopub.status.busy": "2023-08-21T02:30:06.993819Z", + "iopub.status.idle": "2023-08-21T02:30:07.011557Z", + "shell.execute_reply": "2023-08-21T02:30:07.011276Z" }, "lines_to_next_cell": 2 }, @@ -2247,7 +2247,7 @@ }, { "cell_type": "markdown", - "id": "be5055e4", + "id": "db9cc6ee", "metadata": {}, "source": [ "Next, we consider the effect of `Time`." @@ -2256,13 +2256,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "9badb3e3", + "id": "0ac610d5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:36.063627Z", - "iopub.status.busy": "2023-08-07T00:19:36.063519Z", - "iopub.status.idle": "2023-08-07T00:19:36.082451Z", - "shell.execute_reply": "2023-08-07T00:19:36.082161Z" + "iopub.execute_input": "2023-08-21T02:30:07.013331Z", + "iopub.status.busy": "2023-08-21T02:30:07.013187Z", + "iopub.status.idle": "2023-08-21T02:30:07.030401Z", + "shell.execute_reply": "2023-08-21T02:30:07.030073Z" }, "lines_to_next_cell": 2 }, @@ -2354,7 +2354,7 @@ }, { "cell_type": "markdown", - "id": "64b2bc33", + "id": "0946d3ef", "metadata": {}, "source": [ "As in the case of a categorical variable with 2 levels, these\n", @@ -2366,13 +2366,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "026e9ff8", + "id": "107cedad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:36.084076Z", - "iopub.status.busy": "2023-08-07T00:19:36.083964Z", - "iopub.status.idle": "2023-08-07T00:19:36.208409Z", - "shell.execute_reply": "2023-08-07T00:19:36.208076Z" + "iopub.execute_input": "2023-08-21T02:30:07.032008Z", + "iopub.status.busy": "2023-08-21T02:30:07.031887Z", + "iopub.status.idle": "2023-08-21T02:30:07.160931Z", + "shell.execute_reply": "2023-08-21T02:30:07.160639Z" }, "lines_to_next_cell": 2 }, @@ -2462,7 +2462,7 @@ }, { "cell_type": "markdown", - "id": "4ed54fe0", + "id": "10f2a0c1", "metadata": {}, "source": [ "Next, we look at the results for `Time`." @@ -2471,13 +2471,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "7cab3789", + "id": "334eb331", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:36.210101Z", - "iopub.status.busy": "2023-08-07T00:19:36.209985Z", - "iopub.status.idle": "2023-08-07T00:19:36.334146Z", - "shell.execute_reply": "2023-08-07T00:19:36.333801Z" + "iopub.execute_input": "2023-08-21T02:30:07.162793Z", + "iopub.status.busy": "2023-08-21T02:30:07.162651Z", + "iopub.status.idle": "2023-08-21T02:30:07.291875Z", + "shell.execute_reply": "2023-08-21T02:30:07.291550Z" }, "lines_to_next_cell": 2 }, @@ -2567,7 +2567,7 @@ }, { "cell_type": "markdown", - "id": "2d250dc9", + "id": "774963d4", "metadata": {}, "source": [ "We find that differences between centers are highly significant, as\n", @@ -2579,13 +2579,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "5cc4b898", + "id": "421811c5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:36.336025Z", - "iopub.status.busy": "2023-08-07T00:19:36.335898Z", - "iopub.status.idle": "2023-08-07T00:19:36.561174Z", - "shell.execute_reply": "2023-08-07T00:19:36.559597Z" + "iopub.execute_input": "2023-08-21T02:30:07.293545Z", + "iopub.status.busy": "2023-08-21T02:30:07.293433Z", + "iopub.status.idle": "2023-08-21T02:30:07.532213Z", + "shell.execute_reply": "2023-08-21T02:30:07.531293Z" }, "lines_to_next_cell": 2 }, @@ -2684,7 +2684,7 @@ }, { "cell_type": "markdown", - "id": "bec9d61d", + "id": "3c65063f", "metadata": {}, "source": [ "The $p$-values for Center B and evening time\n", diff --git a/Ch12-unsup-lab.Rmd b/Ch12-unsup-lab.Rmd index 5af8e75..8f885f4 100644 --- a/Ch12-unsup-lab.Rmd +++ b/Ch12-unsup-lab.Rmd @@ -14,7 +14,7 @@ jupyter: # Chapter 12 - # Lab: Unsupervised Learning +# Lab: Unsupervised Learning In this lab we demonstrate PCA and clustering on several datasets. As in other labs, we import some of our libraries at this top level. This makes the code more readable, as scanning the first few @@ -819,7 +819,7 @@ linkage. Clearly cell lines within a single cancer type do tend to cluster together, although the clustering is not perfect. We will use complete linkage hierarchical clustering for the analysis that follows. - + We can cut the dendrogram at the height that will yield a particular number of clusters, say four: diff --git a/Ch12-unsup-lab.ipynb b/Ch12-unsup-lab.ipynb index 6fb862b..54b3379 100644 --- a/Ch12-unsup-lab.ipynb +++ b/Ch12-unsup-lab.ipynb @@ -2,13 +2,13 @@ "cells": [ { "cell_type": "markdown", - "id": "80f16ff6", + "id": "b1c6a137", "metadata": {}, "source": [ "\n", "# Chapter 12\n", "\n", - " # Lab: Unsupervised Learning\n", + "# Lab: Unsupervised Learning\n", "In this lab we demonstrate PCA and clustering on several datasets.\n", "As in other labs, we import some of our libraries at this top\n", "level. This makes the code more readable, as scanning the first few\n", @@ -19,13 +19,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "24559be0", + "id": "6d5ba583", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:37.853212Z", - "iopub.status.busy": "2023-08-07T00:19:37.853110Z", - "iopub.status.idle": "2023-08-07T00:19:38.840274Z", - "shell.execute_reply": "2023-08-07T00:19:38.839771Z" + "iopub.execute_input": "2023-08-21T02:30:08.846762Z", + "iopub.status.busy": "2023-08-21T02:30:08.846653Z", + "iopub.status.idle": "2023-08-21T02:30:09.939364Z", + "shell.execute_reply": "2023-08-21T02:30:09.939004Z" }, "lines_to_next_cell": 0 }, @@ -42,7 +42,7 @@ }, { "cell_type": "markdown", - "id": "59b24a4b", + "id": "d01ab033", "metadata": {}, "source": [ "We also collect the new imports\n", @@ -52,13 +52,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "06fff57d", + "id": "64c83257", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:38.842722Z", - "iopub.status.busy": "2023-08-07T00:19:38.842335Z", - "iopub.status.idle": "2023-08-07T00:19:39.050690Z", - "shell.execute_reply": "2023-08-07T00:19:39.050367Z" + "iopub.execute_input": "2023-08-21T02:30:09.941473Z", + "iopub.status.busy": "2023-08-21T02:30:09.941296Z", + "iopub.status.idle": "2023-08-21T02:30:10.036632Z", + "shell.execute_reply": "2023-08-21T02:30:10.036163Z" } }, "outputs": [], @@ -74,7 +74,7 @@ }, { "cell_type": "markdown", - "id": "f091de06", + "id": "da4201dc", "metadata": {}, "source": [ "## Principal Components Analysis\n", @@ -89,13 +89,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "f425e07e", + "id": "04ec4481", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:39.052503Z", - "iopub.status.busy": "2023-08-07T00:19:39.052392Z", - "iopub.status.idle": "2023-08-07T00:19:40.034559Z", - "shell.execute_reply": "2023-08-07T00:19:40.034237Z" + "iopub.execute_input": "2023-08-21T02:30:10.038974Z", + "iopub.status.busy": "2023-08-21T02:30:10.038734Z", + "iopub.status.idle": "2023-08-21T02:30:11.214222Z", + "shell.execute_reply": "2023-08-21T02:30:11.213910Z" } }, "outputs": [ @@ -547,7 +547,7 @@ }, { "cell_type": "markdown", - "id": "e2942890", + "id": "02805a1a", "metadata": {}, "source": [ "The columns of the data set contain the four variables." @@ -556,13 +556,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "b127d014", + "id": "1b66036a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.036610Z", - "iopub.status.busy": "2023-08-07T00:19:40.036476Z", - "iopub.status.idle": "2023-08-07T00:19:40.039012Z", - "shell.execute_reply": "2023-08-07T00:19:40.038760Z" + "iopub.execute_input": "2023-08-21T02:30:11.216028Z", + "iopub.status.busy": "2023-08-21T02:30:11.215902Z", + "iopub.status.idle": "2023-08-21T02:30:11.218553Z", + "shell.execute_reply": "2023-08-21T02:30:11.218232Z" } }, "outputs": [ @@ -583,7 +583,7 @@ }, { "cell_type": "markdown", - "id": "68718331", + "id": "3decadf1", "metadata": {}, "source": [ "We first briefly examine the data. We notice that the variables have vastly different means." @@ -592,13 +592,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "c7343f72", + "id": "52e900fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.040518Z", - "iopub.status.busy": "2023-08-07T00:19:40.040415Z", - "iopub.status.idle": "2023-08-07T00:19:40.043628Z", - "shell.execute_reply": "2023-08-07T00:19:40.043271Z" + "iopub.execute_input": "2023-08-21T02:30:11.220090Z", + "iopub.status.busy": "2023-08-21T02:30:11.219971Z", + "iopub.status.idle": "2023-08-21T02:30:11.223332Z", + "shell.execute_reply": "2023-08-21T02:30:11.223004Z" }, "lines_to_next_cell": 2 }, @@ -624,7 +624,7 @@ }, { "cell_type": "markdown", - "id": "171a1ee0", + "id": "27d011da", "metadata": {}, "source": [ "Dataframes have several useful methods for computing\n", @@ -635,13 +635,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "34501140", + "id": "68684f78", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.045538Z", - "iopub.status.busy": "2023-08-07T00:19:40.045415Z", - "iopub.status.idle": "2023-08-07T00:19:40.048692Z", - "shell.execute_reply": "2023-08-07T00:19:40.048363Z" + "iopub.execute_input": "2023-08-21T02:30:11.225020Z", + "iopub.status.busy": "2023-08-21T02:30:11.224913Z", + "iopub.status.idle": "2023-08-21T02:30:11.228160Z", + "shell.execute_reply": "2023-08-21T02:30:11.227843Z" } }, "outputs": [ @@ -666,7 +666,7 @@ }, { "cell_type": "markdown", - "id": "5634db88", + "id": "ef3003e0", "metadata": {}, "source": [ "Not surprisingly, the variables also have vastly different variances.\n", @@ -689,13 +689,13 @@ { "cell_type": "code", "execution_count": 7, - "id": "daf119e8", + "id": "d2b7caf9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.050181Z", - "iopub.status.busy": "2023-08-07T00:19:40.050071Z", - "iopub.status.idle": "2023-08-07T00:19:40.053916Z", - "shell.execute_reply": "2023-08-07T00:19:40.053514Z" + "iopub.execute_input": "2023-08-21T02:30:11.229847Z", + "iopub.status.busy": "2023-08-21T02:30:11.229717Z", + "iopub.status.idle": "2023-08-21T02:30:11.233108Z", + "shell.execute_reply": "2023-08-21T02:30:11.232828Z" }, "lines_to_next_cell": 0 }, @@ -708,7 +708,7 @@ }, { "cell_type": "markdown", - "id": "dd6e5f5b", + "id": "54c90b5c", "metadata": {}, "source": [ "Having scaled the data, we can then\n", @@ -719,13 +719,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "a0eda7c9", + "id": "de8f57fa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.055993Z", - "iopub.status.busy": "2023-08-07T00:19:40.055896Z", - "iopub.status.idle": "2023-08-07T00:19:40.057688Z", - "shell.execute_reply": "2023-08-07T00:19:40.057406Z" + "iopub.execute_input": "2023-08-21T02:30:11.234711Z", + "iopub.status.busy": "2023-08-21T02:30:11.234595Z", + "iopub.status.idle": "2023-08-21T02:30:11.241074Z", + "shell.execute_reply": "2023-08-21T02:30:11.239548Z" }, "lines_to_next_cell": 0 }, @@ -736,7 +736,7 @@ }, { "cell_type": "markdown", - "id": "e5758ee5", + "id": "42bd0a96", "metadata": {}, "source": [ "(By default, the `PCA()` transform centers the variables to have\n", @@ -748,13 +748,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "1430fb3c", + "id": "26c45f1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.059093Z", - "iopub.status.busy": "2023-08-07T00:19:40.059009Z", - "iopub.status.idle": "2023-08-07T00:19:40.062720Z", - "shell.execute_reply": "2023-08-07T00:19:40.062341Z" + "iopub.execute_input": "2023-08-21T02:30:11.242595Z", + "iopub.status.busy": "2023-08-21T02:30:11.242489Z", + "iopub.status.idle": "2023-08-21T02:30:11.246323Z", + "shell.execute_reply": "2023-08-21T02:30:11.246064Z" } }, "outputs": [ @@ -778,7 +778,7 @@ }, { "cell_type": "markdown", - "id": "56890b11", + "id": "a68b81f5", "metadata": {}, "source": [ "After fitting, the `mean_` attribute corresponds to the means\n", @@ -789,13 +789,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "6131d8d1", + "id": "3097e99d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.064409Z", - "iopub.status.busy": "2023-08-07T00:19:40.064295Z", - "iopub.status.idle": "2023-08-07T00:19:40.066520Z", - "shell.execute_reply": "2023-08-07T00:19:40.066266Z" + "iopub.execute_input": "2023-08-21T02:30:11.247882Z", + "iopub.status.busy": "2023-08-21T02:30:11.247777Z", + "iopub.status.idle": "2023-08-21T02:30:11.250076Z", + "shell.execute_reply": "2023-08-21T02:30:11.249792Z" } }, "outputs": [ @@ -816,7 +816,7 @@ }, { "cell_type": "markdown", - "id": "3c1c34e7", + "id": "0c81e463", "metadata": {}, "source": [ "The scores can be computed using the `transform()` method\n", @@ -826,13 +826,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "08246aad", + "id": "c071a242", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.067963Z", - "iopub.status.busy": "2023-08-07T00:19:40.067854Z", - "iopub.status.idle": "2023-08-07T00:19:40.069743Z", - "shell.execute_reply": "2023-08-07T00:19:40.069498Z" + "iopub.execute_input": "2023-08-21T02:30:11.251690Z", + "iopub.status.busy": "2023-08-21T02:30:11.251589Z", + "iopub.status.idle": "2023-08-21T02:30:11.253710Z", + "shell.execute_reply": "2023-08-21T02:30:11.253213Z" }, "lines_to_next_cell": 0 }, @@ -843,7 +843,7 @@ }, { "cell_type": "markdown", - "id": "574ed47f", + "id": "84581683", "metadata": {}, "source": [ "We will plot these scores a bit further down.\n", @@ -855,13 +855,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "b682b632", + "id": "c9bcab06", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.071367Z", - "iopub.status.busy": "2023-08-07T00:19:40.071220Z", - "iopub.status.idle": "2023-08-07T00:19:40.073516Z", - "shell.execute_reply": "2023-08-07T00:19:40.073257Z" + "iopub.execute_input": "2023-08-21T02:30:11.255475Z", + "iopub.status.busy": "2023-08-21T02:30:11.255331Z", + "iopub.status.idle": "2023-08-21T02:30:11.257666Z", + "shell.execute_reply": "2023-08-21T02:30:11.257404Z" } }, "outputs": [ @@ -885,7 +885,7 @@ }, { "cell_type": "markdown", - "id": "fc8bfc99", + "id": "9dec4ca1", "metadata": {}, "source": [ "The `biplot` is a common visualization method used with\n", @@ -898,13 +898,13 @@ { "cell_type": "code", "execution_count": 13, - "id": "c165e990", + "id": "7375ab13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.075045Z", - "iopub.status.busy": "2023-08-07T00:19:40.074930Z", - "iopub.status.idle": "2023-08-07T00:19:40.260577Z", - "shell.execute_reply": "2023-08-07T00:19:40.259910Z" + "iopub.execute_input": "2023-08-21T02:30:11.259208Z", + "iopub.status.busy": "2023-08-21T02:30:11.259106Z", + "iopub.status.idle": "2023-08-21T02:30:11.411821Z", + "shell.execute_reply": "2023-08-21T02:30:11.411424Z" }, "lines_to_next_cell": 0 }, @@ -935,7 +935,7 @@ }, { "cell_type": "markdown", - "id": "eaef3e98", + "id": "4dacec4b", "metadata": {}, "source": [ "Notice that this figure is a reflection of Figure 12.1 through the $y$-axis. Recall that the\n", @@ -948,13 +948,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "848c9f35", + "id": "4c1988de", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.266938Z", - "iopub.status.busy": "2023-08-07T00:19:40.266653Z", - "iopub.status.idle": "2023-08-07T00:19:40.403287Z", - "shell.execute_reply": "2023-08-07T00:19:40.402947Z" + "iopub.execute_input": "2023-08-21T02:30:11.413868Z", + "iopub.status.busy": "2023-08-21T02:30:11.413708Z", + "iopub.status.idle": "2023-08-21T02:30:11.510731Z", + "shell.execute_reply": "2023-08-21T02:30:11.510392Z" } }, "outputs": [ @@ -986,7 +986,7 @@ }, { "cell_type": "markdown", - "id": "e380e98d", + "id": "f96f4f26", "metadata": {}, "source": [ "The standard deviations of the principal component scores are as follows:" @@ -995,13 +995,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "34fdfe21", + "id": "965c6320", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.404992Z", - "iopub.status.busy": "2023-08-07T00:19:40.404880Z", - "iopub.status.idle": "2023-08-07T00:19:40.407457Z", - "shell.execute_reply": "2023-08-07T00:19:40.407174Z" + "iopub.execute_input": "2023-08-21T02:30:11.512534Z", + "iopub.status.busy": "2023-08-21T02:30:11.512382Z", + "iopub.status.idle": "2023-08-21T02:30:11.515359Z", + "shell.execute_reply": "2023-08-21T02:30:11.514710Z" }, "lines_to_next_cell": 2 }, @@ -1023,7 +1023,7 @@ }, { "cell_type": "markdown", - "id": "c24b8ca2", + "id": "0aa2cebf", "metadata": {}, "source": [ "The variance of each score can be extracted directly from the `pcaUS` object via\n", @@ -1033,13 +1033,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "31b43c57", + "id": "cd5e1663", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.409206Z", - "iopub.status.busy": "2023-08-07T00:19:40.409061Z", - "iopub.status.idle": "2023-08-07T00:19:40.411699Z", - "shell.execute_reply": "2023-08-07T00:19:40.411382Z" + "iopub.execute_input": "2023-08-21T02:30:11.517105Z", + "iopub.status.busy": "2023-08-21T02:30:11.516982Z", + "iopub.status.idle": "2023-08-21T02:30:11.519375Z", + "shell.execute_reply": "2023-08-21T02:30:11.519076Z" }, "lines_to_next_cell": 0 }, @@ -1061,7 +1061,7 @@ }, { "cell_type": "markdown", - "id": "d2dcf543", + "id": "ef559fde", "metadata": {}, "source": [ "The proportion of variance explained by each principal \n", @@ -1071,13 +1071,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "68e47d3a", + "id": "e711d1be", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.413200Z", - "iopub.status.busy": "2023-08-07T00:19:40.413101Z", - "iopub.status.idle": "2023-08-07T00:19:40.415302Z", - "shell.execute_reply": "2023-08-07T00:19:40.415021Z" + "iopub.execute_input": "2023-08-21T02:30:11.520951Z", + "iopub.status.busy": "2023-08-21T02:30:11.520847Z", + "iopub.status.idle": "2023-08-21T02:30:11.523283Z", + "shell.execute_reply": "2023-08-21T02:30:11.523005Z" }, "lines_to_next_cell": 0 }, @@ -1099,7 +1099,7 @@ }, { "cell_type": "markdown", - "id": "831b19b7", + "id": "567f5027", "metadata": {}, "source": [ "We see that the first principal component explains 62.0% of the\n", @@ -1112,13 +1112,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "e87fe198", + "id": "e122eb41", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.416840Z", - "iopub.status.busy": "2023-08-07T00:19:40.416734Z", - "iopub.status.idle": "2023-08-07T00:19:40.552815Z", - "shell.execute_reply": "2023-08-07T00:19:40.552349Z" + "iopub.execute_input": "2023-08-21T02:30:11.524835Z", + "iopub.status.busy": "2023-08-21T02:30:11.524733Z", + "iopub.status.idle": "2023-08-21T02:30:11.658787Z", + "shell.execute_reply": "2023-08-21T02:30:11.658413Z" }, "lines_to_next_cell": 0 }, @@ -1139,7 +1139,7 @@ }, { "cell_type": "markdown", - "id": "2ed96395", + "id": "5de6bff0", "metadata": {}, "source": [ "Notice the use of `%%capture`, which suppresses the displaying of the partially completed figure." @@ -1148,13 +1148,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "409fb0c6", + "id": "bef47d90", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.554888Z", - "iopub.status.busy": "2023-08-07T00:19:40.554718Z", - "iopub.status.idle": "2023-08-07T00:19:40.664487Z", - "shell.execute_reply": "2023-08-07T00:19:40.664052Z" + "iopub.execute_input": "2023-08-21T02:30:11.661199Z", + "iopub.status.busy": "2023-08-21T02:30:11.661017Z", + "iopub.status.idle": "2023-08-21T02:30:11.782427Z", + "shell.execute_reply": "2023-08-21T02:30:11.781635Z" }, "lines_to_next_cell": 0 }, @@ -1185,7 +1185,7 @@ }, { "cell_type": "markdown", - "id": "496fb6be", + "id": "5815db80", "metadata": {}, "source": [ "The result is similar to that shown in Figure 12.3. Note\n", @@ -1196,13 +1196,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "e563e41b", + "id": "f3300d9e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.666198Z", - "iopub.status.busy": "2023-08-07T00:19:40.666084Z", - "iopub.status.idle": "2023-08-07T00:19:40.668537Z", - "shell.execute_reply": "2023-08-07T00:19:40.668242Z" + "iopub.execute_input": "2023-08-21T02:30:11.785513Z", + "iopub.status.busy": "2023-08-21T02:30:11.785329Z", + "iopub.status.idle": "2023-08-21T02:30:11.789028Z", + "shell.execute_reply": "2023-08-21T02:30:11.788419Z" }, "lines_to_next_cell": 0 }, @@ -1225,7 +1225,7 @@ }, { "cell_type": "markdown", - "id": "6794b1a3", + "id": "954cd9f7", "metadata": {}, "source": [ "## Matrix Completion\n", @@ -1245,13 +1245,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "f83ad0bc", + "id": "20e6009f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.670153Z", - "iopub.status.busy": "2023-08-07T00:19:40.670010Z", - "iopub.status.idle": "2023-08-07T00:19:40.672783Z", - "shell.execute_reply": "2023-08-07T00:19:40.672475Z" + "iopub.execute_input": "2023-08-21T02:30:11.791569Z", + "iopub.status.busy": "2023-08-21T02:30:11.791444Z", + "iopub.status.idle": "2023-08-21T02:30:11.795478Z", + "shell.execute_reply": "2023-08-21T02:30:11.794972Z" }, "lines_to_next_cell": 0 }, @@ -1275,7 +1275,7 @@ }, { "cell_type": "markdown", - "id": "f9c71e57", + "id": "53e9a370", "metadata": {}, "source": [ "The `np.linalg.svd()` function returns three components, `U`, `D` and `V`. The matrix `V` is equivalent to the\n", @@ -1286,13 +1286,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "cb9bdc46", + "id": "7d9937cf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.674352Z", - "iopub.status.busy": "2023-08-07T00:19:40.674236Z", - "iopub.status.idle": "2023-08-07T00:19:40.676540Z", - "shell.execute_reply": "2023-08-07T00:19:40.676276Z" + "iopub.execute_input": "2023-08-21T02:30:11.797640Z", + "iopub.status.busy": "2023-08-21T02:30:11.797509Z", + "iopub.status.idle": "2023-08-21T02:30:11.800846Z", + "shell.execute_reply": "2023-08-21T02:30:11.800294Z" } }, "outputs": [ @@ -1317,13 +1317,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "f23c101e", + "id": "e58f83a3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.677938Z", - "iopub.status.busy": "2023-08-07T00:19:40.677820Z", - "iopub.status.idle": "2023-08-07T00:19:40.680147Z", - "shell.execute_reply": "2023-08-07T00:19:40.679807Z" + "iopub.execute_input": "2023-08-21T02:30:11.808398Z", + "iopub.status.busy": "2023-08-21T02:30:11.808136Z", + "iopub.status.idle": "2023-08-21T02:30:11.811679Z", + "shell.execute_reply": "2023-08-21T02:30:11.811074Z" }, "lines_to_next_cell": 0 }, @@ -1348,7 +1348,7 @@ }, { "cell_type": "markdown", - "id": "a5d9e0ae", + "id": "22f7625f", "metadata": {}, "source": [ "The matrix `U` corresponds to a *standardized* version of the PCA score matrix (each column standardized to have sum-of-squares one). If we multiply each column of `U` by the corresponding element of `D`, we recover the PCA scores exactly (up to a meaningless sign flip)." @@ -1357,13 +1357,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "4cc49622", + "id": "5c4f9b34", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.681817Z", - "iopub.status.busy": "2023-08-07T00:19:40.681713Z", - "iopub.status.idle": "2023-08-07T00:19:40.684186Z", - "shell.execute_reply": "2023-08-07T00:19:40.683881Z" + "iopub.execute_input": "2023-08-21T02:30:11.813485Z", + "iopub.status.busy": "2023-08-21T02:30:11.813382Z", + "iopub.status.idle": "2023-08-21T02:30:11.816392Z", + "shell.execute_reply": "2023-08-21T02:30:11.815967Z" } }, "outputs": [ @@ -1387,13 +1387,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "c96c9fe1", + "id": "0ce84f1b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.685613Z", - "iopub.status.busy": "2023-08-07T00:19:40.685513Z", - "iopub.status.idle": "2023-08-07T00:19:40.687604Z", - "shell.execute_reply": "2023-08-07T00:19:40.687323Z" + "iopub.execute_input": "2023-08-21T02:30:11.818183Z", + "iopub.status.busy": "2023-08-21T02:30:11.818037Z", + "iopub.status.idle": "2023-08-21T02:30:11.820586Z", + "shell.execute_reply": "2023-08-21T02:30:11.820295Z" }, "lines_to_next_cell": 0 }, @@ -1417,7 +1417,7 @@ }, { "cell_type": "markdown", - "id": "6b7002cb", + "id": "ccc66247", "metadata": {}, "source": [ "While it would be possible to carry out this lab using the `PCA()` estimator,\n", @@ -1432,13 +1432,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "574409d6", + "id": "cd8b4bed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.689075Z", - "iopub.status.busy": "2023-08-07T00:19:40.688979Z", - "iopub.status.idle": "2023-08-07T00:19:40.691538Z", - "shell.execute_reply": "2023-08-07T00:19:40.691269Z" + "iopub.execute_input": "2023-08-21T02:30:11.822223Z", + "iopub.status.busy": "2023-08-21T02:30:11.822124Z", + "iopub.status.idle": "2023-08-21T02:30:11.824710Z", + "shell.execute_reply": "2023-08-21T02:30:11.824451Z" } }, "outputs": [], @@ -1457,7 +1457,7 @@ }, { "cell_type": "markdown", - "id": "fd4a5fdf", + "id": "ff75324d", "metadata": {}, "source": [ "Here the array `r_idx`\n", @@ -1472,13 +1472,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "89f190ae", + "id": "7f3bc8f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.693076Z", - "iopub.status.busy": "2023-08-07T00:19:40.692974Z", - "iopub.status.idle": "2023-08-07T00:19:40.694962Z", - "shell.execute_reply": "2023-08-07T00:19:40.694708Z" + "iopub.execute_input": "2023-08-21T02:30:11.826294Z", + "iopub.status.busy": "2023-08-21T02:30:11.826188Z", + "iopub.status.idle": "2023-08-21T02:30:11.828326Z", + "shell.execute_reply": "2023-08-21T02:30:11.827946Z" }, "lines_to_next_cell": 0 }, @@ -1492,7 +1492,7 @@ }, { "cell_type": "markdown", - "id": "a04129d0", + "id": "ff7e6ca1", "metadata": {}, "source": [ "To conduct Step 1 of the algorithm, we initialize `Xhat` --- this is $\\tilde{\\bf X}$ in Algorithm 12.1 --- by replacing\n", @@ -1505,13 +1505,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "322f339c", + "id": "771a46a7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.696660Z", - "iopub.status.busy": "2023-08-07T00:19:40.696543Z", - "iopub.status.idle": "2023-08-07T00:19:40.698585Z", - "shell.execute_reply": "2023-08-07T00:19:40.698324Z" + "iopub.execute_input": "2023-08-21T02:30:11.830112Z", + "iopub.status.busy": "2023-08-21T02:30:11.829990Z", + "iopub.status.idle": "2023-08-21T02:30:11.832019Z", + "shell.execute_reply": "2023-08-21T02:30:11.831653Z" } }, "outputs": [], @@ -1523,7 +1523,7 @@ }, { "cell_type": "markdown", - "id": "357041e8", + "id": "30a6e972", "metadata": {}, "source": [ "Before we begin Step 2, we set ourselves up to measure the progress of our\n", @@ -1533,13 +1533,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "7e106d1a", + "id": "1416f048", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.700112Z", - "iopub.status.busy": "2023-08-07T00:19:40.700007Z", - "iopub.status.idle": "2023-08-07T00:19:40.702027Z", - "shell.execute_reply": "2023-08-07T00:19:40.701767Z" + "iopub.execute_input": "2023-08-21T02:30:11.834018Z", + "iopub.status.busy": "2023-08-21T02:30:11.833888Z", + "iopub.status.idle": "2023-08-21T02:30:11.836065Z", + "shell.execute_reply": "2023-08-21T02:30:11.835740Z" }, "lines_to_next_cell": 0 }, @@ -1555,7 +1555,7 @@ }, { "cell_type": "markdown", - "id": "105ac73f", + "id": "40dbfa78", "metadata": {}, "source": [ "Here `ismiss` is a logical matrix with the same dimensions as `Xna`;\n", @@ -1573,13 +1573,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "7cb05ce4", + "id": "9eff34aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.703581Z", - "iopub.status.busy": "2023-08-07T00:19:40.703476Z", - "iopub.status.idle": "2023-08-07T00:19:40.706441Z", - "shell.execute_reply": "2023-08-07T00:19:40.706179Z" + "iopub.execute_input": "2023-08-21T02:30:11.838230Z", + "iopub.status.busy": "2023-08-21T02:30:11.838081Z", + "iopub.status.idle": "2023-08-21T02:30:11.841552Z", + "shell.execute_reply": "2023-08-21T02:30:11.841240Z" } }, "outputs": [ @@ -1616,7 +1616,7 @@ }, { "cell_type": "markdown", - "id": "5cd8edf2", + "id": "b005a639", "metadata": {}, "source": [ "We see that after eight iterations, the relative error has fallen below `thresh = 1e-7`, and so the algorithm terminates. When this happens, the mean squared error of the non-missing elements equals 0.381.\n", @@ -1628,13 +1628,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "6f245188", + "id": "7815b948", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.708006Z", - "iopub.status.busy": "2023-08-07T00:19:40.707901Z", - "iopub.status.idle": "2023-08-07T00:19:40.710450Z", - "shell.execute_reply": "2023-08-07T00:19:40.710194Z" + "iopub.execute_input": "2023-08-21T02:30:11.843245Z", + "iopub.status.busy": "2023-08-21T02:30:11.843118Z", + "iopub.status.idle": "2023-08-21T02:30:11.846592Z", + "shell.execute_reply": "2023-08-21T02:30:11.846200Z" }, "lines_to_next_cell": 2 }, @@ -1656,7 +1656,7 @@ }, { "cell_type": "markdown", - "id": "f22444ff", + "id": "9091b3ad", "metadata": {}, "source": [ "In this lab, we implemented Algorithm 12.1 ourselves for didactic purposes. However, a reader who wishes to apply matrix completion to their data might look to more specialized `Python` implementations." @@ -1664,7 +1664,7 @@ }, { "cell_type": "markdown", - "id": "7da441a1", + "id": "e528e2a6", "metadata": {}, "source": [ "## Clustering" @@ -1672,7 +1672,7 @@ }, { "cell_type": "markdown", - "id": "ef4903d6", + "id": "8ba3f642", "metadata": {}, "source": [ "### $K$-Means Clustering\n", @@ -1686,13 +1686,13 @@ { "cell_type": "code", "execution_count": 32, - "id": "345fb41e", + "id": "f63cf4b8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.712093Z", - "iopub.status.busy": "2023-08-07T00:19:40.711979Z", - "iopub.status.idle": "2023-08-07T00:19:40.713935Z", - "shell.execute_reply": "2023-08-07T00:19:40.713674Z" + "iopub.execute_input": "2023-08-21T02:30:11.848430Z", + "iopub.status.busy": "2023-08-21T02:30:11.848311Z", + "iopub.status.idle": "2023-08-21T02:30:11.850755Z", + "shell.execute_reply": "2023-08-21T02:30:11.850430Z" }, "lines_to_next_cell": 0 }, @@ -1706,7 +1706,7 @@ }, { "cell_type": "markdown", - "id": "6ed3587f", + "id": "4bb54e06", "metadata": {}, "source": [ "We now perform $K$-means clustering with $K=2$." @@ -1715,13 +1715,13 @@ { "cell_type": "code", "execution_count": 33, - "id": "3a8c21a2", + "id": "f973c2d4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:40.715319Z", - "iopub.status.busy": "2023-08-07T00:19:40.715219Z", - "iopub.status.idle": "2023-08-07T00:19:41.035873Z", - "shell.execute_reply": "2023-08-07T00:19:41.035293Z" + "iopub.execute_input": "2023-08-21T02:30:11.852603Z", + "iopub.status.busy": "2023-08-21T02:30:11.852463Z", + "iopub.status.idle": "2023-08-21T02:30:12.419856Z", + "shell.execute_reply": "2023-08-21T02:30:12.416814Z" }, "lines_to_next_cell": 0 }, @@ -1734,7 +1734,7 @@ }, { "cell_type": "markdown", - "id": "df4fb0eb", + "id": "eeca2ae3", "metadata": {}, "source": [ "We specify `random_state` to make the results reproducible. The cluster assignments of the 50 observations are contained in `kmeans.labels_`." @@ -1743,13 +1743,13 @@ { "cell_type": "code", "execution_count": 34, - "id": "e3e35b5d", + "id": "e980954b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.038578Z", - "iopub.status.busy": "2023-08-07T00:19:41.038393Z", - "iopub.status.idle": "2023-08-07T00:19:41.041820Z", - "shell.execute_reply": "2023-08-07T00:19:41.041365Z" + "iopub.execute_input": "2023-08-21T02:30:12.436151Z", + "iopub.status.busy": "2023-08-21T02:30:12.434738Z", + "iopub.status.idle": "2023-08-21T02:30:12.484691Z", + "shell.execute_reply": "2023-08-21T02:30:12.459324Z" }, "lines_to_next_cell": 0 }, @@ -1773,7 +1773,7 @@ }, { "cell_type": "markdown", - "id": "6632fa4c", + "id": "d796ee94", "metadata": {}, "source": [ "The $K$-means clustering perfectly separated the observations into two\n", @@ -1785,13 +1785,13 @@ { "cell_type": "code", "execution_count": 35, - "id": "d928650a", + "id": "a94d452c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.043940Z", - "iopub.status.busy": "2023-08-07T00:19:41.043807Z", - "iopub.status.idle": "2023-08-07T00:19:41.152788Z", - "shell.execute_reply": "2023-08-07T00:19:41.152394Z" + "iopub.execute_input": "2023-08-21T02:30:12.510741Z", + "iopub.status.busy": "2023-08-21T02:30:12.510582Z", + "iopub.status.idle": "2023-08-21T02:30:12.636062Z", + "shell.execute_reply": "2023-08-21T02:30:12.635730Z" } }, "outputs": [ @@ -1814,7 +1814,7 @@ }, { "cell_type": "markdown", - "id": "1f6a6d01", + "id": "6463d546", "metadata": {}, "source": [ "Here the observations can be easily plotted because they are\n", @@ -1832,13 +1832,13 @@ { "cell_type": "code", "execution_count": 36, - "id": "92e5175c", + "id": "94ff654c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.154810Z", - "iopub.status.busy": "2023-08-07T00:19:41.154695Z", - "iopub.status.idle": "2023-08-07T00:19:41.278338Z", - "shell.execute_reply": "2023-08-07T00:19:41.277867Z" + "iopub.execute_input": "2023-08-21T02:30:12.638065Z", + "iopub.status.busy": "2023-08-21T02:30:12.637921Z", + "iopub.status.idle": "2023-08-21T02:30:12.806481Z", + "shell.execute_reply": "2023-08-21T02:30:12.805717Z" }, "lines_to_next_cell": 0 }, @@ -1865,7 +1865,7 @@ }, { "cell_type": "markdown", - "id": "82317a30", + "id": "52dceb84", "metadata": {}, "source": [ "When $K=3$, $K$-means clustering splits up the two clusters.\n", @@ -1881,13 +1881,13 @@ { "cell_type": "code", "execution_count": 37, - "id": "4911ecc7", + "id": "b3561317", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.280637Z", - "iopub.status.busy": "2023-08-07T00:19:41.280494Z", - "iopub.status.idle": "2023-08-07T00:19:41.296485Z", - "shell.execute_reply": "2023-08-07T00:19:41.296101Z" + "iopub.execute_input": "2023-08-21T02:30:12.808756Z", + "iopub.status.busy": "2023-08-21T02:30:12.808647Z", + "iopub.status.idle": "2023-08-21T02:30:12.868305Z", + "shell.execute_reply": "2023-08-21T02:30:12.867287Z" }, "lines_to_next_cell": 0 }, @@ -1915,7 +1915,7 @@ }, { "cell_type": "markdown", - "id": "96e6df1f", + "id": "e32af47d", "metadata": {}, "source": [ "Note that `kmeans.inertia_` is the total within-cluster sum\n", @@ -1935,7 +1935,7 @@ }, { "cell_type": "markdown", - "id": "904ea858", + "id": "a34ddf89", "metadata": {}, "source": [ "### Hierarchical Clustering\n", @@ -1954,13 +1954,13 @@ { "cell_type": "code", "execution_count": 38, - "id": "1b42a700", + "id": "be9e4f9c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.298559Z", - "iopub.status.busy": "2023-08-07T00:19:41.298421Z", - "iopub.status.idle": "2023-08-07T00:19:41.304986Z", - "shell.execute_reply": "2023-08-07T00:19:41.304678Z" + "iopub.execute_input": "2023-08-21T02:30:12.871403Z", + "iopub.status.busy": "2023-08-21T02:30:12.871255Z", + "iopub.status.idle": "2023-08-21T02:30:12.877754Z", + "shell.execute_reply": "2023-08-21T02:30:12.877453Z" } }, "outputs": [ @@ -1991,7 +1991,7 @@ }, { "cell_type": "markdown", - "id": "22199f4d", + "id": "efa0aecd", "metadata": {}, "source": [ "This computes the entire dendrogram.\n", @@ -2001,13 +2001,13 @@ { "cell_type": "code", "execution_count": 39, - "id": "50ef7eea", + "id": "f80d8563", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.306962Z", - "iopub.status.busy": "2023-08-07T00:19:41.306831Z", - "iopub.status.idle": "2023-08-07T00:19:41.310423Z", - "shell.execute_reply": "2023-08-07T00:19:41.310047Z" + "iopub.execute_input": "2023-08-21T02:30:12.879743Z", + "iopub.status.busy": "2023-08-21T02:30:12.879627Z", + "iopub.status.idle": "2023-08-21T02:30:12.883455Z", + "shell.execute_reply": "2023-08-21T02:30:12.883063Z" } }, "outputs": [], @@ -2024,7 +2024,7 @@ }, { "cell_type": "markdown", - "id": "7e8db256", + "id": "d51b36f5", "metadata": {}, "source": [ "To use a precomputed distance matrix, we provide an additional\n", @@ -2034,13 +2034,13 @@ { "cell_type": "code", "execution_count": 40, - "id": "bf7a2408", + "id": "83e7ccf8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.312244Z", - "iopub.status.busy": "2023-08-07T00:19:41.312117Z", - "iopub.status.idle": "2023-08-07T00:19:41.317488Z", - "shell.execute_reply": "2023-08-07T00:19:41.317168Z" + "iopub.execute_input": "2023-08-21T02:30:12.885091Z", + "iopub.status.busy": "2023-08-21T02:30:12.884985Z", + "iopub.status.idle": "2023-08-21T02:30:12.890499Z", + "shell.execute_reply": "2023-08-21T02:30:12.890138Z" } }, "outputs": [ @@ -2075,7 +2075,7 @@ }, { "cell_type": "markdown", - "id": "8cd7fb7c", + "id": "d2bfc639", "metadata": {}, "source": [ "We use\n", @@ -2094,13 +2094,13 @@ { "cell_type": "code", "execution_count": 41, - "id": "a118c0ab", + "id": "56ee8cbf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.319281Z", - "iopub.status.busy": "2023-08-07T00:19:41.319164Z", - "iopub.status.idle": "2023-08-07T00:19:41.547955Z", - "shell.execute_reply": "2023-08-07T00:19:41.547603Z" + "iopub.execute_input": "2023-08-21T02:30:12.892483Z", + "iopub.status.busy": "2023-08-21T02:30:12.892271Z", + "iopub.status.idle": "2023-08-21T02:30:13.132407Z", + "shell.execute_reply": "2023-08-21T02:30:13.132103Z" } }, "outputs": [ @@ -2127,7 +2127,7 @@ }, { "cell_type": "markdown", - "id": "a325a001", + "id": "03438b18", "metadata": {}, "source": [ "We may want to color branches of the tree above\n", @@ -2139,13 +2139,13 @@ { "cell_type": "code", "execution_count": 42, - "id": "b1ff41c0", + "id": "10f4fc97", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.549650Z", - "iopub.status.busy": "2023-08-07T00:19:41.549522Z", - "iopub.status.idle": "2023-08-07T00:19:41.777366Z", - "shell.execute_reply": "2023-08-07T00:19:41.776967Z" + "iopub.execute_input": "2023-08-21T02:30:13.134084Z", + "iopub.status.busy": "2023-08-21T02:30:13.133962Z", + "iopub.status.idle": "2023-08-21T02:30:13.363909Z", + "shell.execute_reply": "2023-08-21T02:30:13.363594Z" } }, "outputs": [ @@ -2170,7 +2170,7 @@ }, { "cell_type": "markdown", - "id": "e774708c", + "id": "9b64a78f", "metadata": {}, "source": [ "To determine the cluster labels for each observation associated with a\n", @@ -2181,13 +2181,13 @@ { "cell_type": "code", "execution_count": 43, - "id": "c2752a96", + "id": "3aed342a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.779450Z", - "iopub.status.busy": "2023-08-07T00:19:41.779300Z", - "iopub.status.idle": "2023-08-07T00:19:41.783422Z", - "shell.execute_reply": "2023-08-07T00:19:41.783033Z" + "iopub.execute_input": "2023-08-21T02:30:13.365591Z", + "iopub.status.busy": "2023-08-21T02:30:13.365487Z", + "iopub.status.idle": "2023-08-21T02:30:13.368978Z", + "shell.execute_reply": "2023-08-21T02:30:13.368698Z" } }, "outputs": [ @@ -2210,7 +2210,7 @@ }, { "cell_type": "markdown", - "id": "d501d220", + "id": "0b986d91", "metadata": {}, "source": [ "This can also be achieved by providing an argument `n_clusters`\n", @@ -2223,13 +2223,13 @@ { "cell_type": "code", "execution_count": 44, - "id": "1407f7a4", + "id": "49c6db0c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.785112Z", - "iopub.status.busy": "2023-08-07T00:19:41.785008Z", - "iopub.status.idle": "2023-08-07T00:19:41.788913Z", - "shell.execute_reply": "2023-08-07T00:19:41.788641Z" + "iopub.execute_input": "2023-08-21T02:30:13.370508Z", + "iopub.status.busy": "2023-08-21T02:30:13.370414Z", + "iopub.status.idle": "2023-08-21T02:30:13.373767Z", + "shell.execute_reply": "2023-08-21T02:30:13.373373Z" } }, "outputs": [ @@ -2299,7 +2299,7 @@ }, { "cell_type": "markdown", - "id": "469bbad6", + "id": "8ff90643", "metadata": {}, "source": [ "To scale the variables before performing hierarchical clustering of\n", @@ -2309,13 +2309,13 @@ { "cell_type": "code", "execution_count": 45, - "id": "2d74f224", + "id": "0ef4b7ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:41.790458Z", - "iopub.status.busy": "2023-08-07T00:19:41.790357Z", - "iopub.status.idle": "2023-08-07T00:19:42.031301Z", - "shell.execute_reply": "2023-08-07T00:19:42.030904Z" + "iopub.execute_input": "2023-08-21T02:30:13.375598Z", + "iopub.status.busy": "2023-08-21T02:30:13.375476Z", + "iopub.status.idle": "2023-08-21T02:30:13.613632Z", + "shell.execute_reply": "2023-08-21T02:30:13.613228Z" } }, "outputs": [ @@ -2344,7 +2344,7 @@ }, { "cell_type": "markdown", - "id": "3caaa1a5", + "id": "671f8aaf", "metadata": {}, "source": [ "Correlation-based distances between observations can be used for\n", @@ -2364,13 +2364,13 @@ { "cell_type": "code", "execution_count": 46, - "id": "b7f7da12", + "id": "51761ef3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.033202Z", - "iopub.status.busy": "2023-08-07T00:19:42.033063Z", - "iopub.status.idle": "2023-08-07T00:19:42.217388Z", - "shell.execute_reply": "2023-08-07T00:19:42.217021Z" + "iopub.execute_input": "2023-08-21T02:30:13.616266Z", + "iopub.status.busy": "2023-08-21T02:30:13.616114Z", + "iopub.status.idle": "2023-08-21T02:30:13.807244Z", + "shell.execute_reply": "2023-08-21T02:30:13.806904Z" }, "lines_to_next_cell": 2 }, @@ -2402,7 +2402,7 @@ }, { "cell_type": "markdown", - "id": "5b00804e", + "id": "f2f77cb2", "metadata": {}, "source": [ "## NCI60 Data Example\n", @@ -2416,13 +2416,13 @@ { "cell_type": "code", "execution_count": 47, - "id": "b94424fc", + "id": "3dbe7baf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.219256Z", - "iopub.status.busy": "2023-08-07T00:19:42.219115Z", - "iopub.status.idle": "2023-08-07T00:19:42.227039Z", - "shell.execute_reply": "2023-08-07T00:19:42.226704Z" + "iopub.execute_input": "2023-08-21T02:30:13.808881Z", + "iopub.status.busy": "2023-08-21T02:30:13.808757Z", + "iopub.status.idle": "2023-08-21T02:30:13.815572Z", + "shell.execute_reply": "2023-08-21T02:30:13.815234Z" } }, "outputs": [], @@ -2434,7 +2434,7 @@ }, { "cell_type": "markdown", - "id": "7313fea6", + "id": "6f03fcd9", "metadata": {}, "source": [ "Each cell line is labeled with a cancer type. We do not make use of\n", @@ -2449,13 +2449,13 @@ { "cell_type": "code", "execution_count": 48, - "id": "cea54566", + "id": "8f4e9db0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.228793Z", - "iopub.status.busy": "2023-08-07T00:19:42.228704Z", - "iopub.status.idle": "2023-08-07T00:19:42.231034Z", - "shell.execute_reply": "2023-08-07T00:19:42.230727Z" + "iopub.execute_input": "2023-08-21T02:30:13.817455Z", + "iopub.status.busy": "2023-08-21T02:30:13.817327Z", + "iopub.status.idle": "2023-08-21T02:30:13.819934Z", + "shell.execute_reply": "2023-08-21T02:30:13.819588Z" }, "lines_to_next_cell": 2 }, @@ -2477,7 +2477,7 @@ }, { "cell_type": "markdown", - "id": "6ebf27f1", + "id": "7fad9a75", "metadata": {}, "source": [ "We begin by examining the cancer types for the cell lines.\n" @@ -2486,13 +2486,13 @@ { "cell_type": "code", "execution_count": 49, - "id": "4dac41bb", + "id": "6373db4d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.232626Z", - "iopub.status.busy": "2023-08-07T00:19:42.232514Z", - "iopub.status.idle": "2023-08-07T00:19:42.236205Z", - "shell.execute_reply": "2023-08-07T00:19:42.235893Z" + "iopub.execute_input": "2023-08-21T02:30:13.821622Z", + "iopub.status.busy": "2023-08-21T02:30:13.821498Z", + "iopub.status.idle": "2023-08-21T02:30:13.825550Z", + "shell.execute_reply": "2023-08-21T02:30:13.825258Z" }, "lines_to_next_cell": 2 }, @@ -2529,7 +2529,7 @@ }, { "cell_type": "markdown", - "id": "8f16f96a", + "id": "c75ae01f", "metadata": {}, "source": [ "### PCA on the NCI60 Data\n", @@ -2542,13 +2542,13 @@ { "cell_type": "code", "execution_count": 50, - "id": "d8ebadd6", + "id": "9f185f83", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.237776Z", - "iopub.status.busy": "2023-08-07T00:19:42.237686Z", - "iopub.status.idle": "2023-08-07T00:19:42.764811Z", - "shell.execute_reply": "2023-08-07T00:19:42.760096Z" + "iopub.execute_input": "2023-08-21T02:30:13.827046Z", + "iopub.status.busy": "2023-08-21T02:30:13.826963Z", + "iopub.status.idle": "2023-08-21T02:30:15.128422Z", + "shell.execute_reply": "2023-08-21T02:30:15.127267Z" } }, "outputs": [], @@ -2561,7 +2561,7 @@ }, { "cell_type": "markdown", - "id": "8a8c9932", + "id": "e859fa7c", "metadata": {}, "source": [ "We now plot the first few principal component score vectors, in order\n", @@ -2574,13 +2574,13 @@ { "cell_type": "code", "execution_count": 51, - "id": "63b5efe3", + "id": "b044b197", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.771948Z", - "iopub.status.busy": "2023-08-07T00:19:42.771506Z", - "iopub.status.idle": "2023-08-07T00:19:42.971788Z", - "shell.execute_reply": "2023-08-07T00:19:42.971058Z" + "iopub.execute_input": "2023-08-21T02:30:15.132319Z", + "iopub.status.busy": "2023-08-21T02:30:15.130836Z", + "iopub.status.idle": "2023-08-21T02:30:15.450531Z", + "shell.execute_reply": "2023-08-21T02:30:15.450148Z" }, "lines_to_next_cell": 0 }, @@ -2619,7 +2619,7 @@ }, { "cell_type": "markdown", - "id": "87b33a9c", + "id": "01debda9", "metadata": {}, "source": [ "On the whole, cell lines corresponding to a single cancer type do tend to\n", @@ -2633,7 +2633,7 @@ }, { "cell_type": "markdown", - "id": "890fdb54", + "id": "8695f122", "metadata": {}, "source": [ "We can also plot the percent variance\n", @@ -2644,13 +2644,13 @@ { "cell_type": "code", "execution_count": 52, - "id": "e20c3cc1", + "id": "b2450bb2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:42.976556Z", - "iopub.status.busy": "2023-08-07T00:19:42.975788Z", - "iopub.status.idle": "2023-08-07T00:19:43.134142Z", - "shell.execute_reply": "2023-08-07T00:19:43.133869Z" + "iopub.execute_input": "2023-08-21T02:30:15.453108Z", + "iopub.status.busy": "2023-08-21T02:30:15.452934Z", + "iopub.status.idle": "2023-08-21T02:30:15.641832Z", + "shell.execute_reply": "2023-08-21T02:30:15.641441Z" }, "lines_to_next_cell": 0 }, @@ -2685,7 +2685,7 @@ }, { "cell_type": "markdown", - "id": "cb6eb4f8", + "id": "6c9d8235", "metadata": {}, "source": [ "We see that together, the first seven principal components explain\n", @@ -2702,7 +2702,7 @@ }, { "cell_type": "markdown", - "id": "8962791f", + "id": "a4de7a0d", "metadata": {}, "source": [ "### Clustering the Observations of the NCI60 Data\n", @@ -2717,13 +2717,13 @@ { "cell_type": "code", "execution_count": 53, - "id": "622de805", + "id": "f3f85512", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:43.135947Z", - "iopub.status.busy": "2023-08-07T00:19:43.135742Z", - "iopub.status.idle": "2023-08-07T00:19:43.138541Z", - "shell.execute_reply": "2023-08-07T00:19:43.138181Z" + "iopub.execute_input": "2023-08-21T02:30:15.645761Z", + "iopub.status.busy": "2023-08-21T02:30:15.645577Z", + "iopub.status.idle": "2023-08-21T02:30:15.648982Z", + "shell.execute_reply": "2023-08-21T02:30:15.648549Z" } }, "outputs": [], @@ -2746,7 +2746,7 @@ }, { "cell_type": "markdown", - "id": "9cf5f836", + "id": "3f24eed8", "metadata": {}, "source": [ "Let’s plot our results." @@ -2755,13 +2755,13 @@ { "cell_type": "code", "execution_count": 54, - "id": "54d40449", + "id": "5cbeeb19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:43.140415Z", - "iopub.status.busy": "2023-08-07T00:19:43.140161Z", - "iopub.status.idle": "2023-08-07T00:19:44.449125Z", - "shell.execute_reply": "2023-08-07T00:19:44.448816Z" + "iopub.execute_input": "2023-08-21T02:30:15.651172Z", + "iopub.status.busy": "2023-08-21T02:30:15.651062Z", + "iopub.status.idle": "2023-08-21T02:30:17.138064Z", + "shell.execute_reply": "2023-08-21T02:30:17.137456Z" }, "lines_to_next_cell": 0 }, @@ -2786,7 +2786,7 @@ }, { "cell_type": "markdown", - "id": "1703afbb", + "id": "91af9aad", "metadata": {}, "source": [ "We see that the\n", @@ -2800,7 +2800,7 @@ "cluster together, although the clustering is not perfect. We will use\n", "complete linkage hierarchical clustering for the analysis that\n", "follows.\n", - "\n", + " \n", "We can cut the dendrogram at the height that will yield a particular\n", "number of clusters, say four:" ] @@ -2808,13 +2808,13 @@ { "cell_type": "code", "execution_count": 55, - "id": "dc80afc8", + "id": "1eb3c92e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:44.450952Z", - "iopub.status.busy": "2023-08-07T00:19:44.450828Z", - "iopub.status.idle": "2023-08-07T00:19:44.462134Z", - "shell.execute_reply": "2023-08-07T00:19:44.461872Z" + "iopub.execute_input": "2023-08-21T02:30:17.141105Z", + "iopub.status.busy": "2023-08-21T02:30:17.140950Z", + "iopub.status.idle": "2023-08-21T02:30:17.153308Z", + "shell.execute_reply": "2023-08-21T02:30:17.152985Z" }, "lines_to_next_cell": 2 }, @@ -2989,7 +2989,7 @@ }, { "cell_type": "markdown", - "id": "d8ecae69", + "id": "194d0034", "metadata": {}, "source": [ "There are some clear patterns. All the leukemia cell lines fall in\n", @@ -3002,13 +3002,13 @@ { "cell_type": "code", "execution_count": 56, - "id": "40ff59f9", + "id": "e3c2841c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:44.463951Z", - "iopub.status.busy": "2023-08-07T00:19:44.463834Z", - "iopub.status.idle": "2023-08-07T00:19:44.884205Z", - "shell.execute_reply": "2023-08-07T00:19:44.883879Z" + "iopub.execute_input": "2023-08-21T02:30:17.155262Z", + "iopub.status.busy": "2023-08-21T02:30:17.155100Z", + "iopub.status.idle": "2023-08-21T02:30:17.595981Z", + "shell.execute_reply": "2023-08-21T02:30:17.595541Z" } }, "outputs": [ @@ -3031,7 +3031,7 @@ }, { "cell_type": "markdown", - "id": "1c03368c", + "id": "f0154576", "metadata": {}, "source": [ "The `axhline()` function draws a horizontal line line on top of any\n", @@ -3051,13 +3051,13 @@ { "cell_type": "code", "execution_count": 57, - "id": "1587e83b", + "id": "94dfe5a0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:44.886050Z", - "iopub.status.busy": "2023-08-07T00:19:44.885932Z", - "iopub.status.idle": "2023-08-07T00:19:46.259058Z", - "shell.execute_reply": "2023-08-07T00:19:46.257441Z" + "iopub.execute_input": "2023-08-21T02:30:17.598183Z", + "iopub.status.busy": "2023-08-21T02:30:17.598049Z", + "iopub.status.idle": "2023-08-21T02:30:46.877046Z", + "shell.execute_reply": "2023-08-21T02:30:46.874804Z" } }, "outputs": [ @@ -3152,7 +3152,7 @@ }, { "cell_type": "markdown", - "id": "b49c4a73", + "id": "54c529ff", "metadata": {}, "source": [ "We see that the four clusters obtained using hierarchical clustering\n", @@ -3176,13 +3176,13 @@ { "cell_type": "code", "execution_count": 58, - "id": "b09ceeab", + "id": "abd51940", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:46.265164Z", - "iopub.status.busy": "2023-08-07T00:19:46.264638Z", - "iopub.status.idle": "2023-08-07T00:19:46.685470Z", - "shell.execute_reply": "2023-08-07T00:19:46.685151Z" + "iopub.execute_input": "2023-08-21T02:30:46.888673Z", + "iopub.status.busy": "2023-08-21T02:30:46.888240Z", + "iopub.status.idle": "2023-08-21T02:30:47.344737Z", + "shell.execute_reply": "2023-08-21T02:30:47.344286Z" }, "lines_to_next_cell": 0 }, @@ -3379,7 +3379,7 @@ }, { "cell_type": "markdown", - "id": "5e1733b5", + "id": "2e388ef2", "metadata": {}, "source": [ "\n", diff --git a/Ch13-multiple-lab.Rmd b/Ch13-multiple-lab.Rmd index ef5db15..bee30c3 100644 --- a/Ch13-multiple-lab.Rmd +++ b/Ch13-multiple-lab.Rmd @@ -121,7 +121,7 @@ amounts to quite a weak signal, and it resulted in a high number of Type II errors. Let’s instead simulate data with a stronger signal, so that the ratio of the mean to the standard deviation for the false null hypotheses equals $1$. We make only 10 Type II errors. - + ```{python} true_mean = np.array([1]*50 + [0]*50) @@ -244,6 +244,7 @@ mult_test(fund_mini_pvals, method = "holm", alpha=0.05)[:2] As discussed previously, Manager One seems to perform particularly well, whereas Manager Two has poor performance. + ```{python} fund_mini.mean() @@ -575,5 +576,5 @@ ax.set_xlabel("Number of Rejections") ax.set_ylabel("False Discovery Rate"); ``` - + diff --git a/Ch13-multiple-lab.ipynb b/Ch13-multiple-lab.ipynb index 65c7fd0..bb9684d 100644 --- a/Ch13-multiple-lab.ipynb +++ b/Ch13-multiple-lab.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "75b2d75c", + "id": "687e9b80", "metadata": {}, "source": [ "\n", @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "34e410a6", + "id": "9f594a41", "metadata": {}, "source": [ "We include our usual imports seen in earlier labs." @@ -23,13 +23,13 @@ { "cell_type": "code", "execution_count": 1, - "id": "1f928b2d", + "id": "7cc4fbeb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:48.489971Z", - "iopub.status.busy": "2023-08-07T00:19:48.489727Z", - "iopub.status.idle": "2023-08-07T00:19:50.216508Z", - "shell.execute_reply": "2023-08-07T00:19:50.215573Z" + "iopub.execute_input": "2023-08-21T02:29:16.417394Z", + "iopub.status.busy": "2023-08-21T02:29:16.417287Z", + "iopub.status.idle": "2023-08-21T02:29:17.613483Z", + "shell.execute_reply": "2023-08-21T02:29:17.613156Z" } }, "outputs": [], @@ -43,7 +43,7 @@ }, { "cell_type": "markdown", - "id": "12319e0a", + "id": "08ba7bed", "metadata": {}, "source": [ "We also collect the new imports\n", @@ -53,13 +53,13 @@ { "cell_type": "code", "execution_count": 2, - "id": "eb4b32aa", + "id": "595efc18", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.219989Z", - "iopub.status.busy": "2023-08-07T00:19:50.219429Z", - "iopub.status.idle": "2023-08-07T00:19:50.223239Z", - "shell.execute_reply": "2023-08-07T00:19:50.222392Z" + "iopub.execute_input": "2023-08-21T02:29:17.615551Z", + "iopub.status.busy": "2023-08-21T02:29:17.615375Z", + "iopub.status.idle": "2023-08-21T02:29:17.617379Z", + "shell.execute_reply": "2023-08-21T02:29:17.617087Z" }, "lines_to_next_cell": 2 }, @@ -78,7 +78,7 @@ }, { "cell_type": "markdown", - "id": "a2747e58", + "id": "69e5023e", "metadata": {}, "source": [ "## Review of Hypothesis Tests\n", @@ -92,13 +92,13 @@ { "cell_type": "code", "execution_count": 3, - "id": "e12ac0cd", + "id": "985d1d6e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.225454Z", - "iopub.status.busy": "2023-08-07T00:19:50.225335Z", - "iopub.status.idle": "2023-08-07T00:19:50.228651Z", - "shell.execute_reply": "2023-08-07T00:19:50.228301Z" + "iopub.execute_input": "2023-08-21T02:29:17.618995Z", + "iopub.status.busy": "2023-08-21T02:29:17.618887Z", + "iopub.status.idle": "2023-08-21T02:29:17.620921Z", + "shell.execute_reply": "2023-08-21T02:29:17.620629Z" } }, "outputs": [], @@ -111,7 +111,7 @@ }, { "cell_type": "markdown", - "id": "70d37233", + "id": "9ae561c4", "metadata": {}, "source": [ "To begin, we use `ttest_1samp()` from the\n", @@ -122,13 +122,13 @@ { "cell_type": "code", "execution_count": 4, - "id": "04d0f49e", + "id": "753d612a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.230854Z", - "iopub.status.busy": "2023-08-07T00:19:50.230727Z", - "iopub.status.idle": "2023-08-07T00:19:50.236745Z", - "shell.execute_reply": "2023-08-07T00:19:50.236388Z" + "iopub.execute_input": "2023-08-21T02:29:17.622537Z", + "iopub.status.busy": "2023-08-21T02:29:17.622429Z", + "iopub.status.idle": "2023-08-21T02:29:17.626063Z", + "shell.execute_reply": "2023-08-21T02:29:17.625801Z" } }, "outputs": [ @@ -150,7 +150,7 @@ }, { "cell_type": "markdown", - "id": "cf83426f", + "id": "5d9dc17f", "metadata": {}, "source": [ "The $p$-value comes out to 0.931, which is not low enough to\n", @@ -169,13 +169,13 @@ { "cell_type": "code", "execution_count": 5, - "id": "d1f0c695", + "id": "facd6569", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.238822Z", - "iopub.status.busy": "2023-08-07T00:19:50.238685Z", - "iopub.status.idle": "2023-08-07T00:19:50.263876Z", - "shell.execute_reply": "2023-08-07T00:19:50.263508Z" + "iopub.execute_input": "2023-08-21T02:29:17.627714Z", + "iopub.status.busy": "2023-08-21T02:29:17.627617Z", + "iopub.status.idle": "2023-08-21T02:29:17.651726Z", + "shell.execute_reply": "2023-08-21T02:29:17.651448Z" }, "lines_to_next_cell": 0 }, @@ -195,7 +195,7 @@ }, { "cell_type": "markdown", - "id": "3d8e0d96", + "id": "4094daa7", "metadata": {}, "source": [ "Since this is a simulated data set, we can create a $2 \\times 2$ table\n", @@ -205,13 +205,13 @@ { "cell_type": "code", "execution_count": 6, - "id": "7a9594a0", + "id": "e89ef3eb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.266708Z", - "iopub.status.busy": "2023-08-07T00:19:50.266387Z", - "iopub.status.idle": "2023-08-07T00:19:50.280831Z", - "shell.execute_reply": "2023-08-07T00:19:50.280194Z" + "iopub.execute_input": "2023-08-21T02:29:17.653344Z", + "iopub.status.busy": "2023-08-21T02:29:17.653256Z", + "iopub.status.idle": "2023-08-21T02:29:17.662644Z", + "shell.execute_reply": "2023-08-21T02:29:17.662346Z" }, "lines_to_next_cell": 0 }, @@ -282,7 +282,7 @@ }, { "cell_type": "markdown", - "id": "9610c817", + "id": "a10ba423", "metadata": {}, "source": [ "Therefore, at level $\\alpha=0.05$, we reject 15 of the 50 false\n", @@ -299,19 +299,20 @@ "amounts to quite a weak signal, and it resulted in a high number of\n", "Type II errors. Let’s instead simulate data with a stronger signal,\n", "so that the ratio of the mean to the standard deviation for the false\n", - "null hypotheses equals $1$. We make only 10 Type II errors.\n" + "null hypotheses equals $1$. We make only 10 Type II errors.\n", + " " ] }, { "cell_type": "code", "execution_count": 7, - "id": "25f7fc5d", + "id": "ae184aaf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.283336Z", - "iopub.status.busy": "2023-08-07T00:19:50.283198Z", - "iopub.status.idle": "2023-08-07T00:19:50.317664Z", - "shell.execute_reply": "2023-08-07T00:19:50.317356Z" + "iopub.execute_input": "2023-08-21T02:29:17.664327Z", + "iopub.status.busy": "2023-08-21T02:29:17.664213Z", + "iopub.status.idle": "2023-08-21T02:29:17.690928Z", + "shell.execute_reply": "2023-08-21T02:29:17.690657Z" }, "lines_to_next_cell": 0 }, @@ -394,7 +395,7 @@ }, { "cell_type": "markdown", - "id": "bb70c597", + "id": "7ca15d3f", "metadata": {}, "source": [ " " @@ -402,7 +403,7 @@ }, { "cell_type": "markdown", - "id": "f6953d33", + "id": "9e9f5977", "metadata": {}, "source": [ "## Family-Wise Error Rate\n", @@ -417,13 +418,13 @@ { "cell_type": "code", "execution_count": 8, - "id": "369b5bd3", + "id": "0295fe68", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.319399Z", - "iopub.status.busy": "2023-08-07T00:19:50.319268Z", - "iopub.status.idle": "2023-08-07T00:19:50.674219Z", - "shell.execute_reply": "2023-08-07T00:19:50.673887Z" + "iopub.execute_input": "2023-08-21T02:29:17.692568Z", + "iopub.status.busy": "2023-08-21T02:29:17.692459Z", + "iopub.status.idle": "2023-08-21T02:29:17.899403Z", + "shell.execute_reply": "2023-08-21T02:29:17.899081Z" } }, "outputs": [ @@ -454,7 +455,7 @@ }, { "cell_type": "markdown", - "id": "3a81479e", + "id": "fecaca9e", "metadata": {}, "source": [ "As discussed previously, even for moderate values of $m$ such as $50$,\n", @@ -473,13 +474,13 @@ { "cell_type": "code", "execution_count": 9, - "id": "9ce7a19f", + "id": "406e59a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.676029Z", - "iopub.status.busy": "2023-08-07T00:19:50.675909Z", - "iopub.status.idle": "2023-08-07T00:19:50.715451Z", - "shell.execute_reply": "2023-08-07T00:19:50.715145Z" + "iopub.execute_input": "2023-08-21T02:29:17.901146Z", + "iopub.status.busy": "2023-08-21T02:29:17.901041Z", + "iopub.status.idle": "2023-08-21T02:29:17.939312Z", + "shell.execute_reply": "2023-08-21T02:29:17.939019Z" } }, "outputs": [ @@ -505,7 +506,7 @@ }, { "cell_type": "markdown", - "id": "7561e3a3", + "id": "87bab88b", "metadata": {}, "source": [ "The $p$-values are low for Managers One and Three, and high for the\n", @@ -530,7 +531,7 @@ }, { "cell_type": "markdown", - "id": "5b608e46", + "id": "d0c7a2a0", "metadata": {}, "source": [ "The `mult_test()` function takes $p$-values and a `method` argument, as well as an optional\n", @@ -541,13 +542,13 @@ { "cell_type": "code", "execution_count": 10, - "id": "de6cffed", + "id": "d4f6a247", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.717476Z", - "iopub.status.busy": "2023-08-07T00:19:50.717258Z", - "iopub.status.idle": "2023-08-07T00:19:50.719841Z", - "shell.execute_reply": "2023-08-07T00:19:50.719577Z" + "iopub.execute_input": "2023-08-21T02:29:17.941032Z", + "iopub.status.busy": "2023-08-21T02:29:17.940919Z", + "iopub.status.idle": "2023-08-21T02:29:17.943369Z", + "shell.execute_reply": "2023-08-21T02:29:17.943081Z" }, "lines_to_next_cell": 2 }, @@ -570,7 +571,7 @@ }, { "cell_type": "markdown", - "id": "5135c6b9", + "id": "4d5bc7e7", "metadata": {}, "source": [ "The $p$-values `bonf` are simply the `fund_mini_pvalues` multiplied by 5 and truncated to be less than\n", @@ -580,13 +581,13 @@ { "cell_type": "code", "execution_count": 11, - "id": "0de71500", + "id": "01a29d71", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.721450Z", - "iopub.status.busy": "2023-08-07T00:19:50.721342Z", - "iopub.status.idle": "2023-08-07T00:19:50.723962Z", - "shell.execute_reply": "2023-08-07T00:19:50.723691Z" + "iopub.execute_input": "2023-08-21T02:29:17.944859Z", + "iopub.status.busy": "2023-08-21T02:29:17.944760Z", + "iopub.status.idle": "2023-08-21T02:29:17.946888Z", + "shell.execute_reply": "2023-08-21T02:29:17.946639Z" } }, "outputs": [ @@ -608,7 +609,7 @@ }, { "cell_type": "markdown", - "id": "1f0bc112", + "id": "e68c9051", "metadata": {}, "source": [ "Therefore, using Bonferroni’s method, we are able to reject the null hypothesis only for Manager\n", @@ -622,13 +623,13 @@ { "cell_type": "code", "execution_count": 12, - "id": "f7e87bdb", + "id": "95454eb4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.725450Z", - "iopub.status.busy": "2023-08-07T00:19:50.725349Z", - "iopub.status.idle": "2023-08-07T00:19:50.777055Z", - "shell.execute_reply": "2023-08-07T00:19:50.776612Z" + "iopub.execute_input": "2023-08-21T02:29:17.948474Z", + "iopub.status.busy": "2023-08-21T02:29:17.948372Z", + "iopub.status.idle": "2023-08-21T02:29:17.990740Z", + "shell.execute_reply": "2023-08-21T02:29:17.990464Z" }, "lines_to_next_cell": 2 }, @@ -651,23 +652,24 @@ }, { "cell_type": "markdown", - "id": "f762fecd", + "id": "587b5b48", "metadata": {}, "source": [ "As discussed previously, Manager One seems to perform particularly\n", - "well, whereas Manager Two has poor performance." + "well, whereas Manager Two has poor performance.\n", + " " ] }, { "cell_type": "code", "execution_count": 13, - "id": "e88be376", + "id": "1f1ac764", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.779763Z", - "iopub.status.busy": "2023-08-07T00:19:50.779554Z", - "iopub.status.idle": "2023-08-07T00:19:50.783798Z", - "shell.execute_reply": "2023-08-07T00:19:50.783418Z" + "iopub.execute_input": "2023-08-21T02:29:17.992261Z", + "iopub.status.busy": "2023-08-21T02:29:17.992149Z", + "iopub.status.idle": "2023-08-21T02:29:17.995141Z", + "shell.execute_reply": "2023-08-21T02:29:17.994894Z" }, "lines_to_next_cell": 2 }, @@ -694,7 +696,7 @@ }, { "cell_type": "markdown", - "id": "88dbf0a6", + "id": "e3c4b716", "metadata": {}, "source": [ "Is there evidence of a meaningful difference in performance between\n", @@ -705,13 +707,13 @@ { "cell_type": "code", "execution_count": 14, - "id": "41149af6", + "id": "298d975d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.786752Z", - "iopub.status.busy": "2023-08-07T00:19:50.786580Z", - "iopub.status.idle": "2023-08-07T00:19:50.791095Z", - "shell.execute_reply": "2023-08-07T00:19:50.790607Z" + "iopub.execute_input": "2023-08-21T02:29:17.996686Z", + "iopub.status.busy": "2023-08-21T02:29:17.996590Z", + "iopub.status.idle": "2023-08-21T02:29:17.999332Z", + "shell.execute_reply": "2023-08-21T02:29:17.999076Z" } }, "outputs": [ @@ -733,7 +735,7 @@ }, { "cell_type": "markdown", - "id": "1aca6122", + "id": "3908d7d2", "metadata": {}, "source": [ "The test results in a $p$-value of 0.038,\n", @@ -757,13 +759,13 @@ { "cell_type": "code", "execution_count": 15, - "id": "61aabda7", + "id": "be117713", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:50.793577Z", - "iopub.status.busy": "2023-08-07T00:19:50.793394Z", - "iopub.status.idle": "2023-08-07T00:19:51.318999Z", - "shell.execute_reply": "2023-08-07T00:19:51.318071Z" + "iopub.execute_input": "2023-08-21T02:29:18.000853Z", + "iopub.status.busy": "2023-08-21T02:29:18.000747Z", + "iopub.status.idle": "2023-08-21T02:29:18.487357Z", + "shell.execute_reply": "2023-08-21T02:29:18.487078Z" }, "lines_to_next_cell": 2 }, @@ -799,7 +801,7 @@ }, { "cell_type": "markdown", - "id": "e0084fc5", + "id": "0fdf963f", "metadata": {}, "source": [ "The `pairwise_tukeyhsd()` function provides confidence intervals\n", @@ -817,13 +819,13 @@ { "cell_type": "code", "execution_count": 16, - "id": "cbcad4de", + "id": "537c4ea8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.321200Z", - "iopub.status.busy": "2023-08-07T00:19:51.321046Z", - "iopub.status.idle": "2023-08-07T00:19:51.411142Z", - "shell.execute_reply": "2023-08-07T00:19:51.410682Z" + "iopub.execute_input": "2023-08-21T02:29:18.489069Z", + "iopub.status.busy": "2023-08-21T02:29:18.488949Z", + "iopub.status.idle": "2023-08-21T02:29:18.570869Z", + "shell.execute_reply": "2023-08-21T02:29:18.570427Z" } }, "outputs": [ @@ -845,7 +847,7 @@ }, { "cell_type": "markdown", - "id": "6278d13c", + "id": "8590f246", "metadata": {}, "source": [ "## False Discovery Rate\n", @@ -858,13 +860,13 @@ { "cell_type": "code", "execution_count": 17, - "id": "b5842190", + "id": "2c88ec87", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.413331Z", - "iopub.status.busy": "2023-08-07T00:19:51.413176Z", - "iopub.status.idle": "2023-08-07T00:19:51.848427Z", - "shell.execute_reply": "2023-08-07T00:19:51.847956Z" + "iopub.execute_input": "2023-08-21T02:29:18.572454Z", + "iopub.status.busy": "2023-08-21T02:29:18.572341Z", + "iopub.status.idle": "2023-08-21T02:29:19.005707Z", + "shell.execute_reply": "2023-08-21T02:29:19.005387Z" } }, "outputs": [], @@ -876,7 +878,7 @@ }, { "cell_type": "markdown", - "id": "80fc2fcc", + "id": "80e77fab", "metadata": {}, "source": [ "There are far too many managers to consider trying to control the FWER.\n", @@ -887,13 +889,13 @@ { "cell_type": "code", "execution_count": 18, - "id": "7c9d8bed", + "id": "b6d56819", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.850663Z", - "iopub.status.busy": "2023-08-07T00:19:51.850523Z", - "iopub.status.idle": "2023-08-07T00:19:51.854777Z", - "shell.execute_reply": "2023-08-07T00:19:51.854196Z" + "iopub.execute_input": "2023-08-21T02:29:19.007847Z", + "iopub.status.busy": "2023-08-21T02:29:19.007564Z", + "iopub.status.idle": "2023-08-21T02:29:19.010742Z", + "shell.execute_reply": "2023-08-21T02:29:19.010371Z" } }, "outputs": [ @@ -916,7 +918,7 @@ }, { "cell_type": "markdown", - "id": "4f73096d", + "id": "b4662444", "metadata": {}, "source": [ "The *q-values* output by the\n", @@ -932,13 +934,13 @@ { "cell_type": "code", "execution_count": 19, - "id": "bfa39f7c", + "id": "b00da3a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.856795Z", - "iopub.status.busy": "2023-08-07T00:19:51.856678Z", - "iopub.status.idle": "2023-08-07T00:19:51.859719Z", - "shell.execute_reply": "2023-08-07T00:19:51.859327Z" + "iopub.execute_input": "2023-08-21T02:29:19.012400Z", + "iopub.status.busy": "2023-08-21T02:29:19.012298Z", + "iopub.status.idle": "2023-08-21T02:29:19.015314Z", + "shell.execute_reply": "2023-08-21T02:29:19.014978Z" }, "lines_to_next_cell": 0 }, @@ -960,7 +962,7 @@ }, { "cell_type": "markdown", - "id": "ccb44c8d", + "id": "fdccb808", "metadata": {}, "source": [ "We find that 146 of the 2,000 fund managers have a $q$-value below\n", @@ -976,13 +978,13 @@ { "cell_type": "code", "execution_count": 20, - "id": "70b69b47", + "id": "1c230117", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.861924Z", - "iopub.status.busy": "2023-08-07T00:19:51.861522Z", - "iopub.status.idle": "2023-08-07T00:19:51.864394Z", - "shell.execute_reply": "2023-08-07T00:19:51.863987Z" + "iopub.execute_input": "2023-08-21T02:29:19.016857Z", + "iopub.status.busy": "2023-08-21T02:29:19.016769Z", + "iopub.status.idle": "2023-08-21T02:29:19.019332Z", + "shell.execute_reply": "2023-08-21T02:29:19.019032Z" }, "lines_to_next_cell": 2 }, @@ -1004,7 +1006,7 @@ }, { "cell_type": "markdown", - "id": "c8a969f4", + "id": "6112239d", "metadata": {}, "source": [ "Figure 13.6 displays the ordered\n", @@ -1026,13 +1028,13 @@ { "cell_type": "code", "execution_count": 21, - "id": "4c0ddea1", + "id": "62289650", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.865978Z", - "iopub.status.busy": "2023-08-07T00:19:51.865869Z", - "iopub.status.idle": "2023-08-07T00:19:51.868792Z", - "shell.execute_reply": "2023-08-07T00:19:51.868357Z" + "iopub.execute_input": "2023-08-21T02:29:19.021112Z", + "iopub.status.busy": "2023-08-21T02:29:19.020904Z", + "iopub.status.idle": "2023-08-21T02:29:19.023622Z", + "shell.execute_reply": "2023-08-21T02:29:19.023338Z" } }, "outputs": [], @@ -1051,7 +1053,7 @@ }, { "cell_type": "markdown", - "id": "ddeb3900", + "id": "c36b13b7", "metadata": {}, "source": [ "We now reproduce the middle panel of Figure 13.6." @@ -1060,13 +1062,13 @@ { "cell_type": "code", "execution_count": 22, - "id": "0314eac9", + "id": "18b3c0ed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:51.871473Z", - "iopub.status.busy": "2023-08-07T00:19:51.871214Z", - "iopub.status.idle": "2023-08-07T00:19:52.126671Z", - "shell.execute_reply": "2023-08-07T00:19:52.126261Z" + "iopub.execute_input": "2023-08-21T02:29:19.025191Z", + "iopub.status.busy": "2023-08-21T02:29:19.025074Z", + "iopub.status.idle": "2023-08-21T02:29:19.262207Z", + "shell.execute_reply": "2023-08-21T02:29:19.261823Z" }, "lines_to_next_cell": 2 }, @@ -1096,7 +1098,7 @@ }, { "cell_type": "markdown", - "id": "83416f4a", + "id": "d87198e4", "metadata": {}, "source": [ "## A Re-Sampling Approach\n", @@ -1110,13 +1112,13 @@ { "cell_type": "code", "execution_count": 23, - "id": "b59b8137", + "id": "eb79e606", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:52.129167Z", - "iopub.status.busy": "2023-08-07T00:19:52.128842Z", - "iopub.status.idle": "2023-08-07T00:19:52.208320Z", - "shell.execute_reply": "2023-08-07T00:19:52.207936Z" + "iopub.execute_input": "2023-08-21T02:29:19.264174Z", + "iopub.status.busy": "2023-08-21T02:29:19.264030Z", + "iopub.status.idle": "2023-08-21T02:29:19.339232Z", + "shell.execute_reply": "2023-08-21T02:29:19.338912Z" }, "lines_to_next_cell": 2 }, @@ -1145,7 +1147,7 @@ }, { "cell_type": "markdown", - "id": "5534c8d4", + "id": "659ee2b8", "metadata": {}, "source": [ "There are four classes of cancer. For each gene, we compare the mean\n", @@ -1161,13 +1163,13 @@ { "cell_type": "code", "execution_count": 24, - "id": "96fb2f61", + "id": "1afbcf47", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:52.210235Z", - "iopub.status.busy": "2023-08-07T00:19:52.210101Z", - "iopub.status.idle": "2023-08-07T00:19:52.215004Z", - "shell.execute_reply": "2023-08-07T00:19:52.214604Z" + "iopub.execute_input": "2023-08-21T02:29:19.341009Z", + "iopub.status.busy": "2023-08-21T02:29:19.340889Z", + "iopub.status.idle": "2023-08-21T02:29:19.344670Z", + "shell.execute_reply": "2023-08-21T02:29:19.344391Z" }, "lines_to_next_cell": 2 }, @@ -1195,7 +1197,7 @@ }, { "cell_type": "markdown", - "id": "3131124e", + "id": "61f24919", "metadata": {}, "source": [ "However, this $p$-value relies on the assumption that under the null\n", @@ -1214,13 +1216,13 @@ { "cell_type": "code", "execution_count": 25, - "id": "fdc229fa", + "id": "f73f4c6d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:52.217206Z", - "iopub.status.busy": "2023-08-07T00:19:52.217085Z", - "iopub.status.idle": "2023-08-07T00:19:54.776066Z", - "shell.execute_reply": "2023-08-07T00:19:54.775642Z" + "iopub.execute_input": "2023-08-21T02:29:19.346368Z", + "iopub.status.busy": "2023-08-21T02:29:19.346227Z", + "iopub.status.idle": "2023-08-21T02:29:21.776569Z", + "shell.execute_reply": "2023-08-21T02:29:21.776267Z" }, "lines_to_next_cell": 2 }, @@ -1253,7 +1255,7 @@ }, { "cell_type": "markdown", - "id": "c7fc4557", + "id": "a97f74af", "metadata": {}, "source": [ "This fraction, 0.0398,\n", @@ -1265,13 +1267,13 @@ { "cell_type": "code", "execution_count": 26, - "id": "e3894695", + "id": "062daf19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:54.778563Z", - "iopub.status.busy": "2023-08-07T00:19:54.778388Z", - "iopub.status.idle": "2023-08-07T00:19:55.017161Z", - "shell.execute_reply": "2023-08-07T00:19:55.016821Z" + "iopub.execute_input": "2023-08-21T02:29:21.778366Z", + "iopub.status.busy": "2023-08-21T02:29:21.778242Z", + "iopub.status.idle": "2023-08-21T02:29:21.990476Z", + "shell.execute_reply": "2023-08-21T02:29:21.989965Z" }, "lines_to_next_cell": 0 }, @@ -1307,7 +1309,7 @@ }, { "cell_type": "markdown", - "id": "3bd21158", + "id": "e81b939b", "metadata": {}, "source": [ "The re-sampling-based null distribution is almost identical to the theoretical null distribution, which is displayed in red.\n", @@ -1325,13 +1327,13 @@ { "cell_type": "code", "execution_count": 27, - "id": "3b7392cb", + "id": "6d14fcad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:19:55.019036Z", - "iopub.status.busy": "2023-08-07T00:19:55.018920Z", - "iopub.status.idle": "2023-08-07T00:39:19.291005Z", - "shell.execute_reply": "2023-08-07T00:39:19.287314Z" + "iopub.execute_input": "2023-08-21T02:29:21.992665Z", + "iopub.status.busy": "2023-08-21T02:29:21.992515Z", + "iopub.status.idle": "2023-08-21T02:34:05.930300Z", + "shell.execute_reply": "2023-08-21T02:34:05.929181Z" } }, "outputs": [], @@ -1358,7 +1360,7 @@ }, { "cell_type": "markdown", - "id": "1b92df1b", + "id": "06286699", "metadata": {}, "source": [ "Next, we compute the number of rejected null hypotheses $R$, the\n", @@ -1371,13 +1373,13 @@ { "cell_type": "code", "execution_count": 28, - "id": "cac15616", + "id": "8f0ec909", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:39:19.314420Z", - "iopub.status.busy": "2023-08-07T00:39:19.313452Z", - "iopub.status.idle": "2023-08-07T00:39:19.544251Z", - "shell.execute_reply": "2023-08-07T00:39:19.543932Z" + "iopub.execute_input": "2023-08-21T02:34:05.935513Z", + "iopub.status.busy": "2023-08-21T02:34:05.935323Z", + "iopub.status.idle": "2023-08-21T02:34:06.118079Z", + "shell.execute_reply": "2023-08-21T02:34:06.117633Z" } }, "outputs": [], @@ -1394,7 +1396,7 @@ }, { "cell_type": "markdown", - "id": "f6779ea0", + "id": "e26b64c6", "metadata": {}, "source": [ "Now, for any given FDR, we can find the genes that will be\n", @@ -1412,13 +1414,13 @@ { "cell_type": "code", "execution_count": 29, - "id": "9661eb10", + "id": "f11339e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:39:19.546693Z", - "iopub.status.busy": "2023-08-07T00:39:19.546543Z", - "iopub.status.idle": "2023-08-07T00:39:19.549970Z", - "shell.execute_reply": "2023-08-07T00:39:19.549697Z" + "iopub.execute_input": "2023-08-21T02:34:06.120138Z", + "iopub.status.busy": "2023-08-21T02:34:06.119994Z", + "iopub.status.idle": "2023-08-21T02:34:06.123846Z", + "shell.execute_reply": "2023-08-21T02:34:06.123478Z" } }, "outputs": [ @@ -1457,7 +1459,7 @@ }, { "cell_type": "markdown", - "id": "001e3fc1", + "id": "e145621b", "metadata": {}, "source": [ "At an FDR threshold of 0.2, more genes are selected, at the cost of having a higher expected\n", @@ -1467,13 +1469,13 @@ { "cell_type": "code", "execution_count": 30, - "id": "18ad4900", + "id": "d2600773", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:39:19.552090Z", - "iopub.status.busy": "2023-08-07T00:39:19.552004Z", - "iopub.status.idle": "2023-08-07T00:39:19.554743Z", - "shell.execute_reply": "2023-08-07T00:39:19.554473Z" + "iopub.execute_input": "2023-08-21T02:34:06.126460Z", + "iopub.status.busy": "2023-08-21T02:34:06.126346Z", + "iopub.status.idle": "2023-08-21T02:34:06.129561Z", + "shell.execute_reply": "2023-08-21T02:34:06.129124Z" } }, "outputs": [ @@ -1524,7 +1526,7 @@ }, { "cell_type": "markdown", - "id": "8767f70c", + "id": "32e600ff", "metadata": {}, "source": [ "The next line generates Figure 13.11, which is similar\n", @@ -1535,13 +1537,13 @@ { "cell_type": "code", "execution_count": 31, - "id": "28c276b6", + "id": "924b7705", "metadata": { "execution": { - "iopub.execute_input": "2023-08-07T00:39:19.556715Z", - "iopub.status.busy": "2023-08-07T00:39:19.556515Z", - "iopub.status.idle": "2023-08-07T00:39:19.650514Z", - "shell.execute_reply": "2023-08-07T00:39:19.650181Z" + "iopub.execute_input": "2023-08-21T02:34:06.131323Z", + "iopub.status.busy": "2023-08-21T02:34:06.131207Z", + "iopub.status.idle": "2023-08-21T02:34:06.216626Z", + "shell.execute_reply": "2023-08-21T02:34:06.216270Z" }, "lines_to_next_cell": 0 }, @@ -1566,10 +1568,10 @@ }, { "cell_type": "markdown", - "id": "e4b5d621", + "id": "b9f54695", "metadata": {}, "source": [ - "\n" + " \n" ] } ], diff --git a/README.md b/README.md index c8867b2..e3d1f97 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,23 @@ # ISLP_labs -[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/intro-stat-learning/ISLP_labs/v2) +[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/intro-stat-learning/ISLP_labs/v2.1) Up-to-date version of labs for ISLP. This repo will track labs for ISLP as their source code changes. The intent is that building a conda environment with -`requirements.txt` will reproduce -the results in this repo. +`requirements.txt` will reproduce the results in this repo. To install the current version of the requirements run ``` -pip install -r https://raw.githubusercontent.com/intro-stat-learning/ISLP_labs/v2/requirements.txt; +pip install -r https://raw.githubusercontent.com/intro-stat-learning/ISLP_labs/v2.1/requirements.txt; ``` The labs can now be run from this directory: ``` -cd notebook; jupyter lab Ch02-statlearning-lab.ipynb ``` diff --git a/requirements.txt b/requirements.txt index f591d4d..c917f5a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,17 +1,16 @@ -numpy>=1.7.1 -scipy>=0.9 -pandas>=0.20 -pandas<=1.9 -lxml # pandas needs this for html -scikit-learn>=1.2 -joblib -statsmodels>=0.13 -lifelines -pygam # for GAM in Ch7 -l0bnb==1.0.0 # for bestsubsets -ISLP -torch -pytorch_lightning -torchmetrics -torchvision -torchinfo +numpy==1.24.2 +scipy==1.11.1 +pandas==1.5.3 +lxml==4.9.3 +scikit-learn==1.3.0 +joblib==1.3.1 +statsmodels==0.14.0 +lifelines==0.27.7 +pygam==0.9.0 +l0bnb==1.0.0 +torch==2.0.1 +torchvision==0.15.2 +pytorch-lightning==2.0.6 +torchinfo==1.8.0 +torchmetrics==1.0.1 +ISLP==0.3.19 From 353df68ce0ccf2919e65bec482a58d93079a50c0 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Mon, 21 Aug 2023 13:00:43 -0700 Subject: [PATCH 02/18] Construction and Deployment of a Docker image (#5) Github action to create a docker file * Using manual dispatch, updated user name for docker * Update .dockerignore --------- Co-authored-by: Jonathan Taylor --- .dockerignore | 5 +++++ .github/workflows/docker.yml | 35 +++++++++++++++++++++++++++++++++++ docker/Dockerfile | 11 +++++++++++ 3 files changed, 51 insertions(+) create mode 100644 .dockerignore create mode 100644 .github/workflows/docker.yml create mode 100644 docker/Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..0814f57 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +.github +.git +docker +.dockerignore +*.Rmd diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..d03a410 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,35 @@ +name: Publish Docker image + +on: + workflow_dispatch: + inputs: null + +jobs: + + push_to_registry: + name: Push Docker image to Docker Hub + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v3 + + - name: Log in to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v4 + with: + images: jetaylor74/ISLP_labs + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: . + file: docker/Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..d6c7075 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,11 @@ +FROM docker.io/jupyter/base-notebook:lab-4.0.5 + +COPY requirements.txt . + +# Install Python deps, the user approach is documented here: +# https://pythonspeed.com/articles/multi-stage-docker-python/ +RUN pip install --user --no-cache-dir -r requirements.txt + +COPY --chown=jovyan:users . ${HOME}/work + + From f9455fc5a135448af4f9dde341ec379aca721b8c Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:08:07 -0700 Subject: [PATCH 03/18] using ref to checkout --- .github/workflows/docker.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d03a410..2a7b6b0 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,7 +2,12 @@ name: Publish Docker image on: workflow_dispatch: - inputs: null + inputs: + LABS: + description: 'Labs version' + required: true + default: 'v2.1' + type: string jobs: @@ -12,7 +17,9 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v3 - + with: + ref: ${{ inputs.LABS }} + - name: Log in to Docker Hub uses: docker/login-action@v2 with: From f48e9ab55e0c4da9d93c6a5a680475325901f172 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:09:46 -0700 Subject: [PATCH 04/18] syntax error --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 2a7b6b0..1fbab9d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ inputs.LABS }} - + - name: Log in to Docker Hub uses: docker/login-action@v2 with: From 73cf69f925398de41b147eee1d2a955fce936602 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:11:53 -0700 Subject: [PATCH 05/18] tag must be after a commit with docker action --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1fbab9d..6ead2f8 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -6,7 +6,7 @@ on: LABS: description: 'Labs version' required: true - default: 'v2.1' + default: 'v2.1.1' type: string jobs: From 0bcd786c2abee8c3f28aecd433d2ff474bcf1518 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:23:30 -0700 Subject: [PATCH 06/18] trying metadata tags --- .github/workflows/docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 6ead2f8..1f91668 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -31,6 +31,8 @@ jobs: uses: docker/metadata-action@v4 with: images: jetaylor74/ISLP_labs + tags: + type=semver,pattern={{raw}} - name: Build and push Docker image uses: docker/build-push-action@v4 From 3c748c15fe19ba755e07efd7292b92cf56f9f1ae Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:27:32 -0700 Subject: [PATCH 07/18] order matters? --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1f91668..8f092c5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -30,9 +30,9 @@ jobs: id: meta uses: docker/metadata-action@v4 with: - images: jetaylor74/ISLP_labs - tags: + tags: | type=semver,pattern={{raw}} + images: jetaylor74/islp_labs - name: Build and push Docker image uses: docker/build-push-action@v4 From 91a9d76efb95fa0b9bf2d9e29c85e56fc25fe77e Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:38:55 -0700 Subject: [PATCH 08/18] using push event --- .github/workflows/docker.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 8f092c5..e880b45 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,13 +2,12 @@ name: Publish Docker image on: workflow_dispatch: - inputs: - LABS: - description: 'Labs version' - required: true - default: 'v2.1.1' - type: string - + push: + tags: + - 'v*' + branches: + - 'stable' + jobs: push_to_registry: @@ -17,8 +16,6 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v3 - with: - ref: ${{ inputs.LABS }} - name: Log in to Docker Hub uses: docker/login-action@v2 @@ -30,8 +27,6 @@ jobs: id: meta uses: docker/metadata-action@v4 with: - tags: | - type=semver,pattern={{raw}} images: jetaylor74/islp_labs - name: Build and push Docker image From e3e48ab5c69098c320cfef26040b82b09c68f779 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:45:24 -0700 Subject: [PATCH 09/18] updating tags based on https://github.com/marketplace/actions/docker-metadata-action --- .github/workflows/docker.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e880b45..3214034 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -28,7 +28,10 @@ jobs: uses: docker/metadata-action@v4 with: images: jetaylor74/islp_labs - + tags: | + type=ref,event=branch + type=semver,pattern={{raw}} + - name: Build and push Docker image uses: docker/build-push-action@v4 with: From 106236b5dbb86c6ca6c341bbd16e5d3580c11fcc Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:46:14 -0700 Subject: [PATCH 10/18] whitespace --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3214034..6180344 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -31,7 +31,7 @@ jobs: tags: | type=ref,event=branch type=semver,pattern={{raw}} - + - name: Build and push Docker image uses: docker/build-push-action@v4 with: From 9d84224629ab9f5ac0625eaf1a49adb21d9896d7 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 13:57:15 -0700 Subject: [PATCH 11/18] removing quotes based on https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 6180344..fc90583 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -4,9 +4,9 @@ on: workflow_dispatch: push: tags: - - 'v*' + - v* branches: - - 'stable' + - stable jobs: From 58b6936b0e1fa8f8b7290bef5b65b03f3842ee94 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 14:10:27 -0700 Subject: [PATCH 12/18] only the stable branch push --- .github/workflows/docker.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fc90583..436517a 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,8 +3,6 @@ name: Publish Docker image on: workflow_dispatch: push: - tags: - - v* branches: - stable From 7c19e32f0a466a27c91c585796fede09ea5868a0 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 21 Aug 2023 17:41:26 -0700 Subject: [PATCH 13/18] docker to .docker --- {docker => .docker}/Dockerfile | 0 .dockerignore | 2 +- .github/workflows/docker.yml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {docker => .docker}/Dockerfile (100%) diff --git a/docker/Dockerfile b/.docker/Dockerfile similarity index 100% rename from docker/Dockerfile rename to .docker/Dockerfile diff --git a/.dockerignore b/.dockerignore index 0814f57..a4b83e2 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,5 @@ .github .git -docker +.docker .dockerignore *.Rmd diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 436517a..cabfe07 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -34,7 +34,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . - file: docker/Dockerfile + file: .docker/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} From 1583d66bfa4b9a14fd77549658b53a09d7171fbb Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Tue, 22 Aug 2023 00:06:02 -0700 Subject: [PATCH 14/18] trevor's edits 0822 --- .github/workflows/docker.yml | 4 +- Ch02-statlearn-lab.Rmd | 2 +- Ch02-statlearn-lab.ipynb | 946 +- Ch03-linreg-lab.Rmd | 2 +- Ch03-linreg-lab.ipynb | 307 +- Ch04-classification-lab.Rmd | 2 +- Ch04-classification-lab.ipynb | 638 +- Ch05-resample-lab.Rmd | 2 +- Ch05-resample-lab.ipynb | 212 +- Ch06-varselect-lab.Rmd | 2 +- Ch06-varselect-lab.ipynb | 7086 +- Ch07-nonlin-lab.Rmd | 2 +- Ch07-nonlin-lab.ipynb | 398 +- Ch08-baggboost-lab.Rmd | 2 +- Ch08-baggboost-lab.ipynb | 286 +- Ch09-svm-lab.Rmd | 2 +- Ch09-svm-lab.ipynb | 278 +- Ch10-deeplearning-lab.Rmd | 16 + Ch10-deeplearning-lab.ipynb | 170204 ++++++++++++++++++++++++++++++- Ch11-surv-lab.Rmd | 2 +- Ch11-surv-lab.ipynb | 284 +- Ch12-unsup-lab.Rmd | 2 +- Ch12-unsup-lab.ipynb | 468 +- Ch13-multiple-lab.Rmd | 2 +- Ch13-multiple-lab.ipynb | 252 +- 25 files changed, 175088 insertions(+), 6313 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cabfe07..207016d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -5,7 +5,9 @@ on: push: branches: - stable - + tags: + - v* + jobs: push_to_registry: diff --git a/Ch02-statlearn-lab.Rmd b/Ch02-statlearn-lab.Rmd index 556bbbf..67c88ef 100644 --- a/Ch02-statlearn-lab.Rmd +++ b/Ch02-statlearn-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch02-statlearn-lab.ipynb b/Ch02-statlearn-lab.ipynb index f137f1c..9f202fe 100644 --- a/Ch02-statlearn-lab.ipynb +++ b/Ch02-statlearn-lab.ipynb @@ -102,10 +102,10 @@ "id": "9e8aa21f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.654555Z", - "iopub.status.busy": "2023-08-21T03:36:04.654242Z", - "iopub.status.idle": "2023-08-21T03:36:04.664431Z", - "shell.execute_reply": "2023-08-21T03:36:04.663990Z" + "iopub.execute_input": "2023-08-22T06:59:05.520475Z", + "iopub.status.busy": "2023-08-22T06:59:05.520373Z", + "iopub.status.idle": "2023-08-22T06:59:05.524957Z", + "shell.execute_reply": "2023-08-22T06:59:05.524661Z" } }, "outputs": [ @@ -135,10 +135,10 @@ "id": "d62ec119", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.666908Z", - "iopub.status.busy": "2023-08-21T03:36:04.666727Z", - "iopub.status.idle": "2023-08-21T03:36:04.693658Z", - "shell.execute_reply": "2023-08-21T03:36:04.693389Z" + "iopub.execute_input": "2023-08-22T06:59:05.526569Z", + "iopub.status.busy": "2023-08-22T06:59:05.526459Z", + "iopub.status.idle": "2023-08-22T06:59:05.528480Z", + "shell.execute_reply": "2023-08-22T06:59:05.528197Z" } }, "outputs": [], @@ -160,10 +160,10 @@ "id": "c64e9f4d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.695168Z", - "iopub.status.busy": "2023-08-21T03:36:04.695071Z", - "iopub.status.idle": "2023-08-21T03:36:04.697996Z", - "shell.execute_reply": "2023-08-21T03:36:04.697736Z" + "iopub.execute_input": "2023-08-22T06:59:05.530498Z", + "iopub.status.busy": "2023-08-22T06:59:05.530245Z", + "iopub.status.idle": "2023-08-22T06:59:05.533462Z", + "shell.execute_reply": "2023-08-22T06:59:05.533113Z" } }, "outputs": [ @@ -200,10 +200,10 @@ "id": "9abccc1f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.699502Z", - "iopub.status.busy": "2023-08-21T03:36:04.699420Z", - "iopub.status.idle": "2023-08-21T03:36:04.701419Z", - "shell.execute_reply": "2023-08-21T03:36:04.701183Z" + "iopub.execute_input": "2023-08-22T06:59:05.535049Z", + "iopub.status.busy": "2023-08-22T06:59:05.534962Z", + "iopub.status.idle": "2023-08-22T06:59:05.537010Z", + "shell.execute_reply": "2023-08-22T06:59:05.536734Z" } }, "outputs": [ @@ -249,10 +249,10 @@ "id": "802ca33c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.702877Z", - "iopub.status.busy": "2023-08-21T03:36:04.702786Z", - "iopub.status.idle": "2023-08-21T03:36:04.704849Z", - "shell.execute_reply": "2023-08-21T03:36:04.704596Z" + "iopub.execute_input": "2023-08-22T06:59:05.538667Z", + "iopub.status.busy": "2023-08-22T06:59:05.538580Z", + "iopub.status.idle": "2023-08-22T06:59:05.541098Z", + "shell.execute_reply": "2023-08-22T06:59:05.540721Z" } }, "outputs": [ @@ -290,10 +290,10 @@ "id": "a8c72744", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.706312Z", - "iopub.status.busy": "2023-08-21T03:36:04.706207Z", - "iopub.status.idle": "2023-08-21T03:36:04.708359Z", - "shell.execute_reply": "2023-08-21T03:36:04.708116Z" + "iopub.execute_input": "2023-08-22T06:59:05.542902Z", + "iopub.status.busy": "2023-08-22T06:59:05.542804Z", + "iopub.status.idle": "2023-08-22T06:59:05.545269Z", + "shell.execute_reply": "2023-08-22T06:59:05.544991Z" } }, "outputs": [ @@ -364,10 +364,10 @@ "id": "f1c7d1db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.709873Z", - "iopub.status.busy": "2023-08-21T03:36:04.709781Z", - "iopub.status.idle": "2023-08-21T03:36:04.767425Z", - "shell.execute_reply": "2023-08-21T03:36:04.766663Z" + "iopub.execute_input": "2023-08-22T06:59:05.546995Z", + "iopub.status.busy": "2023-08-22T06:59:05.546897Z", + "iopub.status.idle": "2023-08-22T06:59:07.928068Z", + "shell.execute_reply": "2023-08-22T06:59:07.927627Z" }, "lines_to_next_cell": 0 }, @@ -400,10 +400,10 @@ "id": "e2ea2bfd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.772015Z", - "iopub.status.busy": "2023-08-21T03:36:04.771631Z", - "iopub.status.idle": "2023-08-21T03:36:04.777911Z", - "shell.execute_reply": "2023-08-21T03:36:04.777302Z" + "iopub.execute_input": "2023-08-22T06:59:07.930503Z", + "iopub.status.busy": "2023-08-22T06:59:07.930338Z", + "iopub.status.idle": "2023-08-22T06:59:07.932349Z", + "shell.execute_reply": "2023-08-22T06:59:07.932076Z" }, "lines_to_next_cell": 0 }, @@ -439,10 +439,10 @@ "id": "59fbf9fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.781791Z", - "iopub.status.busy": "2023-08-21T03:36:04.781430Z", - "iopub.status.idle": "2023-08-21T03:36:04.788256Z", - "shell.execute_reply": "2023-08-21T03:36:04.787586Z" + "iopub.execute_input": "2023-08-22T06:59:07.934561Z", + "iopub.status.busy": "2023-08-22T06:59:07.934430Z", + "iopub.status.idle": "2023-08-22T06:59:07.936902Z", + "shell.execute_reply": "2023-08-22T06:59:07.936605Z" }, "lines_to_next_cell": 0 }, @@ -486,10 +486,10 @@ "id": "2279437e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.792995Z", - "iopub.status.busy": "2023-08-21T03:36:04.792549Z", - "iopub.status.idle": "2023-08-21T03:36:04.800387Z", - "shell.execute_reply": "2023-08-21T03:36:04.799738Z" + "iopub.execute_input": "2023-08-22T06:59:07.939184Z", + "iopub.status.busy": "2023-08-22T06:59:07.938968Z", + "iopub.status.idle": "2023-08-22T06:59:07.941378Z", + "shell.execute_reply": "2023-08-22T06:59:07.941135Z" }, "lines_to_next_cell": 0 }, @@ -537,10 +537,10 @@ "id": "75bf1b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.804503Z", - "iopub.status.busy": "2023-08-21T03:36:04.804231Z", - "iopub.status.idle": "2023-08-21T03:36:04.810136Z", - "shell.execute_reply": "2023-08-21T03:36:04.809353Z" + "iopub.execute_input": "2023-08-22T06:59:07.943172Z", + "iopub.status.busy": "2023-08-22T06:59:07.942965Z", + "iopub.status.idle": "2023-08-22T06:59:07.945452Z", + "shell.execute_reply": "2023-08-22T06:59:07.945026Z" } }, "outputs": [ @@ -575,10 +575,10 @@ "id": "58292240", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.813981Z", - "iopub.status.busy": "2023-08-21T03:36:04.813417Z", - "iopub.status.idle": "2023-08-21T03:36:04.819511Z", - "shell.execute_reply": "2023-08-21T03:36:04.818936Z" + "iopub.execute_input": "2023-08-22T06:59:07.947238Z", + "iopub.status.busy": "2023-08-22T06:59:07.947112Z", + "iopub.status.idle": "2023-08-22T06:59:07.949367Z", + "shell.execute_reply": "2023-08-22T06:59:07.949033Z" }, "lines_to_next_cell": 0 }, @@ -615,10 +615,10 @@ "id": "fc5fff57", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.823519Z", - "iopub.status.busy": "2023-08-21T03:36:04.823222Z", - "iopub.status.idle": "2023-08-21T03:36:04.829861Z", - "shell.execute_reply": "2023-08-21T03:36:04.829223Z" + "iopub.execute_input": "2023-08-22T06:59:07.951095Z", + "iopub.status.busy": "2023-08-22T06:59:07.950962Z", + "iopub.status.idle": "2023-08-22T06:59:07.953323Z", + "shell.execute_reply": "2023-08-22T06:59:07.953058Z" }, "lines_to_next_cell": 2 }, @@ -654,10 +654,10 @@ "id": "762562a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.833747Z", - "iopub.status.busy": "2023-08-21T03:36:04.833468Z", - "iopub.status.idle": "2023-08-21T03:36:04.838421Z", - "shell.execute_reply": "2023-08-21T03:36:04.837747Z" + "iopub.execute_input": "2023-08-22T06:59:07.955159Z", + "iopub.status.busy": "2023-08-22T06:59:07.955029Z", + "iopub.status.idle": "2023-08-22T06:59:07.957291Z", + "shell.execute_reply": "2023-08-22T06:59:07.956944Z" }, "lines_to_next_cell": 0 }, @@ -680,10 +680,10 @@ "id": "66d2b82a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.842127Z", - "iopub.status.busy": "2023-08-21T03:36:04.841891Z", - "iopub.status.idle": "2023-08-21T03:36:04.848885Z", - "shell.execute_reply": "2023-08-21T03:36:04.848125Z" + "iopub.execute_input": "2023-08-22T06:59:07.959022Z", + "iopub.status.busy": "2023-08-22T06:59:07.958921Z", + "iopub.status.idle": "2023-08-22T06:59:07.961144Z", + "shell.execute_reply": "2023-08-22T06:59:07.960798Z" }, "lines_to_next_cell": 2 }, @@ -718,10 +718,10 @@ "id": "89881402", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.853039Z", - "iopub.status.busy": "2023-08-21T03:36:04.852643Z", - "iopub.status.idle": "2023-08-21T03:36:04.859072Z", - "shell.execute_reply": "2023-08-21T03:36:04.858149Z" + "iopub.execute_input": "2023-08-22T06:59:07.963075Z", + "iopub.status.busy": "2023-08-22T06:59:07.962934Z", + "iopub.status.idle": "2023-08-22T06:59:07.965265Z", + "shell.execute_reply": "2023-08-22T06:59:07.964978Z" }, "lines_to_next_cell": 2 }, @@ -761,10 +761,10 @@ "id": "0572d3f6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.863011Z", - "iopub.status.busy": "2023-08-21T03:36:04.862610Z", - "iopub.status.idle": "2023-08-21T03:36:04.869722Z", - "shell.execute_reply": "2023-08-21T03:36:04.869078Z" + "iopub.execute_input": "2023-08-22T06:59:07.967468Z", + "iopub.status.busy": "2023-08-22T06:59:07.967139Z", + "iopub.status.idle": "2023-08-22T06:59:07.969644Z", + "shell.execute_reply": "2023-08-22T06:59:07.969386Z" }, "lines_to_next_cell": 0 }, @@ -799,10 +799,10 @@ "id": "33b10a6f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.874228Z", - "iopub.status.busy": "2023-08-21T03:36:04.873632Z", - "iopub.status.idle": "2023-08-21T03:36:04.879222Z", - "shell.execute_reply": "2023-08-21T03:36:04.878606Z" + "iopub.execute_input": "2023-08-22T06:59:07.971652Z", + "iopub.status.busy": "2023-08-22T06:59:07.971489Z", + "iopub.status.idle": "2023-08-22T06:59:07.974229Z", + "shell.execute_reply": "2023-08-22T06:59:07.973900Z" }, "lines_to_next_cell": 0 }, @@ -845,10 +845,10 @@ "id": "a32716db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.882833Z", - "iopub.status.busy": "2023-08-21T03:36:04.882354Z", - "iopub.status.idle": "2023-08-21T03:36:04.887384Z", - "shell.execute_reply": "2023-08-21T03:36:04.886127Z" + "iopub.execute_input": "2023-08-22T06:59:07.976214Z", + "iopub.status.busy": "2023-08-22T06:59:07.976066Z", + "iopub.status.idle": "2023-08-22T06:59:07.978551Z", + "shell.execute_reply": "2023-08-22T06:59:07.978148Z" } }, "outputs": [ @@ -896,10 +896,10 @@ "id": "3db6e1cf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.890861Z", - "iopub.status.busy": "2023-08-21T03:36:04.890532Z", - "iopub.status.idle": "2023-08-21T03:36:04.894815Z", - "shell.execute_reply": "2023-08-21T03:36:04.894149Z" + "iopub.execute_input": "2023-08-22T06:59:07.980462Z", + "iopub.status.busy": "2023-08-22T06:59:07.980329Z", + "iopub.status.idle": "2023-08-22T06:59:07.982878Z", + "shell.execute_reply": "2023-08-22T06:59:07.982438Z" }, "lines_to_next_cell": 0 }, @@ -934,10 +934,10 @@ "id": "e15c753f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.898049Z", - "iopub.status.busy": "2023-08-21T03:36:04.897796Z", - "iopub.status.idle": "2023-08-21T03:36:04.902137Z", - "shell.execute_reply": "2023-08-21T03:36:04.901538Z" + "iopub.execute_input": "2023-08-22T06:59:07.984961Z", + "iopub.status.busy": "2023-08-22T06:59:07.984816Z", + "iopub.status.idle": "2023-08-22T06:59:07.987101Z", + "shell.execute_reply": "2023-08-22T06:59:07.986805Z" }, "lines_to_next_cell": 0 }, @@ -975,10 +975,10 @@ "id": "91c6e7d8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.905358Z", - "iopub.status.busy": "2023-08-21T03:36:04.905148Z", - "iopub.status.idle": "2023-08-21T03:36:04.910143Z", - "shell.execute_reply": "2023-08-21T03:36:04.909500Z" + "iopub.execute_input": "2023-08-22T06:59:07.989269Z", + "iopub.status.busy": "2023-08-22T06:59:07.988940Z", + "iopub.status.idle": "2023-08-22T06:59:07.991567Z", + "shell.execute_reply": "2023-08-22T06:59:07.991233Z" } }, "outputs": [ @@ -1033,10 +1033,10 @@ "id": "59d95dce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:04.913411Z", - "iopub.status.busy": "2023-08-21T03:36:04.912985Z", - "iopub.status.idle": "2023-08-21T03:36:05.037046Z", - "shell.execute_reply": "2023-08-21T03:36:05.036755Z" + "iopub.execute_input": "2023-08-22T06:59:07.993423Z", + "iopub.status.busy": "2023-08-22T06:59:07.993299Z", + "iopub.status.idle": "2023-08-22T06:59:08.133462Z", + "shell.execute_reply": "2023-08-22T06:59:08.132910Z" }, "lines_to_next_cell": 2 }, @@ -1073,10 +1073,10 @@ "id": "a6fde9af", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.038645Z", - "iopub.status.busy": "2023-08-21T03:36:05.038536Z", - "iopub.status.idle": "2023-08-21T03:36:05.040823Z", - "shell.execute_reply": "2023-08-21T03:36:05.040589Z" + "iopub.execute_input": "2023-08-22T06:59:08.135655Z", + "iopub.status.busy": "2023-08-22T06:59:08.135507Z", + "iopub.status.idle": "2023-08-22T06:59:08.138481Z", + "shell.execute_reply": "2023-08-22T06:59:08.138180Z" } }, "outputs": [ @@ -1117,10 +1117,10 @@ "id": "fadb6b45", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.042203Z", - "iopub.status.busy": "2023-08-21T03:36:05.042112Z", - "iopub.status.idle": "2023-08-21T03:36:05.044185Z", - "shell.execute_reply": "2023-08-21T03:36:05.043940Z" + "iopub.execute_input": "2023-08-22T06:59:08.140173Z", + "iopub.status.busy": "2023-08-22T06:59:08.140051Z", + "iopub.status.idle": "2023-08-22T06:59:08.142777Z", + "shell.execute_reply": "2023-08-22T06:59:08.142404Z" } }, "outputs": [ @@ -1154,10 +1154,10 @@ "id": "fda3134b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.045709Z", - "iopub.status.busy": "2023-08-21T03:36:05.045601Z", - "iopub.status.idle": "2023-08-21T03:36:05.047665Z", - "shell.execute_reply": "2023-08-21T03:36:05.047412Z" + "iopub.execute_input": "2023-08-22T06:59:08.144782Z", + "iopub.status.busy": "2023-08-22T06:59:08.144640Z", + "iopub.status.idle": "2023-08-22T06:59:08.147297Z", + "shell.execute_reply": "2023-08-22T06:59:08.146996Z" } }, "outputs": [ @@ -1190,10 +1190,10 @@ "id": "52eb335b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.049290Z", - "iopub.status.busy": "2023-08-21T03:36:05.049191Z", - "iopub.status.idle": "2023-08-21T03:36:05.051249Z", - "shell.execute_reply": "2023-08-21T03:36:05.051004Z" + "iopub.execute_input": "2023-08-22T06:59:08.148995Z", + "iopub.status.busy": "2023-08-22T06:59:08.148870Z", + "iopub.status.idle": "2023-08-22T06:59:08.151571Z", + "shell.execute_reply": "2023-08-22T06:59:08.151251Z" }, "lines_to_next_cell": 2 }, @@ -1237,26 +1237,26 @@ "id": "ac5e9d29", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.052622Z", - "iopub.status.busy": "2023-08-21T03:36:05.052529Z", - "iopub.status.idle": "2023-08-21T03:36:05.054818Z", - "shell.execute_reply": "2023-08-21T03:36:05.054569Z" + "iopub.execute_input": "2023-08-22T06:59:08.154113Z", + "iopub.status.busy": "2023-08-22T06:59:08.153958Z", + "iopub.status.idle": "2023-08-22T06:59:08.157534Z", + "shell.execute_reply": "2023-08-22T06:59:08.156973Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([-0.97992307, 0.29561095, 0.60481929, -0.20482365, -1.01517527,\n", - " 2.76594674, -0.65748447, 1.27396181, -1.01573869, 1.37373688,\n", - " 0.93524901, -2.41971622, -0.58080017, 0.13777341, 1.35936356,\n", - " 0.61747629, 0.82550921, 0.7943598 , 1.0905082 , 1.80820045,\n", - " -1.31320321, 2.0651966 , -0.78632522, -2.01068042, -1.36562571,\n", - " 1.43466837, -0.16848093, -1.57211786, 0.49888498, -1.86050966,\n", - " 1.08743609, 0.53059599, 0.02172848, -0.41808062, 1.88343414,\n", - " 0.09112977, 1.23489568, 0.53207714, -1.62670383, 1.29859234,\n", - " 0.30311344, 1.01143392, -1.64596169, 1.58876421, -1.85189683,\n", - " -0.53929878, -2.19895144, -0.36691225, 1.03621761, 0.25278481])" + "array([-0.83511556, 0.43461482, -1.3810022 , -0.64162363, -0.86270682,\n", + " 0.6660104 , 0.17543353, 0.68220139, -0.20392851, -1.47534629,\n", + " 0.18438201, 1.50157883, 0.47473968, -1.33062844, 1.57614184,\n", + " -0.25596784, 0.66848396, -1.5410464 , 0.25298297, -0.79118181,\n", + " -0.49399731, -1.45139182, 0.71261617, 1.19862796, 0.52772362,\n", + " 0.57343239, -0.01577204, 2.56032683, -0.18936979, -0.09651695,\n", + " -1.74331796, 0.11390389, 0.27595492, 1.2606086 , 0.49282705,\n", + " 0.60603827, 0.24699795, 0.28636264, 0.54683924, 0.45133321,\n", + " 0.92563958, 1.20847512, 0.40993092, 0.01951345, 0.27271415,\n", + " 0.94231124, 0.47471813, 2.12851232, 0.128139 , -0.56681371])" ] }, "execution_count": 28, @@ -1283,10 +1283,10 @@ "id": "55fa905e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.056219Z", - "iopub.status.busy": "2023-08-21T03:36:05.056124Z", - "iopub.status.idle": "2023-08-21T03:36:05.057790Z", - "shell.execute_reply": "2023-08-21T03:36:05.057543Z" + "iopub.execute_input": "2023-08-22T06:59:08.159589Z", + "iopub.status.busy": "2023-08-22T06:59:08.159437Z", + "iopub.status.idle": "2023-08-22T06:59:08.161722Z", + "shell.execute_reply": "2023-08-22T06:59:08.161369Z" }, "lines_to_next_cell": 0 }, @@ -1310,18 +1310,18 @@ "id": "fde0dc19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.059163Z", - "iopub.status.busy": "2023-08-21T03:36:05.059091Z", - "iopub.status.idle": "2023-08-21T03:36:05.061351Z", - "shell.execute_reply": "2023-08-21T03:36:05.061105Z" + "iopub.execute_input": "2023-08-22T06:59:08.164153Z", + "iopub.status.busy": "2023-08-22T06:59:08.163979Z", + "iopub.status.idle": "2023-08-22T06:59:08.168094Z", + "shell.execute_reply": "2023-08-22T06:59:08.167676Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([[1. , 0.66045794],\n", - " [0.66045794, 1. ]])" + "array([[1. , 0.65985439],\n", + " [0.65985439, 1. ]])" ] }, "execution_count": 30, @@ -1350,10 +1350,10 @@ "id": "5099cf54", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.062721Z", - "iopub.status.busy": "2023-08-21T03:36:05.062630Z", - "iopub.status.idle": "2023-08-21T03:36:05.064539Z", - "shell.execute_reply": "2023-08-21T03:36:05.064300Z" + "iopub.execute_input": "2023-08-22T06:59:08.169980Z", + "iopub.status.busy": "2023-08-22T06:59:08.169865Z", + "iopub.status.idle": "2023-08-22T06:59:08.173468Z", + "shell.execute_reply": "2023-08-22T06:59:08.172857Z" }, "lines_to_next_cell": 0 }, @@ -1362,8 +1362,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "[-9.63514647 -0.12742473]\n", - "[0.85490033 0.05488893]\n" + "[ 6.33922704 -0.66068102]\n", + "[-6.96104352 18.61644142]\n" ] } ], @@ -1401,10 +1401,10 @@ "id": "9d8074e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.065999Z", - "iopub.status.busy": "2023-08-21T03:36:05.065912Z", - "iopub.status.idle": "2023-08-21T03:36:05.068039Z", - "shell.execute_reply": "2023-08-21T03:36:05.067820Z" + "iopub.execute_input": "2023-08-22T06:59:08.175381Z", + "iopub.status.busy": "2023-08-22T06:59:08.175239Z", + "iopub.status.idle": "2023-08-22T06:59:08.177926Z", + "shell.execute_reply": "2023-08-22T06:59:08.177603Z" } }, "outputs": [ @@ -1447,10 +1447,10 @@ "id": "e98472df", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.069438Z", - "iopub.status.busy": "2023-08-21T03:36:05.069347Z", - "iopub.status.idle": "2023-08-21T03:36:05.071564Z", - "shell.execute_reply": "2023-08-21T03:36:05.071324Z" + "iopub.execute_input": "2023-08-22T06:59:08.179784Z", + "iopub.status.busy": "2023-08-22T06:59:08.179647Z", + "iopub.status.idle": "2023-08-22T06:59:08.182540Z", + "shell.execute_reply": "2023-08-22T06:59:08.182002Z" }, "lines_to_next_cell": 0 }, @@ -1486,10 +1486,10 @@ "id": "8c2784fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.072967Z", - "iopub.status.busy": "2023-08-21T03:36:05.072873Z", - "iopub.status.idle": "2023-08-21T03:36:05.075053Z", - "shell.execute_reply": "2023-08-21T03:36:05.074833Z" + "iopub.execute_input": "2023-08-22T06:59:08.184240Z", + "iopub.status.busy": "2023-08-22T06:59:08.184117Z", + "iopub.status.idle": "2023-08-22T06:59:08.186691Z", + "shell.execute_reply": "2023-08-22T06:59:08.186367Z" }, "lines_to_next_cell": 2 }, @@ -1524,10 +1524,10 @@ "id": "7e7205f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.076473Z", - "iopub.status.busy": "2023-08-21T03:36:05.076373Z", - "iopub.status.idle": "2023-08-21T03:36:05.078474Z", - "shell.execute_reply": "2023-08-21T03:36:05.078224Z" + "iopub.execute_input": "2023-08-22T06:59:08.188421Z", + "iopub.status.busy": "2023-08-22T06:59:08.188291Z", + "iopub.status.idle": "2023-08-22T06:59:08.191242Z", + "shell.execute_reply": "2023-08-22T06:59:08.190935Z" } }, "outputs": [ @@ -1561,10 +1561,10 @@ "id": "fce06849", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.079856Z", - "iopub.status.busy": "2023-08-21T03:36:05.079755Z", - "iopub.status.idle": "2023-08-21T03:36:05.081961Z", - "shell.execute_reply": "2023-08-21T03:36:05.081709Z" + "iopub.execute_input": "2023-08-22T06:59:08.192889Z", + "iopub.status.busy": "2023-08-22T06:59:08.192762Z", + "iopub.status.idle": "2023-08-22T06:59:08.195517Z", + "shell.execute_reply": "2023-08-22T06:59:08.195194Z" } }, "outputs": [ @@ -1607,10 +1607,10 @@ "id": "1403ff7a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.083361Z", - "iopub.status.busy": "2023-08-21T03:36:05.083273Z", - "iopub.status.idle": "2023-08-21T03:36:05.085366Z", - "shell.execute_reply": "2023-08-21T03:36:05.085112Z" + "iopub.execute_input": "2023-08-22T06:59:08.197212Z", + "iopub.status.busy": "2023-08-22T06:59:08.197063Z", + "iopub.status.idle": "2023-08-22T06:59:08.199463Z", + "shell.execute_reply": "2023-08-22T06:59:08.199082Z" } }, "outputs": [ @@ -1643,10 +1643,10 @@ "id": "7e9255ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.086730Z", - "iopub.status.busy": "2023-08-21T03:36:05.086636Z", - "iopub.status.idle": "2023-08-21T03:36:05.088698Z", - "shell.execute_reply": "2023-08-21T03:36:05.088470Z" + "iopub.execute_input": "2023-08-22T06:59:08.201135Z", + "iopub.status.busy": "2023-08-22T06:59:08.201013Z", + "iopub.status.idle": "2023-08-22T06:59:08.203278Z", + "shell.execute_reply": "2023-08-22T06:59:08.202984Z" }, "lines_to_next_cell": 0 }, @@ -1713,10 +1713,10 @@ "id": "8236e5f7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.090105Z", - "iopub.status.busy": "2023-08-21T03:36:05.090015Z", - "iopub.status.idle": "2023-08-21T03:36:05.390499Z", - "shell.execute_reply": "2023-08-21T03:36:05.390143Z" + "iopub.execute_input": "2023-08-22T06:59:08.205399Z", + "iopub.status.busy": "2023-08-22T06:59:08.205262Z", + "iopub.status.idle": "2023-08-22T06:59:09.267032Z", + "shell.execute_reply": "2023-08-22T06:59:09.266627Z" } }, "outputs": [ @@ -1755,10 +1755,10 @@ "id": "ddc9ed4f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.392242Z", - "iopub.status.busy": "2023-08-21T03:36:05.392127Z", - "iopub.status.idle": "2023-08-21T03:36:05.464507Z", - "shell.execute_reply": "2023-08-21T03:36:05.464208Z" + "iopub.execute_input": "2023-08-22T06:59:09.269192Z", + "iopub.status.busy": "2023-08-22T06:59:09.269015Z", + "iopub.status.idle": "2023-08-22T06:59:09.336385Z", + "shell.execute_reply": "2023-08-22T06:59:09.335994Z" } }, "outputs": [ @@ -1793,10 +1793,10 @@ "id": "c64ed600", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.466274Z", - "iopub.status.busy": "2023-08-21T03:36:05.466157Z", - "iopub.status.idle": "2023-08-21T03:36:05.540801Z", - "shell.execute_reply": "2023-08-21T03:36:05.540543Z" + "iopub.execute_input": "2023-08-22T06:59:09.338601Z", + "iopub.status.busy": "2023-08-22T06:59:09.338466Z", + "iopub.status.idle": "2023-08-22T06:59:09.408187Z", + "shell.execute_reply": "2023-08-22T06:59:09.407850Z" }, "lines_to_next_cell": 0 }, @@ -1841,10 +1841,10 @@ "id": "bc6245e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.542497Z", - "iopub.status.busy": "2023-08-21T03:36:05.542378Z", - "iopub.status.idle": "2023-08-21T03:36:05.621061Z", - "shell.execute_reply": "2023-08-21T03:36:05.620765Z" + "iopub.execute_input": "2023-08-22T06:59:09.410036Z", + "iopub.status.busy": "2023-08-22T06:59:09.409914Z", + "iopub.status.idle": "2023-08-22T06:59:09.481803Z", + "shell.execute_reply": "2023-08-22T06:59:09.481516Z" } }, "outputs": [ @@ -1881,10 +1881,10 @@ "id": "2454807b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.622738Z", - "iopub.status.busy": "2023-08-21T03:36:05.622624Z", - "iopub.status.idle": "2023-08-21T03:36:05.700853Z", - "shell.execute_reply": "2023-08-21T03:36:05.700564Z" + "iopub.execute_input": "2023-08-22T06:59:09.483769Z", + "iopub.status.busy": "2023-08-22T06:59:09.483410Z", + "iopub.status.idle": "2023-08-22T06:59:09.583871Z", + "shell.execute_reply": "2023-08-22T06:59:09.583567Z" }, "lines_to_next_cell": 0 }, @@ -1892,7 +1892,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 43, @@ -1944,10 +1944,10 @@ "id": "1e18a793", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.702667Z", - "iopub.status.busy": "2023-08-21T03:36:05.702545Z", - "iopub.status.idle": "2023-08-21T03:36:05.797850Z", - "shell.execute_reply": "2023-08-21T03:36:05.797545Z" + "iopub.execute_input": "2023-08-22T06:59:09.585676Z", + "iopub.status.busy": "2023-08-22T06:59:09.585555Z", + "iopub.status.idle": "2023-08-22T06:59:09.674249Z", + "shell.execute_reply": "2023-08-22T06:59:09.673902Z" } }, "outputs": [ @@ -1985,10 +1985,10 @@ "id": "aec3f009", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.799658Z", - "iopub.status.busy": "2023-08-21T03:36:05.799529Z", - "iopub.status.idle": "2023-08-21T03:36:05.861021Z", - "shell.execute_reply": "2023-08-21T03:36:05.860749Z" + "iopub.execute_input": "2023-08-22T06:59:09.676005Z", + "iopub.status.busy": "2023-08-22T06:59:09.675879Z", + "iopub.status.idle": "2023-08-22T06:59:09.733152Z", + "shell.execute_reply": "2023-08-22T06:59:09.732799Z" }, "lines_to_next_cell": 0 }, @@ -2039,10 +2039,10 @@ "id": "2cbc7fd4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:05.862740Z", - "iopub.status.busy": "2023-08-21T03:36:05.862621Z", - "iopub.status.idle": "2023-08-21T03:36:06.143924Z", - "shell.execute_reply": "2023-08-21T03:36:06.143646Z" + "iopub.execute_input": "2023-08-22T06:59:09.734976Z", + "iopub.status.busy": "2023-08-22T06:59:09.734855Z", + "iopub.status.idle": "2023-08-22T06:59:09.987982Z", + "shell.execute_reply": "2023-08-22T06:59:09.987518Z" }, "lines_to_next_cell": 0 }, @@ -2079,10 +2079,10 @@ "id": "702f80d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:06.145683Z", - "iopub.status.busy": "2023-08-21T03:36:06.145574Z", - "iopub.status.idle": "2023-08-21T03:36:06.326301Z", - "shell.execute_reply": "2023-08-21T03:36:06.326007Z" + "iopub.execute_input": "2023-08-22T06:59:09.989943Z", + "iopub.status.busy": "2023-08-22T06:59:09.989799Z", + "iopub.status.idle": "2023-08-22T06:59:10.164367Z", + "shell.execute_reply": "2023-08-22T06:59:10.164050Z" }, "lines_to_next_cell": 0 }, @@ -2132,10 +2132,10 @@ "id": "5493d229", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:06.327958Z", - "iopub.status.busy": "2023-08-21T03:36:06.327847Z", - "iopub.status.idle": "2023-08-21T03:36:07.432805Z", - "shell.execute_reply": "2023-08-21T03:36:07.432429Z" + "iopub.execute_input": "2023-08-22T06:59:10.166485Z", + "iopub.status.busy": "2023-08-22T06:59:10.166339Z", + "iopub.status.idle": "2023-08-22T06:59:11.473366Z", + "shell.execute_reply": "2023-08-22T06:59:11.473053Z" }, "lines_to_next_cell": 2 }, @@ -2159,10 +2159,10 @@ "id": "bd07af12", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:07.434785Z", - "iopub.status.busy": "2023-08-21T03:36:07.434614Z", - "iopub.status.idle": "2023-08-21T03:36:07.663475Z", - "shell.execute_reply": "2023-08-21T03:36:07.663165Z" + "iopub.execute_input": "2023-08-22T06:59:11.475355Z", + "iopub.status.busy": "2023-08-22T06:59:11.475181Z", + "iopub.status.idle": "2023-08-22T06:59:11.696662Z", + "shell.execute_reply": "2023-08-22T06:59:11.696345Z" } }, "outputs": [ @@ -2209,10 +2209,10 @@ "id": "01019508", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:07.665255Z", - "iopub.status.busy": "2023-08-21T03:36:07.665128Z", - "iopub.status.idle": "2023-08-21T03:36:07.766569Z", - "shell.execute_reply": "2023-08-21T03:36:07.766244Z" + "iopub.execute_input": "2023-08-22T06:59:11.698588Z", + "iopub.status.busy": "2023-08-22T06:59:11.698446Z", + "iopub.status.idle": "2023-08-22T06:59:11.986555Z", + "shell.execute_reply": "2023-08-22T06:59:11.986111Z" }, "lines_to_next_cell": 0 }, @@ -2250,10 +2250,10 @@ "id": "7d08992f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:07.768244Z", - "iopub.status.busy": "2023-08-21T03:36:07.768130Z", - "iopub.status.idle": "2023-08-21T03:36:07.893027Z", - "shell.execute_reply": "2023-08-21T03:36:07.892660Z" + "iopub.execute_input": "2023-08-22T06:59:11.988767Z", + "iopub.status.busy": "2023-08-22T06:59:11.988614Z", + "iopub.status.idle": "2023-08-22T06:59:12.104022Z", + "shell.execute_reply": "2023-08-22T06:59:12.103708Z" }, "lines_to_next_cell": 0 }, @@ -2296,10 +2296,10 @@ "id": "1f89d704", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:07.894802Z", - "iopub.status.busy": "2023-08-21T03:36:07.894695Z", - "iopub.status.idle": "2023-08-21T03:36:07.995202Z", - "shell.execute_reply": "2023-08-21T03:36:07.994863Z" + "iopub.execute_input": "2023-08-22T06:59:12.105969Z", + "iopub.status.busy": "2023-08-22T06:59:12.105871Z", + "iopub.status.idle": "2023-08-22T06:59:12.198374Z", + "shell.execute_reply": "2023-08-22T06:59:12.197945Z" }, "lines_to_next_cell": 2 }, @@ -2344,10 +2344,10 @@ "id": "cd971131", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:07.996961Z", - "iopub.status.busy": "2023-08-21T03:36:07.996836Z", - "iopub.status.idle": "2023-08-21T03:36:07.999447Z", - "shell.execute_reply": "2023-08-21T03:36:07.999154Z" + "iopub.execute_input": "2023-08-22T06:59:12.200827Z", + "iopub.status.busy": "2023-08-22T06:59:12.200655Z", + "iopub.status.idle": "2023-08-22T06:59:12.203494Z", + "shell.execute_reply": "2023-08-22T06:59:12.203195Z" }, "lines_to_next_cell": 2 }, @@ -2384,10 +2384,10 @@ "id": "aa630d16", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.001028Z", - "iopub.status.busy": "2023-08-21T03:36:08.000925Z", - "iopub.status.idle": "2023-08-21T03:36:08.003185Z", - "shell.execute_reply": "2023-08-21T03:36:08.002908Z" + "iopub.execute_input": "2023-08-22T06:59:12.205484Z", + "iopub.status.busy": "2023-08-22T06:59:12.205351Z", + "iopub.status.idle": "2023-08-22T06:59:12.207885Z", + "shell.execute_reply": "2023-08-22T06:59:12.207564Z" } }, "outputs": [ @@ -2425,10 +2425,10 @@ "id": "89955ee2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.004703Z", - "iopub.status.busy": "2023-08-21T03:36:08.004594Z", - "iopub.status.idle": "2023-08-21T03:36:08.006692Z", - "shell.execute_reply": "2023-08-21T03:36:08.006429Z" + "iopub.execute_input": "2023-08-22T06:59:12.209574Z", + "iopub.status.busy": "2023-08-22T06:59:12.209454Z", + "iopub.status.idle": "2023-08-22T06:59:12.212189Z", + "shell.execute_reply": "2023-08-22T06:59:12.211670Z" }, "lines_to_next_cell": 0 }, @@ -2463,10 +2463,10 @@ "id": "517f592d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.008158Z", - "iopub.status.busy": "2023-08-21T03:36:08.008062Z", - "iopub.status.idle": "2023-08-21T03:36:08.010083Z", - "shell.execute_reply": "2023-08-21T03:36:08.009819Z" + "iopub.execute_input": "2023-08-22T06:59:12.214090Z", + "iopub.status.busy": "2023-08-22T06:59:12.213954Z", + "iopub.status.idle": "2023-08-22T06:59:12.216634Z", + "shell.execute_reply": "2023-08-22T06:59:12.216229Z" } }, "outputs": [ @@ -2530,10 +2530,10 @@ "id": "35927abd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.011518Z", - "iopub.status.busy": "2023-08-21T03:36:08.011425Z", - "iopub.status.idle": "2023-08-21T03:36:08.013558Z", - "shell.execute_reply": "2023-08-21T03:36:08.013317Z" + "iopub.execute_input": "2023-08-22T06:59:12.218701Z", + "iopub.status.busy": "2023-08-22T06:59:12.218551Z", + "iopub.status.idle": "2023-08-22T06:59:12.221779Z", + "shell.execute_reply": "2023-08-22T06:59:12.221078Z" } }, "outputs": [ @@ -2571,10 +2571,10 @@ "id": "78ee7f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.014962Z", - "iopub.status.busy": "2023-08-21T03:36:08.014871Z", - "iopub.status.idle": "2023-08-21T03:36:08.016938Z", - "shell.execute_reply": "2023-08-21T03:36:08.016689Z" + "iopub.execute_input": "2023-08-22T06:59:12.223849Z", + "iopub.status.busy": "2023-08-22T06:59:12.223730Z", + "iopub.status.idle": "2023-08-22T06:59:12.226375Z", + "shell.execute_reply": "2023-08-22T06:59:12.226073Z" } }, "outputs": [ @@ -2612,10 +2612,10 @@ "id": "16212696", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.018506Z", - "iopub.status.busy": "2023-08-21T03:36:08.018407Z", - "iopub.status.idle": "2023-08-21T03:36:08.020572Z", - "shell.execute_reply": "2023-08-21T03:36:08.020301Z" + "iopub.execute_input": "2023-08-22T06:59:12.228118Z", + "iopub.status.busy": "2023-08-22T06:59:12.227993Z", + "iopub.status.idle": "2023-08-22T06:59:12.230254Z", + "shell.execute_reply": "2023-08-22T06:59:12.229993Z" } }, "outputs": [ @@ -2651,10 +2651,10 @@ "id": "d5f473d2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.022048Z", - "iopub.status.busy": "2023-08-21T03:36:08.021947Z", - "iopub.status.idle": "2023-08-21T03:36:08.024301Z", - "shell.execute_reply": "2023-08-21T03:36:08.024006Z" + "iopub.execute_input": "2023-08-22T06:59:12.231967Z", + "iopub.status.busy": "2023-08-22T06:59:12.231858Z", + "iopub.status.idle": "2023-08-22T06:59:12.234317Z", + "shell.execute_reply": "2023-08-22T06:59:12.234032Z" } }, "outputs": [ @@ -2692,10 +2692,10 @@ "id": "c89646d6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.025864Z", - "iopub.status.busy": "2023-08-21T03:36:08.025745Z", - "iopub.status.idle": "2023-08-21T03:36:08.027990Z", - "shell.execute_reply": "2023-08-21T03:36:08.027692Z" + "iopub.execute_input": "2023-08-22T06:59:12.236331Z", + "iopub.status.busy": "2023-08-22T06:59:12.236194Z", + "iopub.status.idle": "2023-08-22T06:59:12.238788Z", + "shell.execute_reply": "2023-08-22T06:59:12.238448Z" } }, "outputs": [ @@ -2728,10 +2728,10 @@ "id": "87f6b4f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.029541Z", - "iopub.status.busy": "2023-08-21T03:36:08.029439Z", - "iopub.status.idle": "2023-08-21T03:36:08.031650Z", - "shell.execute_reply": "2023-08-21T03:36:08.031378Z" + "iopub.execute_input": "2023-08-22T06:59:12.240562Z", + "iopub.status.busy": "2023-08-22T06:59:12.240434Z", + "iopub.status.idle": "2023-08-22T06:59:12.242956Z", + "shell.execute_reply": "2023-08-22T06:59:12.242696Z" } }, "outputs": [ @@ -2764,10 +2764,10 @@ "id": "5da5bda8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.033127Z", - "iopub.status.busy": "2023-08-21T03:36:08.033016Z", - "iopub.status.idle": "2023-08-21T03:36:08.056275Z", - "shell.execute_reply": "2023-08-21T03:36:08.056014Z" + "iopub.execute_input": "2023-08-22T06:59:12.244576Z", + "iopub.status.busy": "2023-08-22T06:59:12.244457Z", + "iopub.status.idle": "2023-08-22T06:59:12.267725Z", + "shell.execute_reply": "2023-08-22T06:59:12.267329Z" } }, "outputs": [ @@ -2803,10 +2803,10 @@ "id": "ac48a95b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.057926Z", - "iopub.status.busy": "2023-08-21T03:36:08.057815Z", - "iopub.status.idle": "2023-08-21T03:36:08.060231Z", - "shell.execute_reply": "2023-08-21T03:36:08.059980Z" + "iopub.execute_input": "2023-08-22T06:59:12.269754Z", + "iopub.status.busy": "2023-08-22T06:59:12.269614Z", + "iopub.status.idle": "2023-08-22T06:59:12.272265Z", + "shell.execute_reply": "2023-08-22T06:59:12.271962Z" }, "lines_to_next_cell": 0 }, @@ -2852,10 +2852,10 @@ "id": "ee195cc4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.061798Z", - "iopub.status.busy": "2023-08-21T03:36:08.061686Z", - "iopub.status.idle": "2023-08-21T03:36:08.063979Z", - "shell.execute_reply": "2023-08-21T03:36:08.063715Z" + "iopub.execute_input": "2023-08-22T06:59:12.273998Z", + "iopub.status.busy": "2023-08-22T06:59:12.273857Z", + "iopub.status.idle": "2023-08-22T06:59:12.276565Z", + "shell.execute_reply": "2023-08-22T06:59:12.276235Z" }, "lines_to_next_cell": 2 }, @@ -2895,10 +2895,10 @@ "id": "48917bb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.067067Z", - "iopub.status.busy": "2023-08-21T03:36:08.066955Z", - "iopub.status.idle": "2023-08-21T03:36:08.069279Z", - "shell.execute_reply": "2023-08-21T03:36:08.068966Z" + "iopub.execute_input": "2023-08-22T06:59:12.278649Z", + "iopub.status.busy": "2023-08-22T06:59:12.278494Z", + "iopub.status.idle": "2023-08-22T06:59:12.281280Z", + "shell.execute_reply": "2023-08-22T06:59:12.280843Z" }, "lines_to_next_cell": 0 }, @@ -2965,10 +2965,10 @@ "id": "5d4caf22", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.070903Z", - "iopub.status.busy": "2023-08-21T03:36:08.070799Z", - "iopub.status.idle": "2023-08-21T03:36:08.072959Z", - "shell.execute_reply": "2023-08-21T03:36:08.072701Z" + "iopub.execute_input": "2023-08-22T06:59:12.282968Z", + "iopub.status.busy": "2023-08-22T06:59:12.282854Z", + "iopub.status.idle": "2023-08-22T06:59:12.285234Z", + "shell.execute_reply": "2023-08-22T06:59:12.284961Z" }, "lines_to_next_cell": 0 }, @@ -3003,10 +3003,10 @@ "id": "348820e3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.074422Z", - "iopub.status.busy": "2023-08-21T03:36:08.074322Z", - "iopub.status.idle": "2023-08-21T03:36:08.076398Z", - "shell.execute_reply": "2023-08-21T03:36:08.076106Z" + "iopub.execute_input": "2023-08-22T06:59:12.287427Z", + "iopub.status.busy": "2023-08-22T06:59:12.287184Z", + "iopub.status.idle": "2023-08-22T06:59:12.289915Z", + "shell.execute_reply": "2023-08-22T06:59:12.289589Z" } }, "outputs": [ @@ -3042,10 +3042,10 @@ "id": "4aafe45b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.077952Z", - "iopub.status.busy": "2023-08-21T03:36:08.077853Z", - "iopub.status.idle": "2023-08-21T03:36:08.080163Z", - "shell.execute_reply": "2023-08-21T03:36:08.079901Z" + "iopub.execute_input": "2023-08-22T06:59:12.291767Z", + "iopub.status.busy": "2023-08-22T06:59:12.291634Z", + "iopub.status.idle": "2023-08-22T06:59:12.294302Z", + "shell.execute_reply": "2023-08-22T06:59:12.293967Z" } }, "outputs": [ @@ -3088,10 +3088,10 @@ "id": "1be6a588", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.081637Z", - "iopub.status.busy": "2023-08-21T03:36:08.081537Z", - "iopub.status.idle": "2023-08-21T03:36:08.083796Z", - "shell.execute_reply": "2023-08-21T03:36:08.083505Z" + "iopub.execute_input": "2023-08-22T06:59:12.296189Z", + "iopub.status.busy": "2023-08-22T06:59:12.296052Z", + "iopub.status.idle": "2023-08-22T06:59:12.298784Z", + "shell.execute_reply": "2023-08-22T06:59:12.298383Z" } }, "outputs": [ @@ -3127,10 +3127,10 @@ "id": "e83da57b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.085319Z", - "iopub.status.busy": "2023-08-21T03:36:08.085216Z", - "iopub.status.idle": "2023-08-21T03:36:08.087359Z", - "shell.execute_reply": "2023-08-21T03:36:08.087095Z" + "iopub.execute_input": "2023-08-22T06:59:12.300802Z", + "iopub.status.busy": "2023-08-22T06:59:12.300663Z", + "iopub.status.idle": "2023-08-22T06:59:12.303240Z", + "shell.execute_reply": "2023-08-22T06:59:12.302865Z" } }, "outputs": [ @@ -3174,10 +3174,10 @@ "id": "09675294", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.088904Z", - "iopub.status.busy": "2023-08-21T03:36:08.088804Z", - "iopub.status.idle": "2023-08-21T03:36:08.091266Z", - "shell.execute_reply": "2023-08-21T03:36:08.090985Z" + "iopub.execute_input": "2023-08-22T06:59:12.305143Z", + "iopub.status.busy": "2023-08-22T06:59:12.305025Z", + "iopub.status.idle": "2023-08-22T06:59:12.307529Z", + "shell.execute_reply": "2023-08-22T06:59:12.307219Z" } }, "outputs": [ @@ -3214,10 +3214,10 @@ "id": "a85614e4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.092757Z", - "iopub.status.busy": "2023-08-21T03:36:08.092664Z", - "iopub.status.idle": "2023-08-21T03:36:08.094873Z", - "shell.execute_reply": "2023-08-21T03:36:08.094581Z" + "iopub.execute_input": "2023-08-22T06:59:12.309554Z", + "iopub.status.busy": "2023-08-22T06:59:12.309418Z", + "iopub.status.idle": "2023-08-22T06:59:12.311737Z", + "shell.execute_reply": "2023-08-22T06:59:12.311441Z" }, "lines_to_next_cell": 0 }, @@ -3306,10 +3306,10 @@ "id": "ff81e644", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.096546Z", - "iopub.status.busy": "2023-08-21T03:36:08.096449Z", - "iopub.status.idle": "2023-08-21T03:36:08.317557Z", - "shell.execute_reply": "2023-08-21T03:36:08.317278Z" + "iopub.execute_input": "2023-08-22T06:59:12.313549Z", + "iopub.status.busy": "2023-08-22T06:59:12.313428Z", + "iopub.status.idle": "2023-08-22T06:59:14.571524Z", + "shell.execute_reply": "2023-08-22T06:59:14.571235Z" } }, "outputs": [ @@ -3538,10 +3538,10 @@ "id": "5b45aa7f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.319194Z", - "iopub.status.busy": "2023-08-21T03:36:08.319082Z", - "iopub.status.idle": "2023-08-21T03:36:08.322312Z", - "shell.execute_reply": "2023-08-21T03:36:08.322063Z" + "iopub.execute_input": "2023-08-22T06:59:14.573445Z", + "iopub.status.busy": "2023-08-22T06:59:14.573227Z", + "iopub.status.idle": "2023-08-22T06:59:14.576905Z", + "shell.execute_reply": "2023-08-22T06:59:14.576624Z" }, "lines_to_next_cell": 0 }, @@ -3575,10 +3575,10 @@ "id": "413f626a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.323776Z", - "iopub.status.busy": "2023-08-21T03:36:08.323686Z", - "iopub.status.idle": "2023-08-21T03:36:08.326230Z", - "shell.execute_reply": "2023-08-21T03:36:08.325989Z" + "iopub.execute_input": "2023-08-22T06:59:14.578771Z", + "iopub.status.busy": "2023-08-22T06:59:14.578606Z", + "iopub.status.idle": "2023-08-22T06:59:14.581727Z", + "shell.execute_reply": "2023-08-22T06:59:14.581462Z" }, "lines_to_next_cell": 0 }, @@ -3626,10 +3626,10 @@ "id": "57b86346", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.327630Z", - "iopub.status.busy": "2023-08-21T03:36:08.327527Z", - "iopub.status.idle": "2023-08-21T03:36:08.329871Z", - "shell.execute_reply": "2023-08-21T03:36:08.329620Z" + "iopub.execute_input": "2023-08-22T06:59:14.583287Z", + "iopub.status.busy": "2023-08-22T06:59:14.583182Z", + "iopub.status.idle": "2023-08-22T06:59:14.585660Z", + "shell.execute_reply": "2023-08-22T06:59:14.585401Z" }, "lines_to_next_cell": 0 }, @@ -3687,10 +3687,10 @@ "id": "a9698b26", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.331328Z", - "iopub.status.busy": "2023-08-21T03:36:08.331230Z", - "iopub.status.idle": "2023-08-21T03:36:08.334947Z", - "shell.execute_reply": "2023-08-21T03:36:08.334715Z" + "iopub.execute_input": "2023-08-22T06:59:14.587247Z", + "iopub.status.busy": "2023-08-22T06:59:14.587134Z", + "iopub.status.idle": "2023-08-22T06:59:14.591564Z", + "shell.execute_reply": "2023-08-22T06:59:14.591275Z" }, "lines_to_next_cell": 2 }, @@ -3728,10 +3728,10 @@ "id": "4877cb2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.336400Z", - "iopub.status.busy": "2023-08-21T03:36:08.336322Z", - "iopub.status.idle": "2023-08-21T03:36:08.338340Z", - "shell.execute_reply": "2023-08-21T03:36:08.338101Z" + "iopub.execute_input": "2023-08-22T06:59:14.593387Z", + "iopub.status.busy": "2023-08-22T06:59:14.593233Z", + "iopub.status.idle": "2023-08-22T06:59:14.595399Z", + "shell.execute_reply": "2023-08-22T06:59:14.595111Z" } }, "outputs": [ @@ -3767,10 +3767,10 @@ "id": "2ba1d33d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.339714Z", - "iopub.status.busy": "2023-08-21T03:36:08.339640Z", - "iopub.status.idle": "2023-08-21T03:36:08.342116Z", - "shell.execute_reply": "2023-08-21T03:36:08.341883Z" + "iopub.execute_input": "2023-08-22T06:59:14.596985Z", + "iopub.status.busy": "2023-08-22T06:59:14.596880Z", + "iopub.status.idle": "2023-08-22T06:59:14.599760Z", + "shell.execute_reply": "2023-08-22T06:59:14.599435Z" }, "lines_to_next_cell": 2 }, @@ -3807,10 +3807,10 @@ "id": "3d03baab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.343548Z", - "iopub.status.busy": "2023-08-21T03:36:08.343471Z", - "iopub.status.idle": "2023-08-21T03:36:08.345627Z", - "shell.execute_reply": "2023-08-21T03:36:08.345379Z" + "iopub.execute_input": "2023-08-22T06:59:14.602110Z", + "iopub.status.busy": "2023-08-22T06:59:14.601973Z", + "iopub.status.idle": "2023-08-22T06:59:14.604410Z", + "shell.execute_reply": "2023-08-22T06:59:14.604070Z" }, "lines_to_next_cell": 2 }, @@ -3851,10 +3851,10 @@ "id": "410b4dd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.347031Z", - "iopub.status.busy": "2023-08-21T03:36:08.346955Z", - "iopub.status.idle": "2023-08-21T03:36:08.351303Z", - "shell.execute_reply": "2023-08-21T03:36:08.351081Z" + "iopub.execute_input": "2023-08-22T06:59:14.606098Z", + "iopub.status.busy": "2023-08-22T06:59:14.605987Z", + "iopub.status.idle": "2023-08-22T06:59:14.610632Z", + "shell.execute_reply": "2023-08-22T06:59:14.610234Z" }, "lines_to_next_cell": 0 }, @@ -3967,10 +3967,10 @@ "id": "3540804d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.352671Z", - "iopub.status.busy": "2023-08-21T03:36:08.352588Z", - "iopub.status.idle": "2023-08-21T03:36:08.365290Z", - "shell.execute_reply": "2023-08-21T03:36:08.365017Z" + "iopub.execute_input": "2023-08-22T06:59:14.612402Z", + "iopub.status.busy": "2023-08-22T06:59:14.612271Z", + "iopub.status.idle": "2023-08-22T06:59:14.625177Z", + "shell.execute_reply": "2023-08-22T06:59:14.624839Z" }, "lines_to_next_cell": 0 }, @@ -4854,10 +4854,10 @@ "id": "66d174f1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.366746Z", - "iopub.status.busy": "2023-08-21T03:36:08.366648Z", - "iopub.status.idle": "2023-08-21T03:36:08.371142Z", - "shell.execute_reply": "2023-08-21T03:36:08.370889Z" + "iopub.execute_input": "2023-08-22T06:59:14.626829Z", + "iopub.status.busy": "2023-08-22T06:59:14.626719Z", + "iopub.status.idle": "2023-08-22T06:59:14.631422Z", + "shell.execute_reply": "2023-08-22T06:59:14.631104Z" }, "lines_to_next_cell": 0 }, @@ -4989,10 +4989,10 @@ "id": "52789c77", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.372548Z", - "iopub.status.busy": "2023-08-21T03:36:08.372468Z", - "iopub.status.idle": "2023-08-21T03:36:08.374676Z", - "shell.execute_reply": "2023-08-21T03:36:08.374427Z" + "iopub.execute_input": "2023-08-22T06:59:14.633211Z", + "iopub.status.busy": "2023-08-22T06:59:14.633074Z", + "iopub.status.idle": "2023-08-22T06:59:14.635511Z", + "shell.execute_reply": "2023-08-22T06:59:14.635190Z" }, "lines_to_next_cell": 0 }, @@ -5030,10 +5030,10 @@ "id": "d83650bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.376096Z", - "iopub.status.busy": "2023-08-21T03:36:08.376016Z", - "iopub.status.idle": "2023-08-21T03:36:08.382023Z", - "shell.execute_reply": "2023-08-21T03:36:08.381780Z" + "iopub.execute_input": "2023-08-22T06:59:14.637090Z", + "iopub.status.busy": "2023-08-22T06:59:14.636984Z", + "iopub.status.idle": "2023-08-22T06:59:14.643250Z", + "shell.execute_reply": "2023-08-22T06:59:14.642921Z" } }, "outputs": [ @@ -5254,10 +5254,10 @@ "id": "880d79d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.383342Z", - "iopub.status.busy": "2023-08-21T03:36:08.383266Z", - "iopub.status.idle": "2023-08-21T03:36:08.385348Z", - "shell.execute_reply": "2023-08-21T03:36:08.385111Z" + "iopub.execute_input": "2023-08-22T06:59:14.644959Z", + "iopub.status.busy": "2023-08-22T06:59:14.644832Z", + "iopub.status.idle": "2023-08-22T06:59:14.647067Z", + "shell.execute_reply": "2023-08-22T06:59:14.646780Z" }, "lines_to_next_cell": 0 }, @@ -5297,10 +5297,10 @@ "id": "c01f4095", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.386800Z", - "iopub.status.busy": "2023-08-21T03:36:08.386719Z", - "iopub.status.idle": "2023-08-21T03:36:08.390900Z", - "shell.execute_reply": "2023-08-21T03:36:08.390675Z" + "iopub.execute_input": "2023-08-22T06:59:14.648616Z", + "iopub.status.busy": "2023-08-22T06:59:14.648506Z", + "iopub.status.idle": "2023-08-22T06:59:14.653020Z", + "shell.execute_reply": "2023-08-22T06:59:14.652673Z" }, "lines_to_next_cell": 0 }, @@ -5410,10 +5410,10 @@ "id": "a4202eb8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.392405Z", - "iopub.status.busy": "2023-08-21T03:36:08.392322Z", - "iopub.status.idle": "2023-08-21T03:36:08.396509Z", - "shell.execute_reply": "2023-08-21T03:36:08.396244Z" + "iopub.execute_input": "2023-08-22T06:59:14.654821Z", + "iopub.status.busy": "2023-08-22T06:59:14.654708Z", + "iopub.status.idle": "2023-08-22T06:59:14.658952Z", + "shell.execute_reply": "2023-08-22T06:59:14.658676Z" }, "lines_to_next_cell": 0 }, @@ -5522,10 +5522,10 @@ "id": "948b2d07", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.397917Z", - "iopub.status.busy": "2023-08-21T03:36:08.397838Z", - "iopub.status.idle": "2023-08-21T03:36:08.402447Z", - "shell.execute_reply": "2023-08-21T03:36:08.402192Z" + "iopub.execute_input": "2023-08-22T06:59:14.660688Z", + "iopub.status.busy": "2023-08-22T06:59:14.660582Z", + "iopub.status.idle": "2023-08-22T06:59:14.665683Z", + "shell.execute_reply": "2023-08-22T06:59:14.665320Z" }, "lines_to_next_cell": 0 }, @@ -5676,10 +5676,10 @@ "id": "1cfdcc5c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.403773Z", - "iopub.status.busy": "2023-08-21T03:36:08.403692Z", - "iopub.status.idle": "2023-08-21T03:36:08.407036Z", - "shell.execute_reply": "2023-08-21T03:36:08.406794Z" + "iopub.execute_input": "2023-08-22T06:59:14.667792Z", + "iopub.status.busy": "2023-08-22T06:59:14.667649Z", + "iopub.status.idle": "2023-08-22T06:59:14.672086Z", + "shell.execute_reply": "2023-08-22T06:59:14.671668Z" }, "lines_to_next_cell": 0 }, @@ -5763,10 +5763,10 @@ "id": "fd9c5cda", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.408461Z", - "iopub.status.busy": "2023-08-21T03:36:08.408387Z", - "iopub.status.idle": "2023-08-21T03:36:08.411673Z", - "shell.execute_reply": "2023-08-21T03:36:08.411429Z" + "iopub.execute_input": "2023-08-22T06:59:14.674155Z", + "iopub.status.busy": "2023-08-22T06:59:14.674020Z", + "iopub.status.idle": "2023-08-22T06:59:14.677900Z", + "shell.execute_reply": "2023-08-22T06:59:14.677570Z" }, "lines_to_next_cell": 0 }, @@ -5856,10 +5856,10 @@ "id": "6d431cb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.413092Z", - "iopub.status.busy": "2023-08-21T03:36:08.413016Z", - "iopub.status.idle": "2023-08-21T03:36:08.418535Z", - "shell.execute_reply": "2023-08-21T03:36:08.418303Z" + "iopub.execute_input": "2023-08-22T06:59:14.679838Z", + "iopub.status.busy": "2023-08-22T06:59:14.679694Z", + "iopub.status.idle": "2023-08-22T06:59:14.685743Z", + "shell.execute_reply": "2023-08-22T06:59:14.685309Z" }, "lines_to_next_cell": 2 }, @@ -6276,10 +6276,10 @@ "id": "fac41ce1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.419882Z", - "iopub.status.busy": "2023-08-21T03:36:08.419806Z", - "iopub.status.idle": "2023-08-21T03:36:08.425319Z", - "shell.execute_reply": "2023-08-21T03:36:08.425073Z" + "iopub.execute_input": "2023-08-22T06:59:14.687552Z", + "iopub.status.busy": "2023-08-22T06:59:14.687421Z", + "iopub.status.idle": "2023-08-22T06:59:14.693477Z", + "shell.execute_reply": "2023-08-22T06:59:14.693157Z" }, "lines_to_next_cell": 0 }, @@ -6700,10 +6700,10 @@ "id": "b0885654", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.426701Z", - "iopub.status.busy": "2023-08-21T03:36:08.426621Z", - "iopub.status.idle": "2023-08-21T03:36:08.431378Z", - "shell.execute_reply": "2023-08-21T03:36:08.431148Z" + "iopub.execute_input": "2023-08-22T06:59:14.695271Z", + "iopub.status.busy": "2023-08-22T06:59:14.695116Z", + "iopub.status.idle": "2023-08-22T06:59:14.700210Z", + "shell.execute_reply": "2023-08-22T06:59:14.699919Z" }, "lines_to_next_cell": 0 }, @@ -6980,10 +6980,10 @@ "id": "213945a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.432780Z", - "iopub.status.busy": "2023-08-21T03:36:08.432696Z", - "iopub.status.idle": "2023-08-21T03:36:08.438473Z", - "shell.execute_reply": "2023-08-21T03:36:08.438250Z" + "iopub.execute_input": "2023-08-22T06:59:14.702075Z", + "iopub.status.busy": "2023-08-22T06:59:14.701942Z", + "iopub.status.idle": "2023-08-22T06:59:14.708849Z", + "shell.execute_reply": "2023-08-22T06:59:14.708468Z" }, "lines_to_next_cell": 0 }, @@ -7371,10 +7371,10 @@ "id": "a3c4060a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.439902Z", - "iopub.status.busy": "2023-08-21T03:36:08.439825Z", - "iopub.status.idle": "2023-08-21T03:36:08.441707Z", - "shell.execute_reply": "2023-08-21T03:36:08.441464Z" + "iopub.execute_input": "2023-08-22T06:59:14.710560Z", + "iopub.status.busy": "2023-08-22T06:59:14.710418Z", + "iopub.status.idle": "2023-08-22T06:59:14.712662Z", + "shell.execute_reply": "2023-08-22T06:59:14.712379Z" }, "lines_to_next_cell": 0 }, @@ -7415,10 +7415,10 @@ "id": "f2bffb69", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.443349Z", - "iopub.status.busy": "2023-08-21T03:36:08.443241Z", - "iopub.status.idle": "2023-08-21T03:36:08.445173Z", - "shell.execute_reply": "2023-08-21T03:36:08.444935Z" + "iopub.execute_input": "2023-08-22T06:59:14.714548Z", + "iopub.status.busy": "2023-08-22T06:59:14.714416Z", + "iopub.status.idle": "2023-08-22T06:59:14.716724Z", + "shell.execute_reply": "2023-08-22T06:59:14.716275Z" }, "lines_to_next_cell": 0 }, @@ -7467,10 +7467,10 @@ "id": "ee827a53", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.446610Z", - "iopub.status.busy": "2023-08-21T03:36:08.446520Z", - "iopub.status.idle": "2023-08-21T03:36:08.448323Z", - "shell.execute_reply": "2023-08-21T03:36:08.448070Z" + "iopub.execute_input": "2023-08-22T06:59:14.718538Z", + "iopub.status.busy": "2023-08-22T06:59:14.718418Z", + "iopub.status.idle": "2023-08-22T06:59:14.720778Z", + "shell.execute_reply": "2023-08-22T06:59:14.720410Z" } }, "outputs": [ @@ -7522,10 +7522,10 @@ "id": "3a097fbc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.449714Z", - "iopub.status.busy": "2023-08-21T03:36:08.449623Z", - "iopub.status.idle": "2023-08-21T03:36:08.454097Z", - "shell.execute_reply": "2023-08-21T03:36:08.453813Z" + "iopub.execute_input": "2023-08-22T06:59:14.722745Z", + "iopub.status.busy": "2023-08-22T06:59:14.722445Z", + "iopub.status.idle": "2023-08-22T06:59:14.727643Z", + "shell.execute_reply": "2023-08-22T06:59:14.727302Z" }, "lines_to_next_cell": 2 }, @@ -7618,10 +7618,10 @@ "id": "e064e170", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.455528Z", - "iopub.status.busy": "2023-08-21T03:36:08.455447Z", - "iopub.status.idle": "2023-08-21T03:36:08.457783Z", - "shell.execute_reply": "2023-08-21T03:36:08.457543Z" + "iopub.execute_input": "2023-08-22T06:59:14.729283Z", + "iopub.status.busy": "2023-08-22T06:59:14.729148Z", + "iopub.status.idle": "2023-08-22T06:59:14.732019Z", + "shell.execute_reply": "2023-08-22T06:59:14.731599Z" }, "lines_to_next_cell": 0 }, @@ -7675,10 +7675,10 @@ "id": "c915ca52", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.459248Z", - "iopub.status.busy": "2023-08-21T03:36:08.459155Z", - "iopub.status.idle": "2023-08-21T03:36:08.552220Z", - "shell.execute_reply": "2023-08-21T03:36:08.551914Z" + "iopub.execute_input": "2023-08-22T06:59:14.733916Z", + "iopub.status.busy": "2023-08-22T06:59:14.733787Z", + "iopub.status.idle": "2023-08-22T06:59:14.823121Z", + "shell.execute_reply": "2023-08-22T06:59:14.822788Z" }, "lines_to_next_cell": 0 }, @@ -7724,10 +7724,10 @@ "id": "65cd6d02", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.553877Z", - "iopub.status.busy": "2023-08-21T03:36:08.553770Z", - "iopub.status.idle": "2023-08-21T03:36:08.640715Z", - "shell.execute_reply": "2023-08-21T03:36:08.640411Z" + "iopub.execute_input": "2023-08-22T06:59:14.825251Z", + "iopub.status.busy": "2023-08-22T06:59:14.825113Z", + "iopub.status.idle": "2023-08-22T06:59:14.905789Z", + "shell.execute_reply": "2023-08-22T06:59:14.905480Z" }, "lines_to_next_cell": 0 }, @@ -7766,10 +7766,10 @@ "id": "76b5c0b1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.642311Z", - "iopub.status.busy": "2023-08-21T03:36:08.642208Z", - "iopub.status.idle": "2023-08-21T03:36:08.737860Z", - "shell.execute_reply": "2023-08-21T03:36:08.737565Z" + "iopub.execute_input": "2023-08-22T06:59:14.907636Z", + "iopub.status.busy": "2023-08-22T06:59:14.907511Z", + "iopub.status.idle": "2023-08-22T06:59:14.997060Z", + "shell.execute_reply": "2023-08-22T06:59:14.996751Z" }, "lines_to_next_cell": 0 }, @@ -7806,10 +7806,10 @@ "id": "183a2c2b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.739490Z", - "iopub.status.busy": "2023-08-21T03:36:08.739374Z", - "iopub.status.idle": "2023-08-21T03:36:08.779690Z", - "shell.execute_reply": "2023-08-21T03:36:08.779420Z" + "iopub.execute_input": "2023-08-22T06:59:14.998844Z", + "iopub.status.busy": "2023-08-22T06:59:14.998722Z", + "iopub.status.idle": "2023-08-22T06:59:15.033680Z", + "shell.execute_reply": "2023-08-22T06:59:15.033292Z" } }, "outputs": [], @@ -7837,10 +7837,10 @@ "id": "75fbb981", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.781309Z", - "iopub.status.busy": "2023-08-21T03:36:08.781225Z", - "iopub.status.idle": "2023-08-21T03:36:08.949186Z", - "shell.execute_reply": "2023-08-21T03:36:08.948871Z" + "iopub.execute_input": "2023-08-22T06:59:15.035870Z", + "iopub.status.busy": "2023-08-22T06:59:15.035723Z", + "iopub.status.idle": "2023-08-22T06:59:15.198431Z", + "shell.execute_reply": "2023-08-22T06:59:15.198047Z" } }, "outputs": [ @@ -7885,10 +7885,10 @@ "id": "55b3a1cc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.950967Z", - "iopub.status.busy": "2023-08-21T03:36:08.950852Z", - "iopub.status.idle": "2023-08-21T03:36:08.953871Z", - "shell.execute_reply": "2023-08-21T03:36:08.953602Z" + "iopub.execute_input": "2023-08-22T06:59:15.200753Z", + "iopub.status.busy": "2023-08-22T06:59:15.200526Z", + "iopub.status.idle": "2023-08-22T06:59:15.203898Z", + "shell.execute_reply": "2023-08-22T06:59:15.203556Z" }, "lines_to_next_cell": 0 }, @@ -7924,10 +7924,10 @@ "id": "f3d88794", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:08.955394Z", - "iopub.status.busy": "2023-08-21T03:36:08.955297Z", - "iopub.status.idle": "2023-08-21T03:36:09.060746Z", - "shell.execute_reply": "2023-08-21T03:36:09.060425Z" + "iopub.execute_input": "2023-08-22T06:59:15.205746Z", + "iopub.status.busy": "2023-08-22T06:59:15.205652Z", + "iopub.status.idle": "2023-08-22T06:59:15.305674Z", + "shell.execute_reply": "2023-08-22T06:59:15.305240Z" } }, "outputs": [ @@ -7961,10 +7961,10 @@ "id": "eea49f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:09.062393Z", - "iopub.status.busy": "2023-08-21T03:36:09.062272Z", - "iopub.status.idle": "2023-08-21T03:36:09.164120Z", - "shell.execute_reply": "2023-08-21T03:36:09.163816Z" + "iopub.execute_input": "2023-08-22T06:59:15.307641Z", + "iopub.status.busy": "2023-08-22T06:59:15.307491Z", + "iopub.status.idle": "2023-08-22T06:59:15.405217Z", + "shell.execute_reply": "2023-08-22T06:59:15.404785Z" }, "lines_to_next_cell": 0 }, @@ -7999,10 +7999,10 @@ "id": "d5bcfff8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:09.165860Z", - "iopub.status.busy": "2023-08-21T03:36:09.165745Z", - "iopub.status.idle": "2023-08-21T03:36:09.262378Z", - "shell.execute_reply": "2023-08-21T03:36:09.262095Z" + "iopub.execute_input": "2023-08-22T06:59:15.407321Z", + "iopub.status.busy": "2023-08-22T06:59:15.407190Z", + "iopub.status.idle": "2023-08-22T06:59:15.503021Z", + "shell.execute_reply": "2023-08-22T06:59:15.502607Z" }, "lines_to_next_cell": 0 }, @@ -8041,10 +8041,10 @@ "id": "edb66cae", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:09.264050Z", - "iopub.status.busy": "2023-08-21T03:36:09.263936Z", - "iopub.status.idle": "2023-08-21T03:36:10.182139Z", - "shell.execute_reply": "2023-08-21T03:36:10.181842Z" + "iopub.execute_input": "2023-08-22T06:59:15.504880Z", + "iopub.status.busy": "2023-08-22T06:59:15.504746Z", + "iopub.status.idle": "2023-08-22T06:59:16.457367Z", + "shell.execute_reply": "2023-08-22T06:59:16.457033Z" }, "lines_to_next_cell": 0 }, @@ -8079,10 +8079,10 @@ "id": "4f5d25d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:10.183868Z", - "iopub.status.busy": "2023-08-21T03:36:10.183754Z", - "iopub.status.idle": "2023-08-21T03:36:10.401318Z", - "shell.execute_reply": "2023-08-21T03:36:10.401033Z" + "iopub.execute_input": "2023-08-22T06:59:16.459211Z", + "iopub.status.busy": "2023-08-22T06:59:16.459087Z", + "iopub.status.idle": "2023-08-22T06:59:16.684825Z", + "shell.execute_reply": "2023-08-22T06:59:16.684501Z" }, "lines_to_next_cell": 0 }, @@ -8118,10 +8118,10 @@ "id": "ce7b23e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:10.403067Z", - "iopub.status.busy": "2023-08-21T03:36:10.402953Z", - "iopub.status.idle": "2023-08-21T03:36:10.408957Z", - "shell.execute_reply": "2023-08-21T03:36:10.408683Z" + "iopub.execute_input": "2023-08-22T06:59:16.686592Z", + "iopub.status.busy": "2023-08-22T06:59:16.686475Z", + "iopub.status.idle": "2023-08-22T06:59:16.692382Z", + "shell.execute_reply": "2023-08-22T06:59:16.692013Z" }, "lines_to_next_cell": 0 }, @@ -8231,10 +8231,10 @@ "id": "a6545d2f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T03:36:10.410500Z", - "iopub.status.busy": "2023-08-21T03:36:10.410393Z", - "iopub.status.idle": "2023-08-21T03:36:10.414627Z", - "shell.execute_reply": "2023-08-21T03:36:10.414350Z" + "iopub.execute_input": "2023-08-22T06:59:16.694320Z", + "iopub.status.busy": "2023-08-22T06:59:16.694191Z", + "iopub.status.idle": "2023-08-22T06:59:16.698368Z", + "shell.execute_reply": "2023-08-22T06:59:16.698098Z" }, "lines_to_next_cell": 0 }, @@ -8278,7 +8278,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -8291,7 +8291,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch03-linreg-lab.Rmd b/Ch03-linreg-lab.Rmd index 930176c..afb1570 100644 --- a/Ch03-linreg-lab.Rmd +++ b/Ch03-linreg-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch03-linreg-lab.ipynb b/Ch03-linreg-lab.ipynb index f039622..78a516a 100644 --- a/Ch03-linreg-lab.ipynb +++ b/Ch03-linreg-lab.ipynb @@ -27,10 +27,10 @@ "id": "b18c1628", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:52.978537Z", - "iopub.status.busy": "2023-08-21T02:28:52.978403Z", - "iopub.status.idle": "2023-08-21T02:28:53.456488Z", - "shell.execute_reply": "2023-08-21T02:28:53.456172Z" + "iopub.execute_input": "2023-08-22T06:59:19.963803Z", + "iopub.status.busy": "2023-08-22T06:59:19.963695Z", + "iopub.status.idle": "2023-08-22T06:59:20.384511Z", + "shell.execute_reply": "2023-08-22T06:59:20.384219Z" }, "lines_to_next_cell": 2 }, @@ -60,10 +60,10 @@ "id": "a10a1d7d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:53.458574Z", - "iopub.status.busy": "2023-08-21T02:28:53.458356Z", - "iopub.status.idle": "2023-08-21T02:28:54.074306Z", - "shell.execute_reply": "2023-08-21T02:28:54.073950Z" + "iopub.execute_input": "2023-08-22T06:59:20.387117Z", + "iopub.status.busy": "2023-08-22T06:59:20.386932Z", + "iopub.status.idle": "2023-08-22T06:59:27.510372Z", + "shell.execute_reply": "2023-08-22T06:59:27.510076Z" }, "lines_to_next_cell": 0 }, @@ -93,10 +93,10 @@ "id": "756c0524", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.076206Z", - "iopub.status.busy": "2023-08-21T02:28:54.076055Z", - "iopub.status.idle": "2023-08-21T02:28:54.079277Z", - "shell.execute_reply": "2023-08-21T02:28:54.079022Z" + "iopub.execute_input": "2023-08-22T06:59:27.512280Z", + "iopub.status.busy": "2023-08-22T06:59:27.512129Z", + "iopub.status.idle": "2023-08-22T06:59:27.514850Z", + "shell.execute_reply": "2023-08-22T06:59:27.514531Z" } }, "outputs": [], @@ -124,10 +124,10 @@ "id": "2c370a6e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.080812Z", - "iopub.status.busy": "2023-08-21T02:28:54.080717Z", - "iopub.status.idle": "2023-08-21T02:28:54.212489Z", - "shell.execute_reply": "2023-08-21T02:28:54.212195Z" + "iopub.execute_input": "2023-08-22T06:59:27.516720Z", + "iopub.status.busy": "2023-08-22T06:59:27.516584Z", + "iopub.status.idle": "2023-08-22T06:59:30.213761Z", + "shell.execute_reply": "2023-08-22T06:59:30.213403Z" } }, "outputs": [], @@ -156,10 +156,10 @@ "id": "43bcb3a9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.214288Z", - "iopub.status.busy": "2023-08-21T02:28:54.214131Z", - "iopub.status.idle": "2023-08-21T02:28:54.218521Z", - "shell.execute_reply": "2023-08-21T02:28:54.217256Z" + "iopub.execute_input": "2023-08-22T06:59:30.215847Z", + "iopub.status.busy": "2023-08-22T06:59:30.215679Z", + "iopub.status.idle": "2023-08-22T06:59:30.219200Z", + "shell.execute_reply": "2023-08-22T06:59:30.218854Z" }, "lines_to_next_cell": 0 }, @@ -237,10 +237,10 @@ "id": "cb81bfb0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.228152Z", - "iopub.status.busy": "2023-08-21T02:28:54.227968Z", - "iopub.status.idle": "2023-08-21T02:28:54.231888Z", - "shell.execute_reply": "2023-08-21T02:28:54.231418Z" + "iopub.execute_input": "2023-08-22T06:59:30.220842Z", + "iopub.status.busy": "2023-08-22T06:59:30.220745Z", + "iopub.status.idle": "2023-08-22T06:59:30.223794Z", + "shell.execute_reply": "2023-08-22T06:59:30.223517Z" }, "lines_to_next_cell": 0 }, @@ -282,7 +282,6 @@ " '__ge__',\n", " '__getattribute__',\n", " '__getitem__',\n", - " '__getstate__',\n", " '__gt__',\n", " '__hash__',\n", " '__iadd__',\n", @@ -441,10 +440,10 @@ "id": "29e9bdab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.233644Z", - "iopub.status.busy": "2023-08-21T02:28:54.233538Z", - "iopub.status.idle": "2023-08-21T02:28:54.236077Z", - "shell.execute_reply": "2023-08-21T02:28:54.235804Z" + "iopub.execute_input": "2023-08-22T06:59:30.225458Z", + "iopub.status.busy": "2023-08-22T06:59:30.225336Z", + "iopub.status.idle": "2023-08-22T06:59:30.227667Z", + "shell.execute_reply": "2023-08-22T06:59:30.227385Z" }, "lines_to_next_cell": 0 }, @@ -499,10 +498,10 @@ "id": "72a15de5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.237580Z", - "iopub.status.busy": "2023-08-21T02:28:54.237492Z", - "iopub.status.idle": "2023-08-21T02:28:54.242855Z", - "shell.execute_reply": "2023-08-21T02:28:54.242574Z" + "iopub.execute_input": "2023-08-22T06:59:30.229351Z", + "iopub.status.busy": "2023-08-22T06:59:30.229229Z", + "iopub.status.idle": "2023-08-22T06:59:30.233978Z", + "shell.execute_reply": "2023-08-22T06:59:30.233738Z" } }, "outputs": [ @@ -543,10 +542,10 @@ "id": "26837cfe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.244219Z", - "iopub.status.busy": "2023-08-21T02:28:54.244127Z", - "iopub.status.idle": "2023-08-21T02:28:54.249714Z", - "shell.execute_reply": "2023-08-21T02:28:54.249432Z" + "iopub.execute_input": "2023-08-22T06:59:30.235692Z", + "iopub.status.busy": "2023-08-22T06:59:30.235572Z", + "iopub.status.idle": "2023-08-22T06:59:30.240548Z", + "shell.execute_reply": "2023-08-22T06:59:30.240254Z" } }, "outputs": [ @@ -633,10 +632,10 @@ "id": "c70cbdb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.251263Z", - "iopub.status.busy": "2023-08-21T02:28:54.251136Z", - "iopub.status.idle": "2023-08-21T02:28:54.253671Z", - "shell.execute_reply": "2023-08-21T02:28:54.253397Z" + "iopub.execute_input": "2023-08-22T06:59:30.242180Z", + "iopub.status.busy": "2023-08-22T06:59:30.242082Z", + "iopub.status.idle": "2023-08-22T06:59:30.244423Z", + "shell.execute_reply": "2023-08-22T06:59:30.244043Z" }, "lines_to_next_cell": 0 }, @@ -668,10 +667,10 @@ "id": "6f2d7c78", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.255193Z", - "iopub.status.busy": "2023-08-21T02:28:54.255089Z", - "iopub.status.idle": "2023-08-21T02:28:54.314793Z", - "shell.execute_reply": "2023-08-21T02:28:54.314504Z" + "iopub.execute_input": "2023-08-22T06:59:30.246386Z", + "iopub.status.busy": "2023-08-22T06:59:30.246241Z", + "iopub.status.idle": "2023-08-22T06:59:30.304643Z", + "shell.execute_reply": "2023-08-22T06:59:30.304342Z" }, "lines_to_next_cell": 2 }, @@ -779,10 +778,10 @@ "id": "cdec4294", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.316521Z", - "iopub.status.busy": "2023-08-21T02:28:54.316363Z", - "iopub.status.idle": "2023-08-21T02:28:54.323224Z", - "shell.execute_reply": "2023-08-21T02:28:54.322970Z" + "iopub.execute_input": "2023-08-22T06:59:30.306725Z", + "iopub.status.busy": "2023-08-22T06:59:30.306537Z", + "iopub.status.idle": "2023-08-22T06:59:30.313928Z", + "shell.execute_reply": "2023-08-22T06:59:30.313612Z" }, "lines_to_next_cell": 0 }, @@ -874,10 +873,10 @@ "id": "edf2efcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.324750Z", - "iopub.status.busy": "2023-08-21T02:28:54.324644Z", - "iopub.status.idle": "2023-08-21T02:28:54.330945Z", - "shell.execute_reply": "2023-08-21T02:28:54.330680Z" + "iopub.execute_input": "2023-08-22T06:59:30.316046Z", + "iopub.status.busy": "2023-08-22T06:59:30.315927Z", + "iopub.status.idle": "2023-08-22T06:59:30.322463Z", + "shell.execute_reply": "2023-08-22T06:59:30.322137Z" }, "lines_to_next_cell": 0 }, @@ -978,10 +977,10 @@ "id": "49fc8992", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.332402Z", - "iopub.status.busy": "2023-08-21T02:28:54.332319Z", - "iopub.status.idle": "2023-08-21T02:28:54.341724Z", - "shell.execute_reply": "2023-08-21T02:28:54.341409Z" + "iopub.execute_input": "2023-08-22T06:59:30.324453Z", + "iopub.status.busy": "2023-08-22T06:59:30.324311Z", + "iopub.status.idle": "2023-08-22T06:59:30.334219Z", + "shell.execute_reply": "2023-08-22T06:59:30.333881Z" } }, "outputs": [ @@ -1000,10 +999,10 @@ " Method: Least Squares F-statistic: 601.6\n", "\n", "\n", - " Date: Sun, 20 Aug 2023 Prob (F-statistic): 5.08e-88\n", + " Date: Mon, 21 Aug 2023 Prob (F-statistic): 5.08e-88\n", "\n", "\n", - " Time: 19:28:54 Log-Likelihood: -1641.5\n", + " Time: 23:59:30 Log-Likelihood: -1641.5\n", "\n", "\n", " No. Observations: 506 AIC: 3287.\n", @@ -1051,8 +1050,8 @@ "\\textbf{Dep. Variable:} & medv & \\textbf{ R-squared: } & 0.544 \\\\\n", "\\textbf{Model:} & OLS & \\textbf{ Adj. R-squared: } & 0.543 \\\\\n", "\\textbf{Method:} & Least Squares & \\textbf{ F-statistic: } & 601.6 \\\\\n", - "\\textbf{Date:} & Sun, 20 Aug 2023 & \\textbf{ Prob (F-statistic):} & 5.08e-88 \\\\\n", - "\\textbf{Time:} & 19:28:54 & \\textbf{ Log-Likelihood: } & -1641.5 \\\\\n", + "\\textbf{Date:} & Mon, 21 Aug 2023 & \\textbf{ Prob (F-statistic):} & 5.08e-88 \\\\\n", + "\\textbf{Time:} & 23:59:30 & \\textbf{ Log-Likelihood: } & -1641.5 \\\\\n", "\\textbf{No. Observations:} & 506 & \\textbf{ AIC: } & 3287. \\\\\n", "\\textbf{Df Residuals:} & 504 & \\textbf{ BIC: } & 3295. \\\\\n", "\\textbf{Df Model:} & 1 & \\textbf{ } & \\\\\n", @@ -1087,8 +1086,8 @@ "Dep. Variable: medv R-squared: 0.544\n", "Model: OLS Adj. R-squared: 0.543\n", "Method: Least Squares F-statistic: 601.6\n", - "Date: Sun, 20 Aug 2023 Prob (F-statistic): 5.08e-88\n", - "Time: 19:28:54 Log-Likelihood: -1641.5\n", + "Date: Mon, 21 Aug 2023 Prob (F-statistic): 5.08e-88\n", + "Time: 23:59:30 Log-Likelihood: -1641.5\n", "No. Observations: 506 AIC: 3287.\n", "Df Residuals: 504 BIC: 3295.\n", "Df Model: 1 \n", @@ -1134,10 +1133,10 @@ "id": "6d0f4c3a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.343317Z", - "iopub.status.busy": "2023-08-21T02:28:54.343206Z", - "iopub.status.idle": "2023-08-21T02:28:54.345604Z", - "shell.execute_reply": "2023-08-21T02:28:54.345339Z" + "iopub.execute_input": "2023-08-22T06:59:30.336071Z", + "iopub.status.busy": "2023-08-22T06:59:30.335936Z", + "iopub.status.idle": "2023-08-22T06:59:30.338769Z", + "shell.execute_reply": "2023-08-22T06:59:30.338416Z" }, "lines_to_next_cell": 2 }, @@ -1177,10 +1176,10 @@ "id": "132ffded", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.347097Z", - "iopub.status.busy": "2023-08-21T02:28:54.346984Z", - "iopub.status.idle": "2023-08-21T02:28:54.350802Z", - "shell.execute_reply": "2023-08-21T02:28:54.350563Z" + "iopub.execute_input": "2023-08-22T06:59:30.340661Z", + "iopub.status.busy": "2023-08-22T06:59:30.340521Z", + "iopub.status.idle": "2023-08-22T06:59:30.345095Z", + "shell.execute_reply": "2023-08-22T06:59:30.344737Z" } }, "outputs": [ @@ -1261,10 +1260,10 @@ "id": "b654a050", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.352369Z", - "iopub.status.busy": "2023-08-21T02:28:54.352275Z", - "iopub.status.idle": "2023-08-21T02:28:54.354743Z", - "shell.execute_reply": "2023-08-21T02:28:54.354502Z" + "iopub.execute_input": "2023-08-22T06:59:30.346874Z", + "iopub.status.busy": "2023-08-22T06:59:30.346735Z", + "iopub.status.idle": "2023-08-22T06:59:30.349291Z", + "shell.execute_reply": "2023-08-22T06:59:30.349007Z" }, "lines_to_next_cell": 0 }, @@ -1299,10 +1298,10 @@ "id": "148ed59d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.356140Z", - "iopub.status.busy": "2023-08-21T02:28:54.356063Z", - "iopub.status.idle": "2023-08-21T02:28:54.358315Z", - "shell.execute_reply": "2023-08-21T02:28:54.358059Z" + "iopub.execute_input": "2023-08-22T06:59:30.351073Z", + "iopub.status.busy": "2023-08-22T06:59:30.350934Z", + "iopub.status.idle": "2023-08-22T06:59:30.353516Z", + "shell.execute_reply": "2023-08-22T06:59:30.353225Z" }, "lines_to_next_cell": 0 }, @@ -1338,10 +1337,10 @@ "id": "d9d7b844", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.359757Z", - "iopub.status.busy": "2023-08-21T02:28:54.359678Z", - "iopub.status.idle": "2023-08-21T02:28:54.362165Z", - "shell.execute_reply": "2023-08-21T02:28:54.361908Z" + "iopub.execute_input": "2023-08-22T06:59:30.355404Z", + "iopub.status.busy": "2023-08-22T06:59:30.355267Z", + "iopub.status.idle": "2023-08-22T06:59:30.357759Z", + "shell.execute_reply": "2023-08-22T06:59:30.357461Z" }, "lines_to_next_cell": 0 }, @@ -1398,10 +1397,10 @@ "id": "79de2913", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.363741Z", - "iopub.status.busy": "2023-08-21T02:28:54.363634Z", - "iopub.status.idle": "2023-08-21T02:28:54.365531Z", - "shell.execute_reply": "2023-08-21T02:28:54.365292Z" + "iopub.execute_input": "2023-08-22T06:59:30.359458Z", + "iopub.status.busy": "2023-08-22T06:59:30.359349Z", + "iopub.status.idle": "2023-08-22T06:59:30.361244Z", + "shell.execute_reply": "2023-08-22T06:59:30.360996Z" }, "lines_to_next_cell": 0 }, @@ -1432,10 +1431,10 @@ "id": "a9b843c7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.366874Z", - "iopub.status.busy": "2023-08-21T02:28:54.366784Z", - "iopub.status.idle": "2023-08-21T02:28:54.368713Z", - "shell.execute_reply": "2023-08-21T02:28:54.368464Z" + "iopub.execute_input": "2023-08-22T06:59:30.362847Z", + "iopub.status.busy": "2023-08-22T06:59:30.362727Z", + "iopub.status.idle": "2023-08-22T06:59:30.364665Z", + "shell.execute_reply": "2023-08-22T06:59:30.364410Z" }, "lines_to_next_cell": 0 }, @@ -1472,10 +1471,10 @@ "id": "7e116800", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.370163Z", - "iopub.status.busy": "2023-08-21T02:28:54.370073Z", - "iopub.status.idle": "2023-08-21T02:28:54.466696Z", - "shell.execute_reply": "2023-08-21T02:28:54.466338Z" + "iopub.execute_input": "2023-08-22T06:59:30.366228Z", + "iopub.status.busy": "2023-08-22T06:59:30.366005Z", + "iopub.status.idle": "2023-08-22T06:59:30.451927Z", + "shell.execute_reply": "2023-08-22T06:59:30.451614Z" }, "lines_to_next_cell": 0 }, @@ -1536,10 +1535,10 @@ "id": "b524399e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.468561Z", - "iopub.status.busy": "2023-08-21T02:28:54.468356Z", - "iopub.status.idle": "2023-08-21T02:28:54.566644Z", - "shell.execute_reply": "2023-08-21T02:28:54.566337Z" + "iopub.execute_input": "2023-08-22T06:59:30.453712Z", + "iopub.status.busy": "2023-08-22T06:59:30.453582Z", + "iopub.status.idle": "2023-08-22T06:59:30.544088Z", + "shell.execute_reply": "2023-08-22T06:59:30.543647Z" }, "lines_to_next_cell": 0 }, @@ -1584,10 +1583,10 @@ "id": "8c95b6b0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.568423Z", - "iopub.status.busy": "2023-08-21T02:28:54.568307Z", - "iopub.status.idle": "2023-08-21T02:28:54.658553Z", - "shell.execute_reply": "2023-08-21T02:28:54.658267Z" + "iopub.execute_input": "2023-08-22T06:59:30.545979Z", + "iopub.status.busy": "2023-08-22T06:59:30.545829Z", + "iopub.status.idle": "2023-08-22T06:59:30.629333Z", + "shell.execute_reply": "2023-08-22T06:59:30.628907Z" }, "lines_to_next_cell": 0 }, @@ -1652,10 +1651,10 @@ "id": "04ed8362", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.660197Z", - "iopub.status.busy": "2023-08-21T02:28:54.660075Z", - "iopub.status.idle": "2023-08-21T02:28:54.672237Z", - "shell.execute_reply": "2023-08-21T02:28:54.671994Z" + "iopub.execute_input": "2023-08-22T06:59:30.631304Z", + "iopub.status.busy": "2023-08-22T06:59:30.631172Z", + "iopub.status.idle": "2023-08-22T06:59:30.643510Z", + "shell.execute_reply": "2023-08-22T06:59:30.643228Z" }, "lines_to_next_cell": 0 }, @@ -1750,10 +1749,10 @@ "id": "6483e190", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.673721Z", - "iopub.status.busy": "2023-08-21T02:28:54.673628Z", - "iopub.status.idle": "2023-08-21T02:28:54.676304Z", - "shell.execute_reply": "2023-08-21T02:28:54.675993Z" + "iopub.execute_input": "2023-08-22T06:59:30.645260Z", + "iopub.status.busy": "2023-08-22T06:59:30.645134Z", + "iopub.status.idle": "2023-08-22T06:59:30.647637Z", + "shell.execute_reply": "2023-08-22T06:59:30.647310Z" } }, "outputs": [ @@ -1790,10 +1789,10 @@ "id": "99a6f9d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.677828Z", - "iopub.status.busy": "2023-08-21T02:28:54.677709Z", - "iopub.status.idle": "2023-08-21T02:28:54.696704Z", - "shell.execute_reply": "2023-08-21T02:28:54.696381Z" + "iopub.execute_input": "2023-08-22T06:59:30.649333Z", + "iopub.status.busy": "2023-08-22T06:59:30.649188Z", + "iopub.status.idle": "2023-08-22T06:59:30.667501Z", + "shell.execute_reply": "2023-08-22T06:59:30.667201Z" } }, "outputs": [ @@ -1966,10 +1965,10 @@ "id": "78cf55d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.698261Z", - "iopub.status.busy": "2023-08-21T02:28:54.698177Z", - "iopub.status.idle": "2023-08-21T02:28:54.716362Z", - "shell.execute_reply": "2023-08-21T02:28:54.716082Z" + "iopub.execute_input": "2023-08-22T06:59:30.669290Z", + "iopub.status.busy": "2023-08-22T06:59:30.669145Z", + "iopub.status.idle": "2023-08-22T06:59:30.687452Z", + "shell.execute_reply": "2023-08-22T06:59:30.687132Z" } }, "outputs": [ @@ -2154,10 +2153,10 @@ "id": "902f6474", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.718076Z", - "iopub.status.busy": "2023-08-21T02:28:54.717951Z", - "iopub.status.idle": "2023-08-21T02:28:54.725146Z", - "shell.execute_reply": "2023-08-21T02:28:54.724859Z" + "iopub.execute_input": "2023-08-22T06:59:30.689227Z", + "iopub.status.busy": "2023-08-22T06:59:30.689072Z", + "iopub.status.idle": "2023-08-22T06:59:30.695976Z", + "shell.execute_reply": "2023-08-22T06:59:30.695604Z" }, "lines_to_next_cell": 0 }, @@ -2286,10 +2285,10 @@ "id": "ea1c88e9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.726658Z", - "iopub.status.busy": "2023-08-21T02:28:54.726565Z", - "iopub.status.idle": "2023-08-21T02:28:54.731850Z", - "shell.execute_reply": "2023-08-21T02:28:54.731595Z" + "iopub.execute_input": "2023-08-22T06:59:30.697875Z", + "iopub.status.busy": "2023-08-22T06:59:30.697744Z", + "iopub.status.idle": "2023-08-22T06:59:30.702854Z", + "shell.execute_reply": "2023-08-22T06:59:30.702396Z" }, "lines_to_next_cell": 0 }, @@ -2319,10 +2318,10 @@ "id": "e9ff159c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.733388Z", - "iopub.status.busy": "2023-08-21T02:28:54.733294Z", - "iopub.status.idle": "2023-08-21T02:28:54.747346Z", - "shell.execute_reply": "2023-08-21T02:28:54.747067Z" + "iopub.execute_input": "2023-08-22T06:59:30.705060Z", + "iopub.status.busy": "2023-08-22T06:59:30.704928Z", + "iopub.status.idle": "2023-08-22T06:59:30.718546Z", + "shell.execute_reply": "2023-08-22T06:59:30.718288Z" }, "lines_to_next_cell": 2 }, @@ -2427,10 +2426,10 @@ "id": "c98f54b2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.748856Z", - "iopub.status.busy": "2023-08-21T02:28:54.748774Z", - "iopub.status.idle": "2023-08-21T02:28:54.763149Z", - "shell.execute_reply": "2023-08-21T02:28:54.762853Z" + "iopub.execute_input": "2023-08-22T06:59:30.720315Z", + "iopub.status.busy": "2023-08-22T06:59:30.720166Z", + "iopub.status.idle": "2023-08-22T06:59:30.733544Z", + "shell.execute_reply": "2023-08-22T06:59:30.733105Z" }, "lines_to_next_cell": 0 }, @@ -2545,10 +2544,10 @@ "id": "53065cac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.764924Z", - "iopub.status.busy": "2023-08-21T02:28:54.764796Z", - "iopub.status.idle": "2023-08-21T02:28:54.770846Z", - "shell.execute_reply": "2023-08-21T02:28:54.770578Z" + "iopub.execute_input": "2023-08-22T06:59:30.735632Z", + "iopub.status.busy": "2023-08-22T06:59:30.735509Z", + "iopub.status.idle": "2023-08-22T06:59:30.740862Z", + "shell.execute_reply": "2023-08-22T06:59:30.740579Z" }, "lines_to_next_cell": 0 }, @@ -2655,10 +2654,10 @@ "id": "8c654809", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.772408Z", - "iopub.status.busy": "2023-08-21T02:28:54.772296Z", - "iopub.status.idle": "2023-08-21T02:28:54.872389Z", - "shell.execute_reply": "2023-08-21T02:28:54.872086Z" + "iopub.execute_input": "2023-08-22T06:59:30.742508Z", + "iopub.status.busy": "2023-08-22T06:59:30.742387Z", + "iopub.status.idle": "2023-08-22T06:59:30.835769Z", + "shell.execute_reply": "2023-08-22T06:59:30.835368Z" }, "lines_to_next_cell": 0 }, @@ -2666,7 +2665,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 34, @@ -2721,10 +2720,10 @@ "id": "2182f0ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.874000Z", - "iopub.status.busy": "2023-08-21T02:28:54.873893Z", - "iopub.status.idle": "2023-08-21T02:28:54.879085Z", - "shell.execute_reply": "2023-08-21T02:28:54.878817Z" + "iopub.execute_input": "2023-08-22T06:59:30.837767Z", + "iopub.status.busy": "2023-08-22T06:59:30.837636Z", + "iopub.status.idle": "2023-08-22T06:59:30.842380Z", + "shell.execute_reply": "2023-08-22T06:59:30.842026Z" }, "lines_to_next_cell": 0 }, @@ -2772,10 +2771,10 @@ "id": "d614fdcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:54.880583Z", - "iopub.status.busy": "2023-08-21T02:28:54.880499Z", - "iopub.status.idle": "2023-08-21T02:28:54.907341Z", - "shell.execute_reply": "2023-08-21T02:28:54.907079Z" + "iopub.execute_input": "2023-08-22T06:59:30.844518Z", + "iopub.status.busy": "2023-08-22T06:59:30.844367Z", + "iopub.status.idle": "2023-08-22T06:59:30.871405Z", + "shell.execute_reply": "2023-08-22T06:59:30.871052Z" }, "lines_to_next_cell": 0 }, @@ -2967,7 +2966,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -2980,7 +2979,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch04-classification-lab.Rmd b/Ch04-classification-lab.Rmd index d3d8eec..de81f30 100644 --- a/Ch04-classification-lab.Rmd +++ b/Ch04-classification-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch04-classification-lab.ipynb b/Ch04-classification-lab.ipynb index 0ab61a0..eaa27c9 100644 --- a/Ch04-classification-lab.ipynb +++ b/Ch04-classification-lab.ipynb @@ -46,10 +46,10 @@ "id": "95d28c33", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:56.229892Z", - "iopub.status.busy": "2023-08-21T02:28:56.229672Z", - "iopub.status.idle": "2023-08-21T02:28:57.250402Z", - "shell.execute_reply": "2023-08-21T02:28:57.249963Z" + "iopub.execute_input": "2023-08-22T06:59:34.104356Z", + "iopub.status.busy": "2023-08-22T06:59:34.104253Z", + "iopub.status.idle": "2023-08-22T06:59:35.054094Z", + "shell.execute_reply": "2023-08-22T06:59:35.053754Z" } }, "outputs": [], @@ -77,10 +77,10 @@ "id": "f7fb5f2a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.252390Z", - "iopub.status.busy": "2023-08-21T02:28:57.252224Z", - "iopub.status.idle": "2023-08-21T02:28:57.272851Z", - "shell.execute_reply": "2023-08-21T02:28:57.272588Z" + "iopub.execute_input": "2023-08-22T06:59:35.056108Z", + "iopub.status.busy": "2023-08-22T06:59:35.055950Z", + "iopub.status.idle": "2023-08-22T06:59:35.206682Z", + "shell.execute_reply": "2023-08-22T06:59:35.206381Z" }, "lines_to_next_cell": 2 }, @@ -112,10 +112,10 @@ "id": "7845390b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.274355Z", - "iopub.status.busy": "2023-08-21T02:28:57.274258Z", - "iopub.status.idle": "2023-08-21T02:28:57.285160Z", - "shell.execute_reply": "2023-08-21T02:28:57.284894Z" + "iopub.execute_input": "2023-08-22T06:59:35.208609Z", + "iopub.status.busy": "2023-08-22T06:59:35.208499Z", + "iopub.status.idle": "2023-08-22T06:59:35.218856Z", + "shell.execute_reply": "2023-08-22T06:59:35.218543Z" }, "lines_to_next_cell": 0 }, @@ -332,10 +332,10 @@ "id": "a92e287a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.286715Z", - "iopub.status.busy": "2023-08-21T02:28:57.286616Z", - "iopub.status.idle": "2023-08-21T02:28:57.288883Z", - "shell.execute_reply": "2023-08-21T02:28:57.288648Z" + "iopub.execute_input": "2023-08-22T06:59:35.220822Z", + "iopub.status.busy": "2023-08-22T06:59:35.220658Z", + "iopub.status.idle": "2023-08-22T06:59:35.223146Z", + "shell.execute_reply": "2023-08-22T06:59:35.222864Z" }, "lines_to_next_cell": 0 }, @@ -376,10 +376,10 @@ "id": "96bb1e00", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.290357Z", - "iopub.status.busy": "2023-08-21T02:28:57.290259Z", - "iopub.status.idle": "2023-08-21T02:28:57.295352Z", - "shell.execute_reply": "2023-08-21T02:28:57.295083Z" + "iopub.execute_input": "2023-08-22T06:59:35.224965Z", + "iopub.status.busy": "2023-08-22T06:59:35.224831Z", + "iopub.status.idle": "2023-08-22T06:59:35.229701Z", + "shell.execute_reply": "2023-08-22T06:59:35.229442Z" }, "lines_to_next_cell": 0 }, @@ -557,10 +557,10 @@ "id": "4ddb96ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.296784Z", - "iopub.status.busy": "2023-08-21T02:28:57.296683Z", - "iopub.status.idle": "2023-08-21T02:28:57.392956Z", - "shell.execute_reply": "2023-08-21T02:28:57.392526Z" + "iopub.execute_input": "2023-08-22T06:59:35.231485Z", + "iopub.status.busy": "2023-08-22T06:59:35.231354Z", + "iopub.status.idle": "2023-08-22T06:59:35.319629Z", + "shell.execute_reply": "2023-08-22T06:59:35.319199Z" }, "lines_to_next_cell": 2 }, @@ -604,10 +604,10 @@ "id": "df59bcac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.394870Z", - "iopub.status.busy": "2023-08-21T02:28:57.394721Z", - "iopub.status.idle": "2023-08-21T02:28:57.461746Z", - "shell.execute_reply": "2023-08-21T02:28:57.461390Z" + "iopub.execute_input": "2023-08-22T06:59:35.321733Z", + "iopub.status.busy": "2023-08-22T06:59:35.321597Z", + "iopub.status.idle": "2023-08-22T06:59:35.382350Z", + "shell.execute_reply": "2023-08-22T06:59:35.381919Z" }, "lines_to_next_cell": 0 }, @@ -744,10 +744,10 @@ "id": "f45f26de", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.463719Z", - "iopub.status.busy": "2023-08-21T02:28:57.463515Z", - "iopub.status.idle": "2023-08-21T02:28:57.466512Z", - "shell.execute_reply": "2023-08-21T02:28:57.466227Z" + "iopub.execute_input": "2023-08-22T06:59:35.384570Z", + "iopub.status.busy": "2023-08-22T06:59:35.384386Z", + "iopub.status.idle": "2023-08-22T06:59:35.387199Z", + "shell.execute_reply": "2023-08-22T06:59:35.386864Z" }, "lines_to_next_cell": 0 }, @@ -789,10 +789,10 @@ "id": "e9f38895", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.468254Z", - "iopub.status.busy": "2023-08-21T02:28:57.468113Z", - "iopub.status.idle": "2023-08-21T02:28:57.470717Z", - "shell.execute_reply": "2023-08-21T02:28:57.470403Z" + "iopub.execute_input": "2023-08-22T06:59:35.388777Z", + "iopub.status.busy": "2023-08-22T06:59:35.388675Z", + "iopub.status.idle": "2023-08-22T06:59:35.391038Z", + "shell.execute_reply": "2023-08-22T06:59:35.390743Z" } }, "outputs": [ @@ -840,10 +840,10 @@ "id": "4f20356d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.472719Z", - "iopub.status.busy": "2023-08-21T02:28:57.472578Z", - "iopub.status.idle": "2023-08-21T02:28:57.475369Z", - "shell.execute_reply": "2023-08-21T02:28:57.475043Z" + "iopub.execute_input": "2023-08-22T06:59:35.392617Z", + "iopub.status.busy": "2023-08-22T06:59:35.392475Z", + "iopub.status.idle": "2023-08-22T06:59:35.395311Z", + "shell.execute_reply": "2023-08-22T06:59:35.395042Z" }, "lines_to_next_cell": 0 }, @@ -884,10 +884,10 @@ "id": "152b3063", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.477166Z", - "iopub.status.busy": "2023-08-21T02:28:57.477052Z", - "iopub.status.idle": "2023-08-21T02:28:57.479161Z", - "shell.execute_reply": "2023-08-21T02:28:57.478803Z" + "iopub.execute_input": "2023-08-22T06:59:35.396940Z", + "iopub.status.busy": "2023-08-22T06:59:35.396826Z", + "iopub.status.idle": "2023-08-22T06:59:35.398854Z", + "shell.execute_reply": "2023-08-22T06:59:35.398548Z" }, "lines_to_next_cell": 0 }, @@ -917,10 +917,10 @@ "id": "0f89f7ae", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.480867Z", - "iopub.status.busy": "2023-08-21T02:28:57.480737Z", - "iopub.status.idle": "2023-08-21T02:28:57.487133Z", - "shell.execute_reply": "2023-08-21T02:28:57.486778Z" + "iopub.execute_input": "2023-08-22T06:59:35.400476Z", + "iopub.status.busy": "2023-08-22T06:59:35.400370Z", + "iopub.status.idle": "2023-08-22T06:59:35.406304Z", + "shell.execute_reply": "2023-08-22T06:59:35.405994Z" } }, "outputs": [ @@ -1006,10 +1006,10 @@ "id": "d55dd7ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.488873Z", - "iopub.status.busy": "2023-08-21T02:28:57.488756Z", - "iopub.status.idle": "2023-08-21T02:28:57.491458Z", - "shell.execute_reply": "2023-08-21T02:28:57.491162Z" + "iopub.execute_input": "2023-08-22T06:59:35.408001Z", + "iopub.status.busy": "2023-08-22T06:59:35.407888Z", + "iopub.status.idle": "2023-08-22T06:59:35.410520Z", + "shell.execute_reply": "2023-08-22T06:59:35.410222Z" }, "lines_to_next_cell": 0 }, @@ -1069,10 +1069,10 @@ "id": "b998a060", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.493306Z", - "iopub.status.busy": "2023-08-21T02:28:57.493174Z", - "iopub.status.idle": "2023-08-21T02:28:57.496464Z", - "shell.execute_reply": "2023-08-21T02:28:57.496107Z" + "iopub.execute_input": "2023-08-22T06:59:35.412348Z", + "iopub.status.busy": "2023-08-22T06:59:35.412200Z", + "iopub.status.idle": "2023-08-22T06:59:35.415670Z", + "shell.execute_reply": "2023-08-22T06:59:35.415360Z" }, "lines_to_next_cell": 2 }, @@ -1135,10 +1135,10 @@ "id": "814e34ce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.498135Z", - "iopub.status.busy": "2023-08-21T02:28:57.498043Z", - "iopub.status.idle": "2023-08-21T02:28:57.502996Z", - "shell.execute_reply": "2023-08-21T02:28:57.502676Z" + "iopub.execute_input": "2023-08-22T06:59:35.417692Z", + "iopub.status.busy": "2023-08-22T06:59:35.417600Z", + "iopub.status.idle": "2023-08-22T06:59:35.422315Z", + "shell.execute_reply": "2023-08-22T06:59:35.421995Z" } }, "outputs": [], @@ -1172,10 +1172,10 @@ "id": "644823f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.504874Z", - "iopub.status.busy": "2023-08-21T02:28:57.504743Z", - "iopub.status.idle": "2023-08-21T02:28:57.506879Z", - "shell.execute_reply": "2023-08-21T02:28:57.506558Z" + "iopub.execute_input": "2023-08-22T06:59:35.424241Z", + "iopub.status.busy": "2023-08-22T06:59:35.424099Z", + "iopub.status.idle": "2023-08-22T06:59:35.426371Z", + "shell.execute_reply": "2023-08-22T06:59:35.425999Z" }, "lines_to_next_cell": 0 }, @@ -1201,10 +1201,10 @@ "id": "51217c85", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.508502Z", - "iopub.status.busy": "2023-08-21T02:28:57.508403Z", - "iopub.status.idle": "2023-08-21T02:28:57.512973Z", - "shell.execute_reply": "2023-08-21T02:28:57.512720Z" + "iopub.execute_input": "2023-08-22T06:59:35.428375Z", + "iopub.status.busy": "2023-08-22T06:59:35.428239Z", + "iopub.status.idle": "2023-08-22T06:59:35.432849Z", + "shell.execute_reply": "2023-08-22T06:59:35.432491Z" }, "lines_to_next_cell": 0 }, @@ -1286,10 +1286,10 @@ "id": "a73446bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.514459Z", - "iopub.status.busy": "2023-08-21T02:28:57.514377Z", - "iopub.status.idle": "2023-08-21T02:28:57.517011Z", - "shell.execute_reply": "2023-08-21T02:28:57.516758Z" + "iopub.execute_input": "2023-08-22T06:59:35.434489Z", + "iopub.status.busy": "2023-08-22T06:59:35.434371Z", + "iopub.status.idle": "2023-08-22T06:59:35.437237Z", + "shell.execute_reply": "2023-08-22T06:59:35.436914Z" }, "lines_to_next_cell": 2 }, @@ -1344,10 +1344,10 @@ "id": "8174767d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.518464Z", - "iopub.status.busy": "2023-08-21T02:28:57.518363Z", - "iopub.status.idle": "2023-08-21T02:28:57.528289Z", - "shell.execute_reply": "2023-08-21T02:28:57.527983Z" + "iopub.execute_input": "2023-08-22T06:59:35.439129Z", + "iopub.status.busy": "2023-08-22T06:59:35.438980Z", + "iopub.status.idle": "2023-08-22T06:59:35.449036Z", + "shell.execute_reply": "2023-08-22T06:59:35.448757Z" }, "lines_to_next_cell": 2 }, @@ -1438,10 +1438,10 @@ "id": "cba7e815", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.529915Z", - "iopub.status.busy": "2023-08-21T02:28:57.529812Z", - "iopub.status.idle": "2023-08-21T02:28:57.532108Z", - "shell.execute_reply": "2023-08-21T02:28:57.531849Z" + "iopub.execute_input": "2023-08-22T06:59:35.450840Z", + "iopub.status.busy": "2023-08-22T06:59:35.450725Z", + "iopub.status.idle": "2023-08-22T06:59:35.452944Z", + "shell.execute_reply": "2023-08-22T06:59:35.452674Z" } }, "outputs": [ @@ -1492,10 +1492,10 @@ "id": "97993185", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.533565Z", - "iopub.status.busy": "2023-08-21T02:28:57.533462Z", - "iopub.status.idle": "2023-08-21T02:28:57.537458Z", - "shell.execute_reply": "2023-08-21T02:28:57.537180Z" + "iopub.execute_input": "2023-08-22T06:59:35.454539Z", + "iopub.status.busy": "2023-08-22T06:59:35.454423Z", + "iopub.status.idle": "2023-08-22T06:59:35.458834Z", + "shell.execute_reply": "2023-08-22T06:59:35.458553Z" }, "lines_to_next_cell": 2 }, @@ -1544,10 +1544,10 @@ "id": "4bc774e9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.539054Z", - "iopub.status.busy": "2023-08-21T02:28:57.538952Z", - "iopub.status.idle": "2023-08-21T02:28:57.540857Z", - "shell.execute_reply": "2023-08-21T02:28:57.540537Z" + "iopub.execute_input": "2023-08-22T06:59:35.460658Z", + "iopub.status.busy": "2023-08-22T06:59:35.460534Z", + "iopub.status.idle": "2023-08-22T06:59:35.462216Z", + "shell.execute_reply": "2023-08-22T06:59:35.461957Z" } }, "outputs": [], @@ -1572,10 +1572,10 @@ "id": "8c6c0723", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.542568Z", - "iopub.status.busy": "2023-08-21T02:28:57.542481Z", - "iopub.status.idle": "2023-08-21T02:28:57.548927Z", - "shell.execute_reply": "2023-08-21T02:28:57.548581Z" + "iopub.execute_input": "2023-08-22T06:59:35.463858Z", + "iopub.status.busy": "2023-08-22T06:59:35.463759Z", + "iopub.status.idle": "2023-08-22T06:59:35.469987Z", + "shell.execute_reply": "2023-08-22T06:59:35.469710Z" }, "lines_to_next_cell": 0 }, @@ -1628,10 +1628,10 @@ "id": "cf8fd5ac", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.550601Z", - "iopub.status.busy": "2023-08-21T02:28:57.550496Z", - "iopub.status.idle": "2023-08-21T02:28:57.552737Z", - "shell.execute_reply": "2023-08-21T02:28:57.552471Z" + "iopub.execute_input": "2023-08-22T06:59:35.471584Z", + "iopub.status.busy": "2023-08-22T06:59:35.471470Z", + "iopub.status.idle": "2023-08-22T06:59:35.473834Z", + "shell.execute_reply": "2023-08-22T06:59:35.473552Z" }, "lines_to_next_cell": 2 }, @@ -1669,10 +1669,10 @@ "id": "bfd6b3f8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.554217Z", - "iopub.status.busy": "2023-08-21T02:28:57.554117Z", - "iopub.status.idle": "2023-08-21T02:28:57.556249Z", - "shell.execute_reply": "2023-08-21T02:28:57.555998Z" + "iopub.execute_input": "2023-08-22T06:59:35.475293Z", + "iopub.status.busy": "2023-08-22T06:59:35.475189Z", + "iopub.status.idle": "2023-08-22T06:59:35.477448Z", + "shell.execute_reply": "2023-08-22T06:59:35.477007Z" }, "lines_to_next_cell": 2 }, @@ -1707,10 +1707,10 @@ "id": "a1f75de4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.557716Z", - "iopub.status.busy": "2023-08-21T02:28:57.557623Z", - "iopub.status.idle": "2023-08-21T02:28:57.559886Z", - "shell.execute_reply": "2023-08-21T02:28:57.559582Z" + "iopub.execute_input": "2023-08-22T06:59:35.479354Z", + "iopub.status.busy": "2023-08-22T06:59:35.479219Z", + "iopub.status.idle": "2023-08-22T06:59:35.481609Z", + "shell.execute_reply": "2023-08-22T06:59:35.481305Z" }, "lines_to_next_cell": 2 }, @@ -1744,10 +1744,10 @@ "id": "82794178", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.561606Z", - "iopub.status.busy": "2023-08-21T02:28:57.561489Z", - "iopub.status.idle": "2023-08-21T02:28:57.563996Z", - "shell.execute_reply": "2023-08-21T02:28:57.563652Z" + "iopub.execute_input": "2023-08-22T06:59:35.483264Z", + "iopub.status.busy": "2023-08-22T06:59:35.483156Z", + "iopub.status.idle": "2023-08-22T06:59:35.485247Z", + "shell.execute_reply": "2023-08-22T06:59:35.484948Z" } }, "outputs": [ @@ -1782,10 +1782,10 @@ "id": "9b571047", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.565689Z", - "iopub.status.busy": "2023-08-21T02:28:57.565573Z", - "iopub.status.idle": "2023-08-21T02:28:57.568080Z", - "shell.execute_reply": "2023-08-21T02:28:57.567748Z" + "iopub.execute_input": "2023-08-22T06:59:35.486831Z", + "iopub.status.busy": "2023-08-22T06:59:35.486719Z", + "iopub.status.idle": "2023-08-22T06:59:35.489231Z", + "shell.execute_reply": "2023-08-22T06:59:35.488879Z" } }, "outputs": [], @@ -1809,10 +1809,10 @@ "id": "60f3d13a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.569793Z", - "iopub.status.busy": "2023-08-21T02:28:57.569674Z", - "iopub.status.idle": "2023-08-21T02:28:57.574322Z", - "shell.execute_reply": "2023-08-21T02:28:57.573986Z" + "iopub.execute_input": "2023-08-22T06:59:35.490888Z", + "iopub.status.busy": "2023-08-22T06:59:35.490781Z", + "iopub.status.idle": "2023-08-22T06:59:35.494972Z", + "shell.execute_reply": "2023-08-22T06:59:35.494699Z" }, "lines_to_next_cell": 2 }, @@ -1896,10 +1896,10 @@ "id": "96e680d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.576103Z", - "iopub.status.busy": "2023-08-21T02:28:57.575991Z", - "iopub.status.idle": "2023-08-21T02:28:57.579068Z", - "shell.execute_reply": "2023-08-21T02:28:57.578805Z" + "iopub.execute_input": "2023-08-22T06:59:35.496550Z", + "iopub.status.busy": "2023-08-22T06:59:35.496460Z", + "iopub.status.idle": "2023-08-22T06:59:35.500050Z", + "shell.execute_reply": "2023-08-22T06:59:35.499652Z" }, "lines_to_next_cell": 2 }, @@ -1940,10 +1940,10 @@ "id": "b6695125", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.580746Z", - "iopub.status.busy": "2023-08-21T02:28:57.580639Z", - "iopub.status.idle": "2023-08-21T02:28:57.583327Z", - "shell.execute_reply": "2023-08-21T02:28:57.583073Z" + "iopub.execute_input": "2023-08-22T06:59:35.501821Z", + "iopub.status.busy": "2023-08-22T06:59:35.501696Z", + "iopub.status.idle": "2023-08-22T06:59:35.504118Z", + "shell.execute_reply": "2023-08-22T06:59:35.503779Z" }, "lines_to_next_cell": 2 }, @@ -1986,10 +1986,10 @@ "id": "3f38a14e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.584834Z", - "iopub.status.busy": "2023-08-21T02:28:57.584748Z", - "iopub.status.idle": "2023-08-21T02:28:57.587140Z", - "shell.execute_reply": "2023-08-21T02:28:57.586884Z" + "iopub.execute_input": "2023-08-22T06:59:35.505774Z", + "iopub.status.busy": "2023-08-22T06:59:35.505669Z", + "iopub.status.idle": "2023-08-22T06:59:35.508018Z", + "shell.execute_reply": "2023-08-22T06:59:35.507737Z" } }, "outputs": [ @@ -2051,10 +2051,10 @@ "id": "9b645803", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.588684Z", - "iopub.status.busy": "2023-08-21T02:28:57.588575Z", - "iopub.status.idle": "2023-08-21T02:28:57.592433Z", - "shell.execute_reply": "2023-08-21T02:28:57.592165Z" + "iopub.execute_input": "2023-08-22T06:59:35.510093Z", + "iopub.status.busy": "2023-08-22T06:59:35.509967Z", + "iopub.status.idle": "2023-08-22T06:59:35.514060Z", + "shell.execute_reply": "2023-08-22T06:59:35.513746Z" } }, "outputs": [ @@ -2091,10 +2091,10 @@ "id": "abfae544", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.593864Z", - "iopub.status.busy": "2023-08-21T02:28:57.593784Z", - "iopub.status.idle": "2023-08-21T02:28:57.596074Z", - "shell.execute_reply": "2023-08-21T02:28:57.595807Z" + "iopub.execute_input": "2023-08-22T06:59:35.515774Z", + "iopub.status.busy": "2023-08-22T06:59:35.515682Z", + "iopub.status.idle": "2023-08-22T06:59:35.518169Z", + "shell.execute_reply": "2023-08-22T06:59:35.517903Z" } }, "outputs": [ @@ -2130,10 +2130,10 @@ "id": "2a3bb41e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.597540Z", - "iopub.status.busy": "2023-08-21T02:28:57.597455Z", - "iopub.status.idle": "2023-08-21T02:28:57.599658Z", - "shell.execute_reply": "2023-08-21T02:28:57.599399Z" + "iopub.execute_input": "2023-08-22T06:59:35.519953Z", + "iopub.status.busy": "2023-08-22T06:59:35.519849Z", + "iopub.status.idle": "2023-08-22T06:59:35.522248Z", + "shell.execute_reply": "2023-08-22T06:59:35.521930Z" }, "lines_to_next_cell": 0 }, @@ -2172,10 +2172,10 @@ "id": "1c64310b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.601097Z", - "iopub.status.busy": "2023-08-21T02:28:57.601019Z", - "iopub.status.idle": "2023-08-21T02:28:57.605729Z", - "shell.execute_reply": "2023-08-21T02:28:57.605444Z" + "iopub.execute_input": "2023-08-22T06:59:35.523826Z", + "iopub.status.busy": "2023-08-22T06:59:35.523714Z", + "iopub.status.idle": "2023-08-22T06:59:35.528214Z", + "shell.execute_reply": "2023-08-22T06:59:35.527959Z" }, "lines_to_next_cell": 0 }, @@ -2257,10 +2257,10 @@ "id": "0c05c5a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.607207Z", - "iopub.status.busy": "2023-08-21T02:28:57.607093Z", - "iopub.status.idle": "2023-08-21T02:28:57.609626Z", - "shell.execute_reply": "2023-08-21T02:28:57.609348Z" + "iopub.execute_input": "2023-08-22T06:59:35.530152Z", + "iopub.status.busy": "2023-08-22T06:59:35.530024Z", + "iopub.status.idle": "2023-08-22T06:59:35.532713Z", + "shell.execute_reply": "2023-08-22T06:59:35.532375Z" }, "lines_to_next_cell": 2 }, @@ -2313,10 +2313,10 @@ "id": "47d85305", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.611305Z", - "iopub.status.busy": "2023-08-21T02:28:57.611177Z", - "iopub.status.idle": "2023-08-21T02:28:57.615527Z", - "shell.execute_reply": "2023-08-21T02:28:57.615221Z" + "iopub.execute_input": "2023-08-22T06:59:35.534353Z", + "iopub.status.busy": "2023-08-22T06:59:35.534232Z", + "iopub.status.idle": "2023-08-22T06:59:35.537918Z", + "shell.execute_reply": "2023-08-22T06:59:35.537612Z" }, "lines_to_next_cell": 2 }, @@ -2354,10 +2354,10 @@ "id": "c553aadf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.617346Z", - "iopub.status.busy": "2023-08-21T02:28:57.617202Z", - "iopub.status.idle": "2023-08-21T02:28:57.619612Z", - "shell.execute_reply": "2023-08-21T02:28:57.619301Z" + "iopub.execute_input": "2023-08-22T06:59:35.539480Z", + "iopub.status.busy": "2023-08-22T06:59:35.539391Z", + "iopub.status.idle": "2023-08-22T06:59:35.541924Z", + "shell.execute_reply": "2023-08-22T06:59:35.541560Z" }, "lines_to_next_cell": 2 }, @@ -2391,10 +2391,10 @@ "id": "4604bd3d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.621294Z", - "iopub.status.busy": "2023-08-21T02:28:57.621168Z", - "iopub.status.idle": "2023-08-21T02:28:57.623355Z", - "shell.execute_reply": "2023-08-21T02:28:57.623086Z" + "iopub.execute_input": "2023-08-22T06:59:35.543604Z", + "iopub.status.busy": "2023-08-22T06:59:35.543514Z", + "iopub.status.idle": "2023-08-22T06:59:35.545770Z", + "shell.execute_reply": "2023-08-22T06:59:35.545483Z" }, "lines_to_next_cell": 2 }, @@ -2430,10 +2430,10 @@ "id": "5ac2cabe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.624902Z", - "iopub.status.busy": "2023-08-21T02:28:57.624775Z", - "iopub.status.idle": "2023-08-21T02:28:57.627201Z", - "shell.execute_reply": "2023-08-21T02:28:57.626911Z" + "iopub.execute_input": "2023-08-22T06:59:35.547333Z", + "iopub.status.busy": "2023-08-22T06:59:35.547227Z", + "iopub.status.idle": "2023-08-22T06:59:35.549381Z", + "shell.execute_reply": "2023-08-22T06:59:35.549124Z" } }, "outputs": [ @@ -2467,10 +2467,10 @@ "id": "f8623945", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.628781Z", - "iopub.status.busy": "2023-08-21T02:28:57.628673Z", - "iopub.status.idle": "2023-08-21T02:28:57.631185Z", - "shell.execute_reply": "2023-08-21T02:28:57.630909Z" + "iopub.execute_input": "2023-08-22T06:59:35.551288Z", + "iopub.status.busy": "2023-08-22T06:59:35.551134Z", + "iopub.status.idle": "2023-08-22T06:59:35.553370Z", + "shell.execute_reply": "2023-08-22T06:59:35.553102Z" }, "lines_to_next_cell": 0 }, @@ -2507,10 +2507,10 @@ "id": "0790f26e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.632749Z", - "iopub.status.busy": "2023-08-21T02:28:57.632622Z", - "iopub.status.idle": "2023-08-21T02:28:57.635950Z", - "shell.execute_reply": "2023-08-21T02:28:57.635645Z" + "iopub.execute_input": "2023-08-22T06:59:35.554980Z", + "iopub.status.busy": "2023-08-22T06:59:35.554846Z", + "iopub.status.idle": "2023-08-22T06:59:35.557806Z", + "shell.execute_reply": "2023-08-22T06:59:35.557573Z" }, "lines_to_next_cell": 2 }, @@ -2546,10 +2546,10 @@ "id": "4a8cf0ce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.637431Z", - "iopub.status.busy": "2023-08-21T02:28:57.637345Z", - "iopub.status.idle": "2023-08-21T02:28:57.640679Z", - "shell.execute_reply": "2023-08-21T02:28:57.640387Z" + "iopub.execute_input": "2023-08-22T06:59:35.559235Z", + "iopub.status.busy": "2023-08-22T06:59:35.559122Z", + "iopub.status.idle": "2023-08-22T06:59:35.562452Z", + "shell.execute_reply": "2023-08-22T06:59:35.562071Z" }, "lines_to_next_cell": 0 }, @@ -2586,10 +2586,10 @@ "id": "94e7ff1a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.642306Z", - "iopub.status.busy": "2023-08-21T02:28:57.642190Z", - "iopub.status.idle": "2023-08-21T02:28:57.646804Z", - "shell.execute_reply": "2023-08-21T02:28:57.646534Z" + "iopub.execute_input": "2023-08-22T06:59:35.564237Z", + "iopub.status.busy": "2023-08-22T06:59:35.564138Z", + "iopub.status.idle": "2023-08-22T06:59:35.568635Z", + "shell.execute_reply": "2023-08-22T06:59:35.568359Z" } }, "outputs": [ @@ -2671,10 +2671,10 @@ "id": "137e23aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.648357Z", - "iopub.status.busy": "2023-08-21T02:28:57.648246Z", - "iopub.status.idle": "2023-08-21T02:28:57.651178Z", - "shell.execute_reply": "2023-08-21T02:28:57.650935Z" + "iopub.execute_input": "2023-08-22T06:59:35.570127Z", + "iopub.status.busy": "2023-08-22T06:59:35.570011Z", + "iopub.status.idle": "2023-08-22T06:59:35.573407Z", + "shell.execute_reply": "2023-08-22T06:59:35.573097Z" }, "lines_to_next_cell": 2 }, @@ -2721,10 +2721,10 @@ "id": "142c5217", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.652781Z", - "iopub.status.busy": "2023-08-21T02:28:57.652676Z", - "iopub.status.idle": "2023-08-21T02:28:57.665013Z", - "shell.execute_reply": "2023-08-21T02:28:57.664742Z" + "iopub.execute_input": "2023-08-22T06:59:35.575043Z", + "iopub.status.busy": "2023-08-22T06:59:35.574949Z", + "iopub.status.idle": "2023-08-22T06:59:35.585246Z", + "shell.execute_reply": "2023-08-22T06:59:35.584962Z" } }, "outputs": [ @@ -2809,10 +2809,10 @@ "id": "f5a272ee", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.666910Z", - "iopub.status.busy": "2023-08-21T02:28:57.666782Z", - "iopub.status.idle": "2023-08-21T02:28:57.669498Z", - "shell.execute_reply": "2023-08-21T02:28:57.669179Z" + "iopub.execute_input": "2023-08-22T06:59:35.587100Z", + "iopub.status.busy": "2023-08-22T06:59:35.586985Z", + "iopub.status.idle": "2023-08-22T06:59:35.589510Z", + "shell.execute_reply": "2023-08-22T06:59:35.589151Z" } }, "outputs": [ @@ -2846,10 +2846,10 @@ "id": "95e206a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.671045Z", - "iopub.status.busy": "2023-08-21T02:28:57.670939Z", - "iopub.status.idle": "2023-08-21T02:28:57.679000Z", - "shell.execute_reply": "2023-08-21T02:28:57.678715Z" + "iopub.execute_input": "2023-08-22T06:59:35.591165Z", + "iopub.status.busy": "2023-08-22T06:59:35.591045Z", + "iopub.status.idle": "2023-08-22T06:59:35.598648Z", + "shell.execute_reply": "2023-08-22T06:59:35.598383Z" }, "lines_to_next_cell": 0 }, @@ -2901,10 +2901,10 @@ "id": "422563b7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.680643Z", - "iopub.status.busy": "2023-08-21T02:28:57.680560Z", - "iopub.status.idle": "2023-08-21T02:28:57.698929Z", - "shell.execute_reply": "2023-08-21T02:28:57.698652Z" + "iopub.execute_input": "2023-08-22T06:59:35.600269Z", + "iopub.status.busy": "2023-08-22T06:59:35.600186Z", + "iopub.status.idle": "2023-08-22T06:59:35.616715Z", + "shell.execute_reply": "2023-08-22T06:59:35.616375Z" }, "lines_to_next_cell": 2 }, @@ -2945,10 +2945,10 @@ "id": "583c860c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.700534Z", - "iopub.status.busy": "2023-08-21T02:28:57.700406Z", - "iopub.status.idle": "2023-08-21T02:28:57.702790Z", - "shell.execute_reply": "2023-08-21T02:28:57.702539Z" + "iopub.execute_input": "2023-08-22T06:59:35.618509Z", + "iopub.status.busy": "2023-08-22T06:59:35.618392Z", + "iopub.status.idle": "2023-08-22T06:59:35.620427Z", + "shell.execute_reply": "2023-08-22T06:59:35.620213Z" }, "lines_to_next_cell": 2 }, @@ -2982,10 +2982,10 @@ "id": "19ee3bf2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.704427Z", - "iopub.status.busy": "2023-08-21T02:28:57.704308Z", - "iopub.status.idle": "2023-08-21T02:28:57.707107Z", - "shell.execute_reply": "2023-08-21T02:28:57.706716Z" + "iopub.execute_input": "2023-08-22T06:59:35.622075Z", + "iopub.status.busy": "2023-08-22T06:59:35.621970Z", + "iopub.status.idle": "2023-08-22T06:59:35.624662Z", + "shell.execute_reply": "2023-08-22T06:59:35.624306Z" } }, "outputs": [], @@ -3031,10 +3031,10 @@ "id": "fdc0e5f1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.708836Z", - "iopub.status.busy": "2023-08-21T02:28:57.708707Z", - "iopub.status.idle": "2023-08-21T02:28:57.710507Z", - "shell.execute_reply": "2023-08-21T02:28:57.710220Z" + "iopub.execute_input": "2023-08-22T06:59:35.626535Z", + "iopub.status.busy": "2023-08-22T06:59:35.626411Z", + "iopub.status.idle": "2023-08-22T06:59:35.628326Z", + "shell.execute_reply": "2023-08-22T06:59:35.628023Z" }, "lines_to_next_cell": 0 }, @@ -3070,10 +3070,10 @@ "id": "2bb9d48b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.712025Z", - "iopub.status.busy": "2023-08-21T02:28:57.711919Z", - "iopub.status.idle": "2023-08-21T02:28:57.717961Z", - "shell.execute_reply": "2023-08-21T02:28:57.717623Z" + "iopub.execute_input": "2023-08-22T06:59:35.630001Z", + "iopub.status.busy": "2023-08-22T06:59:35.629870Z", + "iopub.status.idle": "2023-08-22T06:59:35.636000Z", + "shell.execute_reply": "2023-08-22T06:59:35.635697Z" }, "lines_to_next_cell": 0 }, @@ -3098,10 +3098,10 @@ "id": "649b57b3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.719733Z", - "iopub.status.busy": "2023-08-21T02:28:57.719643Z", - "iopub.status.idle": "2023-08-21T02:28:57.725788Z", - "shell.execute_reply": "2023-08-21T02:28:57.725511Z" + "iopub.execute_input": "2023-08-22T06:59:35.637746Z", + "iopub.status.busy": "2023-08-22T06:59:35.637618Z", + "iopub.status.idle": "2023-08-22T06:59:35.643400Z", + "shell.execute_reply": "2023-08-22T06:59:35.643102Z" } }, "outputs": [ @@ -3154,10 +3154,10 @@ "id": "d0aafd5e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.727208Z", - "iopub.status.busy": "2023-08-21T02:28:57.727114Z", - "iopub.status.idle": "2023-08-21T02:28:57.730769Z", - "shell.execute_reply": "2023-08-21T02:28:57.730507Z" + "iopub.execute_input": "2023-08-22T06:59:35.644912Z", + "iopub.status.busy": "2023-08-22T06:59:35.644814Z", + "iopub.status.idle": "2023-08-22T06:59:35.648144Z", + "shell.execute_reply": "2023-08-22T06:59:35.647828Z" }, "lines_to_next_cell": 0 }, @@ -3189,10 +3189,10 @@ "id": "ad02fb42", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:57.732302Z", - "iopub.status.busy": "2023-08-21T02:28:57.732202Z", - "iopub.status.idle": "2023-08-21T02:28:58.059169Z", - "shell.execute_reply": "2023-08-21T02:28:58.058739Z" + "iopub.execute_input": "2023-08-22T06:59:35.649991Z", + "iopub.status.busy": "2023-08-22T06:59:35.649857Z", + "iopub.status.idle": "2023-08-22T06:59:35.851869Z", + "shell.execute_reply": "2023-08-22T06:59:35.850800Z" }, "lines_to_next_cell": 2 }, @@ -3242,10 +3242,10 @@ "id": "901f772e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.061293Z", - "iopub.status.busy": "2023-08-21T02:28:58.061165Z", - "iopub.status.idle": "2023-08-21T02:28:58.067519Z", - "shell.execute_reply": "2023-08-21T02:28:58.067152Z" + "iopub.execute_input": "2023-08-22T06:59:35.857360Z", + "iopub.status.busy": "2023-08-22T06:59:35.856994Z", + "iopub.status.idle": "2023-08-22T06:59:35.868149Z", + "shell.execute_reply": "2023-08-22T06:59:35.867281Z" } }, "outputs": [ @@ -3327,10 +3327,10 @@ "id": "684f8941", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.069340Z", - "iopub.status.busy": "2023-08-21T02:28:58.069223Z", - "iopub.status.idle": "2023-08-21T02:28:58.071737Z", - "shell.execute_reply": "2023-08-21T02:28:58.071247Z" + "iopub.execute_input": "2023-08-22T06:59:35.872302Z", + "iopub.status.busy": "2023-08-22T06:59:35.871992Z", + "iopub.status.idle": "2023-08-22T06:59:35.881501Z", + "shell.execute_reply": "2023-08-22T06:59:35.879490Z" }, "lines_to_next_cell": 2 }, @@ -3371,10 +3371,10 @@ "id": "4d984cf0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.073571Z", - "iopub.status.busy": "2023-08-21T02:28:58.073457Z", - "iopub.status.idle": "2023-08-21T02:28:58.146516Z", - "shell.execute_reply": "2023-08-21T02:28:58.146020Z" + "iopub.execute_input": "2023-08-22T06:59:35.885276Z", + "iopub.status.busy": "2023-08-22T06:59:35.884561Z", + "iopub.status.idle": "2023-08-22T06:59:36.032887Z", + "shell.execute_reply": "2023-08-22T06:59:36.032527Z" }, "lines_to_next_cell": 0 }, @@ -3438,10 +3438,10 @@ "id": "d24f4e50", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.148624Z", - "iopub.status.busy": "2023-08-21T02:28:58.148360Z", - "iopub.status.idle": "2023-08-21T02:28:58.773984Z", - "shell.execute_reply": "2023-08-21T02:28:58.773325Z" + "iopub.execute_input": "2023-08-22T06:59:36.035053Z", + "iopub.status.busy": "2023-08-22T06:59:36.034905Z", + "iopub.status.idle": "2023-08-22T06:59:36.559516Z", + "shell.execute_reply": "2023-08-22T06:59:36.557112Z" } }, "outputs": [ @@ -3535,10 +3535,10 @@ "id": "25152580", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.778052Z", - "iopub.status.busy": "2023-08-21T02:28:58.777754Z", - "iopub.status.idle": "2023-08-21T02:28:58.791505Z", - "shell.execute_reply": "2023-08-21T02:28:58.790362Z" + "iopub.execute_input": "2023-08-22T06:59:36.564551Z", + "iopub.status.busy": "2023-08-22T06:59:36.564196Z", + "iopub.status.idle": "2023-08-22T06:59:36.582460Z", + "shell.execute_reply": "2023-08-22T06:59:36.580635Z" } }, "outputs": [ @@ -3610,10 +3610,10 @@ "id": "b8ea6e08", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.798441Z", - "iopub.status.busy": "2023-08-21T02:28:58.798187Z", - "iopub.status.idle": "2023-08-21T02:28:58.805015Z", - "shell.execute_reply": "2023-08-21T02:28:58.804266Z" + "iopub.execute_input": "2023-08-22T06:59:36.590532Z", + "iopub.status.busy": "2023-08-22T06:59:36.590038Z", + "iopub.status.idle": "2023-08-22T06:59:36.605488Z", + "shell.execute_reply": "2023-08-22T06:59:36.602880Z" }, "lines_to_next_cell": 0 }, @@ -3650,10 +3650,10 @@ "id": "def80d79", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.808423Z", - "iopub.status.busy": "2023-08-21T02:28:58.807929Z", - "iopub.status.idle": "2023-08-21T02:28:58.826147Z", - "shell.execute_reply": "2023-08-21T02:28:58.825308Z" + "iopub.execute_input": "2023-08-22T06:59:36.610362Z", + "iopub.status.busy": "2023-08-22T06:59:36.609709Z", + "iopub.status.idle": "2023-08-22T06:59:36.624089Z", + "shell.execute_reply": "2023-08-22T06:59:36.623200Z" }, "lines_to_next_cell": 0 }, @@ -3676,10 +3676,10 @@ "id": "f899d5ab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.838005Z", - "iopub.status.busy": "2023-08-21T02:28:58.837542Z", - "iopub.status.idle": "2023-08-21T02:28:58.842697Z", - "shell.execute_reply": "2023-08-21T02:28:58.841989Z" + "iopub.execute_input": "2023-08-22T06:59:36.630386Z", + "iopub.status.busy": "2023-08-22T06:59:36.629966Z", + "iopub.status.idle": "2023-08-22T06:59:36.636403Z", + "shell.execute_reply": "2023-08-22T06:59:36.635734Z" } }, "outputs": [ @@ -3718,10 +3718,10 @@ "id": "76f4cea5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.846154Z", - "iopub.status.busy": "2023-08-21T02:28:58.845860Z", - "iopub.status.idle": "2023-08-21T02:28:58.936368Z", - "shell.execute_reply": "2023-08-21T02:28:58.931496Z" + "iopub.execute_input": "2023-08-22T06:59:36.642541Z", + "iopub.status.busy": "2023-08-22T06:59:36.642195Z", + "iopub.status.idle": "2023-08-22T06:59:36.742213Z", + "shell.execute_reply": "2023-08-22T06:59:36.740543Z" } }, "outputs": [ @@ -4122,10 +4122,10 @@ "id": "5778ada8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.941746Z", - "iopub.status.busy": "2023-08-21T02:28:58.941366Z", - "iopub.status.idle": "2023-08-21T02:28:58.948890Z", - "shell.execute_reply": "2023-08-21T02:28:58.947630Z" + "iopub.execute_input": "2023-08-22T06:59:36.748318Z", + "iopub.status.busy": "2023-08-22T06:59:36.747980Z", + "iopub.status.idle": "2023-08-22T06:59:36.753044Z", + "shell.execute_reply": "2023-08-22T06:59:36.752001Z" }, "lines_to_next_cell": 0 }, @@ -4149,10 +4149,10 @@ "id": "c6da14b9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:58.953721Z", - "iopub.status.busy": "2023-08-21T02:28:58.953330Z", - "iopub.status.idle": "2023-08-21T02:28:59.054283Z", - "shell.execute_reply": "2023-08-21T02:28:59.053564Z" + "iopub.execute_input": "2023-08-22T06:59:36.761294Z", + "iopub.status.busy": "2023-08-22T06:59:36.760741Z", + "iopub.status.idle": "2023-08-22T06:59:36.824675Z", + "shell.execute_reply": "2023-08-22T06:59:36.823419Z" } }, "outputs": [ @@ -4559,10 +4559,10 @@ "id": "461d57c5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.063565Z", - "iopub.status.busy": "2023-08-21T02:28:59.063233Z", - "iopub.status.idle": "2023-08-21T02:28:59.071787Z", - "shell.execute_reply": "2023-08-21T02:28:59.070620Z" + "iopub.execute_input": "2023-08-22T06:59:36.832613Z", + "iopub.status.busy": "2023-08-22T06:59:36.831243Z", + "iopub.status.idle": "2023-08-22T06:59:36.839557Z", + "shell.execute_reply": "2023-08-22T06:59:36.838190Z" } }, "outputs": [ @@ -4596,10 +4596,10 @@ "id": "05d33247", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.077767Z", - "iopub.status.busy": "2023-08-21T02:28:59.077090Z", - "iopub.status.idle": "2023-08-21T02:28:59.085265Z", - "shell.execute_reply": "2023-08-21T02:28:59.084291Z" + "iopub.execute_input": "2023-08-22T06:59:36.846635Z", + "iopub.status.busy": "2023-08-22T06:59:36.846336Z", + "iopub.status.idle": "2023-08-22T06:59:36.854114Z", + "shell.execute_reply": "2023-08-22T06:59:36.853108Z" }, "lines_to_next_cell": 2 }, @@ -4639,10 +4639,10 @@ "id": "bee42b38", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.089190Z", - "iopub.status.busy": "2023-08-21T02:28:59.088696Z", - "iopub.status.idle": "2023-08-21T02:28:59.099445Z", - "shell.execute_reply": "2023-08-21T02:28:59.098750Z" + "iopub.execute_input": "2023-08-22T06:59:36.861230Z", + "iopub.status.busy": "2023-08-22T06:59:36.860269Z", + "iopub.status.idle": "2023-08-22T06:59:36.869236Z", + "shell.execute_reply": "2023-08-22T06:59:36.868250Z" }, "lines_to_next_cell": 0 }, @@ -4688,10 +4688,10 @@ "id": "4aa60857", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.103423Z", - "iopub.status.busy": "2023-08-21T02:28:59.103057Z", - "iopub.status.idle": "2023-08-21T02:28:59.112346Z", - "shell.execute_reply": "2023-08-21T02:28:59.111002Z" + "iopub.execute_input": "2023-08-22T06:59:36.876998Z", + "iopub.status.busy": "2023-08-22T06:59:36.876016Z", + "iopub.status.idle": "2023-08-22T06:59:36.883621Z", + "shell.execute_reply": "2023-08-22T06:59:36.882372Z" }, "lines_to_next_cell": 0 }, @@ -4745,10 +4745,10 @@ "id": "894d3e2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.116495Z", - "iopub.status.busy": "2023-08-21T02:28:59.116193Z", - "iopub.status.idle": "2023-08-21T02:28:59.250351Z", - "shell.execute_reply": "2023-08-21T02:28:59.249608Z" + "iopub.execute_input": "2023-08-22T06:59:36.889441Z", + "iopub.status.busy": "2023-08-22T06:59:36.888780Z", + "iopub.status.idle": "2023-08-22T06:59:37.004601Z", + "shell.execute_reply": "2023-08-22T06:59:37.003102Z" } }, "outputs": [ @@ -4787,10 +4787,10 @@ "id": "d636746e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.253708Z", - "iopub.status.busy": "2023-08-21T02:28:59.253326Z", - "iopub.status.idle": "2023-08-21T02:28:59.260644Z", - "shell.execute_reply": "2023-08-21T02:28:59.259501Z" + "iopub.execute_input": "2023-08-22T06:59:37.014352Z", + "iopub.status.busy": "2023-08-22T06:59:37.013713Z", + "iopub.status.idle": "2023-08-22T06:59:37.022133Z", + "shell.execute_reply": "2023-08-22T06:59:37.021189Z" } }, "outputs": [], @@ -4816,10 +4816,10 @@ "id": "ce6a1623", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.264364Z", - "iopub.status.busy": "2023-08-21T02:28:59.264112Z", - "iopub.status.idle": "2023-08-21T02:28:59.384102Z", - "shell.execute_reply": "2023-08-21T02:28:59.383714Z" + "iopub.execute_input": "2023-08-22T06:59:37.030881Z", + "iopub.status.busy": "2023-08-22T06:59:37.030334Z", + "iopub.status.idle": "2023-08-22T06:59:37.126992Z", + "shell.execute_reply": "2023-08-22T06:59:37.126566Z" } }, "outputs": [ @@ -4862,10 +4862,10 @@ "id": "9fb8b759", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.386009Z", - "iopub.status.busy": "2023-08-21T02:28:59.385867Z", - "iopub.status.idle": "2023-08-21T02:28:59.478822Z", - "shell.execute_reply": "2023-08-21T02:28:59.477841Z" + "iopub.execute_input": "2023-08-22T06:59:37.128893Z", + "iopub.status.busy": "2023-08-22T06:59:37.128737Z", + "iopub.status.idle": "2023-08-22T06:59:37.220758Z", + "shell.execute_reply": "2023-08-22T06:59:37.219419Z" } }, "outputs": [], @@ -4887,10 +4887,10 @@ "id": "ee272341", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.482988Z", - "iopub.status.busy": "2023-08-21T02:28:59.482517Z", - "iopub.status.idle": "2023-08-21T02:28:59.506926Z", - "shell.execute_reply": "2023-08-21T02:28:59.506267Z" + "iopub.execute_input": "2023-08-22T06:59:37.227931Z", + "iopub.status.busy": "2023-08-22T06:59:37.227304Z", + "iopub.status.idle": "2023-08-22T06:59:37.252847Z", + "shell.execute_reply": "2023-08-22T06:59:37.251756Z" }, "lines_to_next_cell": 0 }, @@ -4921,10 +4921,10 @@ "id": "1f5bde07", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.510834Z", - "iopub.status.busy": "2023-08-21T02:28:59.510470Z", - "iopub.status.idle": "2023-08-21T02:28:59.792175Z", - "shell.execute_reply": "2023-08-21T02:28:59.791845Z" + "iopub.execute_input": "2023-08-22T06:59:37.263402Z", + "iopub.status.busy": "2023-08-22T06:59:37.262273Z", + "iopub.status.idle": "2023-08-22T06:59:37.482693Z", + "shell.execute_reply": "2023-08-22T06:59:37.479472Z" }, "lines_to_next_cell": 0 }, @@ -4933,7 +4933,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_80940/3779905754.py:8: UserWarning: FixedFormatter should only be used together with FixedLocator\n", + "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_84444/3779905754.py:8: UserWarning: FixedFormatter should only be used together with FixedLocator\n", " ax_hr.set_xticklabels(range(24)[::2], fontsize=20)\n" ] }, @@ -4978,10 +4978,10 @@ "id": "b0bd66a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:28:59.793823Z", - "iopub.status.busy": "2023-08-21T02:28:59.793732Z", - "iopub.status.idle": "2023-08-21T02:28:59.904438Z", - "shell.execute_reply": "2023-08-21T02:28:59.904151Z" + "iopub.execute_input": "2023-08-22T06:59:37.487973Z", + "iopub.status.busy": "2023-08-22T06:59:37.486725Z", + "iopub.status.idle": "2023-08-22T06:59:37.588898Z", + "shell.execute_reply": "2023-08-22T06:59:37.588557Z" } }, "outputs": [ @@ -5031,7 +5031,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -5044,7 +5044,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch05-resample-lab.Rmd b/Ch05-resample-lab.Rmd index 34e2d1d..1733c87 100644 --- a/Ch05-resample-lab.Rmd +++ b/Ch05-resample-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch05-resample-lab.ipynb b/Ch05-resample-lab.ipynb index 85c1f65..2314c64 100644 --- a/Ch05-resample-lab.ipynb +++ b/Ch05-resample-lab.ipynb @@ -29,10 +29,10 @@ "id": "e7712cfe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:01.252458Z", - "iopub.status.busy": "2023-08-21T02:29:01.251970Z", - "iopub.status.idle": "2023-08-21T02:29:02.044045Z", - "shell.execute_reply": "2023-08-21T02:29:02.043730Z" + "iopub.execute_input": "2023-08-22T06:59:40.827828Z", + "iopub.status.busy": "2023-08-22T06:59:40.827725Z", + "iopub.status.idle": "2023-08-22T06:59:41.658013Z", + "shell.execute_reply": "2023-08-22T06:59:41.657645Z" }, "lines_to_next_cell": 2 }, @@ -61,10 +61,10 @@ "id": "21c2ed4f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.045927Z", - "iopub.status.busy": "2023-08-21T02:29:02.045761Z", - "iopub.status.idle": "2023-08-21T02:29:02.047761Z", - "shell.execute_reply": "2023-08-21T02:29:02.047491Z" + "iopub.execute_input": "2023-08-22T06:59:41.659951Z", + "iopub.status.busy": "2023-08-22T06:59:41.659798Z", + "iopub.status.idle": "2023-08-22T06:59:41.661744Z", + "shell.execute_reply": "2023-08-22T06:59:41.661437Z" }, "lines_to_next_cell": 2 }, @@ -105,10 +105,10 @@ "id": "8af59641", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.049239Z", - "iopub.status.busy": "2023-08-21T02:29:02.049145Z", - "iopub.status.idle": "2023-08-21T02:29:02.055524Z", - "shell.execute_reply": "2023-08-21T02:29:02.055162Z" + "iopub.execute_input": "2023-08-22T06:59:41.663216Z", + "iopub.status.busy": "2023-08-22T06:59:41.663117Z", + "iopub.status.idle": "2023-08-22T06:59:41.667680Z", + "shell.execute_reply": "2023-08-22T06:59:41.667343Z" } }, "outputs": [], @@ -133,10 +133,10 @@ "id": "d9b0b7c8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.057278Z", - "iopub.status.busy": "2023-08-21T02:29:02.057182Z", - "iopub.status.idle": "2023-08-21T02:29:02.062537Z", - "shell.execute_reply": "2023-08-21T02:29:02.062265Z" + "iopub.execute_input": "2023-08-22T06:59:41.669501Z", + "iopub.status.busy": "2023-08-22T06:59:41.669395Z", + "iopub.status.idle": "2023-08-22T06:59:41.674461Z", + "shell.execute_reply": "2023-08-22T06:59:41.674176Z" } }, "outputs": [], @@ -163,10 +163,10 @@ "id": "3e77d831", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.064056Z", - "iopub.status.busy": "2023-08-21T02:29:02.063966Z", - "iopub.status.idle": "2023-08-21T02:29:02.068279Z", - "shell.execute_reply": "2023-08-21T02:29:02.068024Z" + "iopub.execute_input": "2023-08-22T06:59:41.676257Z", + "iopub.status.busy": "2023-08-22T06:59:41.676134Z", + "iopub.status.idle": "2023-08-22T06:59:41.680728Z", + "shell.execute_reply": "2023-08-22T06:59:41.680456Z" } }, "outputs": [ @@ -207,10 +207,10 @@ "id": "0aa4bfcc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.069789Z", - "iopub.status.busy": "2023-08-21T02:29:02.069682Z", - "iopub.status.idle": "2023-08-21T02:29:02.071953Z", - "shell.execute_reply": "2023-08-21T02:29:02.071703Z" + "iopub.execute_input": "2023-08-22T06:59:41.682418Z", + "iopub.status.busy": "2023-08-22T06:59:41.682304Z", + "iopub.status.idle": "2023-08-22T06:59:41.684531Z", + "shell.execute_reply": "2023-08-22T06:59:41.684276Z" } }, "outputs": [], @@ -250,10 +250,10 @@ "id": "a0dbd55f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.073322Z", - "iopub.status.busy": "2023-08-21T02:29:02.073229Z", - "iopub.status.idle": "2023-08-21T02:29:02.088464Z", - "shell.execute_reply": "2023-08-21T02:29:02.088192Z" + "iopub.execute_input": "2023-08-22T06:59:41.686084Z", + "iopub.status.busy": "2023-08-22T06:59:41.685977Z", + "iopub.status.idle": "2023-08-22T06:59:41.701551Z", + "shell.execute_reply": "2023-08-22T06:59:41.701265Z" } }, "outputs": [ @@ -294,10 +294,10 @@ "id": "885136a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.089889Z", - "iopub.status.busy": "2023-08-21T02:29:02.089804Z", - "iopub.status.idle": "2023-08-21T02:29:02.105353Z", - "shell.execute_reply": "2023-08-21T02:29:02.105089Z" + "iopub.execute_input": "2023-08-22T06:59:41.703198Z", + "iopub.status.busy": "2023-08-22T06:59:41.703080Z", + "iopub.status.idle": "2023-08-22T06:59:41.719142Z", + "shell.execute_reply": "2023-08-22T06:59:41.718778Z" } }, "outputs": [ @@ -377,10 +377,10 @@ "id": "6d957d8c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:02.106979Z", - "iopub.status.busy": "2023-08-21T02:29:02.106884Z", - "iopub.status.idle": "2023-08-21T02:29:03.184550Z", - "shell.execute_reply": "2023-08-21T02:29:03.184259Z" + "iopub.execute_input": "2023-08-22T06:59:41.721067Z", + "iopub.status.busy": "2023-08-22T06:59:41.720935Z", + "iopub.status.idle": "2023-08-22T06:59:42.841536Z", + "shell.execute_reply": "2023-08-22T06:59:42.841242Z" }, "lines_to_next_cell": 0 }, @@ -445,10 +445,10 @@ "id": "e2b5ce95", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.186226Z", - "iopub.status.busy": "2023-08-21T02:29:03.186108Z", - "iopub.status.idle": "2023-08-21T02:29:03.782413Z", - "shell.execute_reply": "2023-08-21T02:29:03.782122Z" + "iopub.execute_input": "2023-08-22T06:59:42.843438Z", + "iopub.status.busy": "2023-08-22T06:59:42.843308Z", + "iopub.status.idle": "2023-08-22T06:59:43.408832Z", + "shell.execute_reply": "2023-08-22T06:59:43.408347Z" }, "lines_to_next_cell": 0 }, @@ -502,10 +502,10 @@ "id": "1dda1bd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.783997Z", - "iopub.status.busy": "2023-08-21T02:29:03.783886Z", - "iopub.status.idle": "2023-08-21T02:29:03.786132Z", - "shell.execute_reply": "2023-08-21T02:29:03.785881Z" + "iopub.execute_input": "2023-08-22T06:59:43.411083Z", + "iopub.status.busy": "2023-08-22T06:59:43.410940Z", + "iopub.status.idle": "2023-08-22T06:59:43.413889Z", + "shell.execute_reply": "2023-08-22T06:59:43.413456Z" } }, "outputs": [ @@ -544,10 +544,10 @@ "id": "fb25fa70", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.787622Z", - "iopub.status.busy": "2023-08-21T02:29:03.787525Z", - "iopub.status.idle": "2023-08-21T02:29:03.809671Z", - "shell.execute_reply": "2023-08-21T02:29:03.809398Z" + "iopub.execute_input": "2023-08-22T06:59:43.415865Z", + "iopub.status.busy": "2023-08-22T06:59:43.415724Z", + "iopub.status.idle": "2023-08-22T06:59:43.437716Z", + "shell.execute_reply": "2023-08-22T06:59:43.437344Z" }, "lines_to_next_cell": 0 }, @@ -609,10 +609,10 @@ "id": "d78795cd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.811123Z", - "iopub.status.busy": "2023-08-21T02:29:03.811046Z", - "iopub.status.idle": "2023-08-21T02:29:03.817840Z", - "shell.execute_reply": "2023-08-21T02:29:03.817582Z" + "iopub.execute_input": "2023-08-22T06:59:43.439940Z", + "iopub.status.busy": "2023-08-22T06:59:43.439783Z", + "iopub.status.idle": "2023-08-22T06:59:43.447580Z", + "shell.execute_reply": "2023-08-22T06:59:43.447286Z" }, "lines_to_next_cell": 2 }, @@ -653,10 +653,10 @@ "id": "0407ad56", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.819308Z", - "iopub.status.busy": "2023-08-21T02:29:03.819228Z", - "iopub.status.idle": "2023-08-21T02:29:03.851921Z", - "shell.execute_reply": "2023-08-21T02:29:03.851658Z" + "iopub.execute_input": "2023-08-22T06:59:43.449591Z", + "iopub.status.busy": "2023-08-22T06:59:43.449452Z", + "iopub.status.idle": "2023-08-22T06:59:43.483638Z", + "shell.execute_reply": "2023-08-22T06:59:43.483222Z" } }, "outputs": [ @@ -727,10 +727,10 @@ "id": "f04f15bd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.853415Z", - "iopub.status.busy": "2023-08-21T02:29:03.853334Z", - "iopub.status.idle": "2023-08-21T02:29:03.857370Z", - "shell.execute_reply": "2023-08-21T02:29:03.857115Z" + "iopub.execute_input": "2023-08-22T06:59:43.485600Z", + "iopub.status.busy": "2023-08-22T06:59:43.485469Z", + "iopub.status.idle": "2023-08-22T06:59:43.488993Z", + "shell.execute_reply": "2023-08-22T06:59:43.488698Z" }, "lines_to_next_cell": 0 }, @@ -761,10 +761,10 @@ "id": "f98c0323", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.858828Z", - "iopub.status.busy": "2023-08-21T02:29:03.858753Z", - "iopub.status.idle": "2023-08-21T02:29:03.861443Z", - "shell.execute_reply": "2023-08-21T02:29:03.861198Z" + "iopub.execute_input": "2023-08-22T06:59:43.490952Z", + "iopub.status.busy": "2023-08-22T06:59:43.490857Z", + "iopub.status.idle": "2023-08-22T06:59:43.494027Z", + "shell.execute_reply": "2023-08-22T06:59:43.493695Z" } }, "outputs": [ @@ -800,10 +800,10 @@ "id": "bcd40175", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.862933Z", - "iopub.status.busy": "2023-08-21T02:29:03.862830Z", - "iopub.status.idle": "2023-08-21T02:29:03.865766Z", - "shell.execute_reply": "2023-08-21T02:29:03.865514Z" + "iopub.execute_input": "2023-08-22T06:59:43.495852Z", + "iopub.status.busy": "2023-08-22T06:59:43.495690Z", + "iopub.status.idle": "2023-08-22T06:59:43.498806Z", + "shell.execute_reply": "2023-08-22T06:59:43.498500Z" }, "lines_to_next_cell": 2 }, @@ -843,10 +843,10 @@ "id": "ab6602cd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.867170Z", - "iopub.status.busy": "2023-08-21T02:29:03.867072Z", - "iopub.status.idle": "2023-08-21T02:29:03.869326Z", - "shell.execute_reply": "2023-08-21T02:29:03.869094Z" + "iopub.execute_input": "2023-08-22T06:59:43.500527Z", + "iopub.status.busy": "2023-08-22T06:59:43.500424Z", + "iopub.status.idle": "2023-08-22T06:59:43.502886Z", + "shell.execute_reply": "2023-08-22T06:59:43.502621Z" }, "lines_to_next_cell": 0 }, @@ -888,10 +888,10 @@ "id": "4a323513", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:03.870755Z", - "iopub.status.busy": "2023-08-21T02:29:03.870664Z", - "iopub.status.idle": "2023-08-21T02:29:04.157907Z", - "shell.execute_reply": "2023-08-21T02:29:04.157623Z" + "iopub.execute_input": "2023-08-22T06:59:43.504576Z", + "iopub.status.busy": "2023-08-22T06:59:43.504471Z", + "iopub.status.idle": "2023-08-22T06:59:43.776972Z", + "shell.execute_reply": "2023-08-22T06:59:43.776638Z" } }, "outputs": [ @@ -954,10 +954,10 @@ "id": "0220f3af", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:04.159500Z", - "iopub.status.busy": "2023-08-21T02:29:04.159419Z", - "iopub.status.idle": "2023-08-21T02:29:04.161332Z", - "shell.execute_reply": "2023-08-21T02:29:04.161073Z" + "iopub.execute_input": "2023-08-22T06:59:43.778737Z", + "iopub.status.busy": "2023-08-22T06:59:43.778622Z", + "iopub.status.idle": "2023-08-22T06:59:43.780660Z", + "shell.execute_reply": "2023-08-22T06:59:43.780373Z" }, "lines_to_next_cell": 0 }, @@ -989,10 +989,10 @@ "id": "62037dcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:04.162950Z", - "iopub.status.busy": "2023-08-21T02:29:04.162849Z", - "iopub.status.idle": "2023-08-21T02:29:04.164486Z", - "shell.execute_reply": "2023-08-21T02:29:04.164241Z" + "iopub.execute_input": "2023-08-22T06:59:43.782304Z", + "iopub.status.busy": "2023-08-22T06:59:43.782178Z", + "iopub.status.idle": "2023-08-22T06:59:43.783926Z", + "shell.execute_reply": "2023-08-22T06:59:43.783681Z" }, "lines_to_next_cell": 0 }, @@ -1022,10 +1022,10 @@ "id": "b8bdb7a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:04.165879Z", - "iopub.status.busy": "2023-08-21T02:29:04.165798Z", - "iopub.status.idle": "2023-08-21T02:29:04.194029Z", - "shell.execute_reply": "2023-08-21T02:29:04.193764Z" + "iopub.execute_input": "2023-08-22T06:59:43.785584Z", + "iopub.status.busy": "2023-08-22T06:59:43.785479Z", + "iopub.status.idle": "2023-08-22T06:59:43.814180Z", + "shell.execute_reply": "2023-08-22T06:59:43.813871Z" }, "lines_to_next_cell": 0 }, @@ -1073,10 +1073,10 @@ "id": "36808258", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:04.195612Z", - "iopub.status.busy": "2023-08-21T02:29:04.195529Z", - "iopub.status.idle": "2023-08-21T02:29:06.747175Z", - "shell.execute_reply": "2023-08-21T02:29:06.746638Z" + "iopub.execute_input": "2023-08-22T06:59:43.815884Z", + "iopub.status.busy": "2023-08-22T06:59:43.815750Z", + "iopub.status.idle": "2023-08-22T06:59:46.317022Z", + "shell.execute_reply": "2023-08-22T06:59:46.316748Z" }, "lines_to_next_cell": 2 }, @@ -1123,10 +1123,10 @@ "id": "c9aea297", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:06.749614Z", - "iopub.status.busy": "2023-08-21T02:29:06.749433Z", - "iopub.status.idle": "2023-08-21T02:29:06.812583Z", - "shell.execute_reply": "2023-08-21T02:29:06.812298Z" + "iopub.execute_input": "2023-08-22T06:59:46.318852Z", + "iopub.status.busy": "2023-08-22T06:59:46.318744Z", + "iopub.status.idle": "2023-08-22T06:59:46.401268Z", + "shell.execute_reply": "2023-08-22T06:59:46.400928Z" }, "lines_to_next_cell": 2 }, @@ -1195,10 +1195,10 @@ "id": "79c56529", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:06.814267Z", - "iopub.status.busy": "2023-08-21T02:29:06.814125Z", - "iopub.status.idle": "2023-08-21T02:29:10.162177Z", - "shell.execute_reply": "2023-08-21T02:29:10.161855Z" + "iopub.execute_input": "2023-08-22T06:59:46.403009Z", + "iopub.status.busy": "2023-08-22T06:59:46.402852Z", + "iopub.status.idle": "2023-08-22T06:59:50.039894Z", + "shell.execute_reply": "2023-08-22T06:59:50.039566Z" } }, "outputs": [ @@ -1238,10 +1238,10 @@ "id": "4d0b4edc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:10.163852Z", - "iopub.status.busy": "2023-08-21T02:29:10.163742Z", - "iopub.status.idle": "2023-08-21T02:29:10.173834Z", - "shell.execute_reply": "2023-08-21T02:29:10.173578Z" + "iopub.execute_input": "2023-08-22T06:59:50.041629Z", + "iopub.status.busy": "2023-08-22T06:59:50.041514Z", + "iopub.status.idle": "2023-08-22T06:59:50.052046Z", + "shell.execute_reply": "2023-08-22T06:59:50.051690Z" }, "lines_to_next_cell": 0 }, @@ -1279,7 +1279,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -1292,7 +1292,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch06-varselect-lab.Rmd b/Ch06-varselect-lab.Rmd index 9396072..4979e46 100644 --- a/Ch06-varselect-lab.Rmd +++ b/Ch06-varselect-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch06-varselect-lab.ipynb b/Ch06-varselect-lab.ipynb index f3342ea..94ddd1b 100644 --- a/Ch06-varselect-lab.ipynb +++ b/Ch06-varselect-lab.ipynb @@ -26,10 +26,10 @@ "id": "638bdae9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:11.258581Z", - "iopub.status.busy": "2023-08-21T02:29:11.258299Z", - "iopub.status.idle": "2023-08-21T02:29:12.282137Z", - "shell.execute_reply": "2023-08-21T02:29:12.281824Z" + "iopub.execute_input": "2023-08-22T06:59:53.093245Z", + "iopub.status.busy": "2023-08-22T06:59:53.093143Z", + "iopub.status.idle": "2023-08-22T06:59:54.054493Z", + "shell.execute_reply": "2023-08-22T06:59:54.054110Z" } }, "outputs": [], @@ -61,10 +61,10 @@ "id": "c4b3398b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:12.284057Z", - "iopub.status.busy": "2023-08-21T02:29:12.283895Z", - "iopub.status.idle": "2023-08-21T02:29:14.091024Z", - "shell.execute_reply": "2023-08-21T02:29:14.090709Z" + "iopub.execute_input": "2023-08-22T06:59:54.056594Z", + "iopub.status.busy": "2023-08-22T06:59:54.056412Z", + "iopub.status.idle": "2023-08-22T06:59:56.004484Z", + "shell.execute_reply": "2023-08-22T06:59:56.004082Z" }, "lines_to_next_cell": 0 }, @@ -73,11 +73,11 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: l0bnb in /Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages (1.0.0)\r\n", - "Requirement already satisfied: numpy>=1.18.1 in /Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages (from l0bnb) (1.24.2)\r\n", - "Requirement already satisfied: scipy>=1.4.1 in /Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages (from l0bnb) (1.11.1)\r\n", - "Requirement already satisfied: numba>=0.53.1 in /Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages (from l0bnb) (0.57.1)\r\n", - "Requirement already satisfied: llvmlite<0.41,>=0.40.0dev0 in /Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages (from numba>=0.53.1->l0bnb) (0.40.1)\r\n" + "Requirement already satisfied: l0bnb in /Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages (1.0.0)\r\n", + "Requirement already satisfied: numpy>=1.18.1 in /Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages (from l0bnb) (1.24.2)\r\n", + "Requirement already satisfied: scipy>=1.4.1 in /Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages (from l0bnb) (1.11.1)\r\n", + "Requirement already satisfied: numba>=0.53.1 in /Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages (from l0bnb) (0.57.1)\r\n", + "Requirement already satisfied: llvmlite<0.41,>=0.40.0dev0 in /Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages (from numba>=0.53.1->l0bnb) (0.40.1)\r\n" ] } ], @@ -125,10 +125,10 @@ "id": "18d03122", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.092873Z", - "iopub.status.busy": "2023-08-21T02:29:14.092763Z", - "iopub.status.idle": "2023-08-21T02:29:14.099984Z", - "shell.execute_reply": "2023-08-21T02:29:14.099726Z" + "iopub.execute_input": "2023-08-22T06:59:56.006401Z", + "iopub.status.busy": "2023-08-22T06:59:56.006276Z", + "iopub.status.idle": "2023-08-22T06:59:56.013280Z", + "shell.execute_reply": "2023-08-22T06:59:56.012957Z" } }, "outputs": [ @@ -164,10 +164,10 @@ "id": "87a4ba00", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.101494Z", - "iopub.status.busy": "2023-08-21T02:29:14.101409Z", - "iopub.status.idle": "2023-08-21T02:29:14.104265Z", - "shell.execute_reply": "2023-08-21T02:29:14.104009Z" + "iopub.execute_input": "2023-08-22T06:59:56.014992Z", + "iopub.status.busy": "2023-08-22T06:59:56.014883Z", + "iopub.status.idle": "2023-08-22T06:59:56.017852Z", + "shell.execute_reply": "2023-08-22T06:59:56.017594Z" }, "lines_to_next_cell": 2 }, @@ -205,10 +205,10 @@ "id": "97d6b69c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.105644Z", - "iopub.status.busy": "2023-08-21T02:29:14.105549Z", - "iopub.status.idle": "2023-08-21T02:29:14.107583Z", - "shell.execute_reply": "2023-08-21T02:29:14.107310Z" + "iopub.execute_input": "2023-08-22T06:59:56.019330Z", + "iopub.status.busy": "2023-08-22T06:59:56.019227Z", + "iopub.status.idle": "2023-08-22T06:59:56.021261Z", + "shell.execute_reply": "2023-08-22T06:59:56.020923Z" }, "lines_to_next_cell": 0 }, @@ -237,10 +237,10 @@ "id": "2575e116", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.109006Z", - "iopub.status.busy": "2023-08-21T02:29:14.108924Z", - "iopub.status.idle": "2023-08-21T02:29:14.129547Z", - "shell.execute_reply": "2023-08-21T02:29:14.129253Z" + "iopub.execute_input": "2023-08-22T06:59:56.023126Z", + "iopub.status.busy": "2023-08-22T06:59:56.023002Z", + "iopub.status.idle": "2023-08-22T06:59:56.043909Z", + "shell.execute_reply": "2023-08-22T06:59:56.043598Z" } }, "outputs": [], @@ -265,10 +265,10 @@ "id": "4cfae1c0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.131136Z", - "iopub.status.busy": "2023-08-21T02:29:14.131050Z", - "iopub.status.idle": "2023-08-21T02:29:14.132859Z", - "shell.execute_reply": "2023-08-21T02:29:14.132610Z" + "iopub.execute_input": "2023-08-22T06:59:56.046001Z", + "iopub.status.busy": "2023-08-22T06:59:56.045882Z", + "iopub.status.idle": "2023-08-22T06:59:56.047752Z", + "shell.execute_reply": "2023-08-22T06:59:56.047459Z" }, "lines_to_next_cell": 0 }, @@ -303,10 +303,10 @@ "id": "98b62676", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.134396Z", - "iopub.status.busy": "2023-08-21T02:29:14.134312Z", - "iopub.status.idle": "2023-08-21T02:29:14.136156Z", - "shell.execute_reply": "2023-08-21T02:29:14.135905Z" + "iopub.execute_input": "2023-08-22T06:59:56.049394Z", + "iopub.status.busy": "2023-08-22T06:59:56.049284Z", + "iopub.status.idle": "2023-08-22T06:59:56.051180Z", + "shell.execute_reply": "2023-08-22T06:59:56.050841Z" } }, "outputs": [], @@ -334,10 +334,10 @@ "id": "3d1bd25a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:14.137540Z", - "iopub.status.busy": "2023-08-21T02:29:14.137462Z", - "iopub.status.idle": "2023-08-21T02:29:15.145790Z", - "shell.execute_reply": "2023-08-21T02:29:15.145505Z" + "iopub.execute_input": "2023-08-22T06:59:56.053484Z", + "iopub.status.busy": "2023-08-22T06:59:56.053197Z", + "iopub.status.idle": "2023-08-22T06:59:57.116576Z", + "shell.execute_reply": "2023-08-22T06:59:57.116202Z" } }, "outputs": [ @@ -391,10 +391,10 @@ "id": "b25dfa6c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:15.147492Z", - "iopub.status.busy": "2023-08-21T02:29:15.147368Z", - "iopub.status.idle": "2023-08-21T02:29:15.796510Z", - "shell.execute_reply": "2023-08-21T02:29:15.796218Z" + "iopub.execute_input": "2023-08-22T06:59:57.118521Z", + "iopub.status.busy": "2023-08-22T06:59:57.118381Z", + "iopub.status.idle": "2023-08-22T06:59:57.757333Z", + "shell.execute_reply": "2023-08-22T06:59:57.756933Z" } }, "outputs": [ @@ -457,10 +457,10 @@ "id": "0ef3f82d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:15.798342Z", - "iopub.status.busy": "2023-08-21T02:29:15.798201Z", - "iopub.status.idle": "2023-08-21T02:29:15.800265Z", - "shell.execute_reply": "2023-08-21T02:29:15.799952Z" + "iopub.execute_input": "2023-08-22T06:59:57.759379Z", + "iopub.status.busy": "2023-08-22T06:59:57.759234Z", + "iopub.status.idle": "2023-08-22T06:59:57.761149Z", + "shell.execute_reply": "2023-08-22T06:59:57.760820Z" } }, "outputs": [], @@ -485,10 +485,10 @@ "id": "d4a8cf16", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:15.802048Z", - "iopub.status.busy": "2023-08-21T02:29:15.801932Z", - "iopub.status.idle": "2023-08-21T02:29:16.552146Z", - "shell.execute_reply": "2023-08-21T02:29:16.550354Z" + "iopub.execute_input": "2023-08-22T06:59:57.762826Z", + "iopub.status.busy": "2023-08-22T06:59:57.762724Z", + "iopub.status.idle": "2023-08-22T06:59:58.384792Z", + "shell.execute_reply": "2023-08-22T06:59:58.384441Z" }, "lines_to_next_cell": 2 }, @@ -530,10 +530,10 @@ "id": "ce40a9ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:16.556568Z", - "iopub.status.busy": "2023-08-21T02:29:16.555939Z", - "iopub.status.idle": "2023-08-21T02:29:16.866266Z", - "shell.execute_reply": "2023-08-21T02:29:16.865469Z" + "iopub.execute_input": "2023-08-22T06:59:58.386657Z", + "iopub.status.busy": "2023-08-22T06:59:58.386521Z", + "iopub.status.idle": "2023-08-22T06:59:58.504180Z", + "shell.execute_reply": "2023-08-22T06:59:58.503223Z" }, "lines_to_next_cell": 0 }, @@ -599,10 +599,10 @@ "id": "c7416ff6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:16.869059Z", - "iopub.status.busy": "2023-08-21T02:29:16.868880Z", - "iopub.status.idle": "2023-08-21T02:29:20.216833Z", - "shell.execute_reply": "2023-08-21T02:29:20.216545Z" + "iopub.execute_input": "2023-08-22T06:59:58.509147Z", + "iopub.status.busy": "2023-08-22T06:59:58.508897Z", + "iopub.status.idle": "2023-08-22T07:00:01.677521Z", + "shell.execute_reply": "2023-08-22T07:00:01.677198Z" }, "lines_to_next_cell": 0 }, @@ -653,10 +653,10 @@ "id": "a2ae089b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:20.218513Z", - "iopub.status.busy": "2023-08-21T02:29:20.218396Z", - "iopub.status.idle": "2023-08-21T02:29:20.221477Z", - "shell.execute_reply": "2023-08-21T02:29:20.221172Z" + "iopub.execute_input": "2023-08-22T07:00:01.679228Z", + "iopub.status.busy": "2023-08-22T07:00:01.679111Z", + "iopub.status.idle": "2023-08-22T07:00:01.681995Z", + "shell.execute_reply": "2023-08-22T07:00:01.681709Z" } }, "outputs": [ @@ -695,10 +695,10 @@ "id": "1681a9db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:20.223098Z", - "iopub.status.busy": "2023-08-21T02:29:20.223012Z", - "iopub.status.idle": "2023-08-21T02:29:20.308656Z", - "shell.execute_reply": "2023-08-21T02:29:20.308356Z" + "iopub.execute_input": "2023-08-22T07:00:01.683590Z", + "iopub.status.busy": "2023-08-22T07:00:01.683477Z", + "iopub.status.idle": "2023-08-22T07:00:01.759136Z", + "shell.execute_reply": "2023-08-22T07:00:01.758804Z" } }, "outputs": [ @@ -741,10 +741,10 @@ "id": "5764b0ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:20.310366Z", - "iopub.status.busy": "2023-08-21T02:29:20.310242Z", - "iopub.status.idle": "2023-08-21T02:29:20.927992Z", - "shell.execute_reply": "2023-08-21T02:29:20.927702Z" + "iopub.execute_input": "2023-08-22T07:00:01.760831Z", + "iopub.status.busy": "2023-08-22T07:00:01.760716Z", + "iopub.status.idle": "2023-08-22T07:00:02.384829Z", + "shell.execute_reply": "2023-08-22T07:00:02.384507Z" }, "lines_to_next_cell": 0 }, @@ -775,10 +775,10 @@ "id": "d76f3d3a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:20.929777Z", - "iopub.status.busy": "2023-08-21T02:29:20.929678Z", - "iopub.status.idle": "2023-08-21T02:29:21.021186Z", - "shell.execute_reply": "2023-08-21T02:29:21.020858Z" + "iopub.execute_input": "2023-08-22T07:00:02.387276Z", + "iopub.status.busy": "2023-08-22T07:00:02.386879Z", + "iopub.status.idle": "2023-08-22T07:00:02.468255Z", + "shell.execute_reply": "2023-08-22T07:00:02.467684Z" }, "lines_to_next_cell": 2 }, @@ -828,10 +828,10 @@ "id": "ed25c2d4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:21.022941Z", - "iopub.status.busy": "2023-08-21T02:29:21.022836Z", - "iopub.status.idle": "2023-08-21T02:29:21.043228Z", - "shell.execute_reply": "2023-08-21T02:29:21.042926Z" + "iopub.execute_input": "2023-08-22T07:00:02.470331Z", + "iopub.status.busy": "2023-08-22T07:00:02.470178Z", + "iopub.status.idle": "2023-08-22T07:00:02.491378Z", + "shell.execute_reply": "2023-08-22T07:00:02.491048Z" }, "lines_to_next_cell": 0 }, @@ -857,10 +857,10 @@ "id": "31e99e02", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:21.044846Z", - "iopub.status.busy": "2023-08-21T02:29:21.044745Z", - "iopub.status.idle": "2023-08-21T02:29:23.376539Z", - "shell.execute_reply": "2023-08-21T02:29:23.376256Z" + "iopub.execute_input": "2023-08-22T07:00:02.493549Z", + "iopub.status.busy": "2023-08-22T07:00:02.493371Z", + "iopub.status.idle": "2023-08-22T07:00:07.838494Z", + "shell.execute_reply": "2023-08-22T07:00:07.838064Z" } }, "outputs": [ @@ -912,10 +912,10 @@ "id": "214d0f23", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.378603Z", - "iopub.status.busy": "2023-08-21T02:29:23.378467Z", - "iopub.status.idle": "2023-08-21T02:29:23.380970Z", - "shell.execute_reply": "2023-08-21T02:29:23.380691Z" + "iopub.execute_input": "2023-08-22T07:00:07.840443Z", + "iopub.status.busy": "2023-08-22T07:00:07.840298Z", + "iopub.status.idle": "2023-08-22T07:00:07.842812Z", + "shell.execute_reply": "2023-08-22T07:00:07.842557Z" }, "lines_to_next_cell": 0 }, @@ -977,10 +977,10 @@ "id": "ca7469fb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.382549Z", - "iopub.status.busy": "2023-08-21T02:29:23.382432Z", - "iopub.status.idle": "2023-08-21T02:29:23.450752Z", - "shell.execute_reply": "2023-08-21T02:29:23.450471Z" + "iopub.execute_input": "2023-08-22T07:00:07.844529Z", + "iopub.status.busy": "2023-08-22T07:00:07.844419Z", + "iopub.status.idle": "2023-08-22T07:00:07.900374Z", + "shell.execute_reply": "2023-08-22T07:00:07.899998Z" }, "lines_to_next_cell": 0 }, @@ -989,405 +989,405 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64428165.36474803, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64428165.36474803, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64428069.135193564, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64428069.135193564, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427947.709570706, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427947.709570706, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427794.49147929, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427794.49147929, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427601.15801401, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427601.15801401, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427357.208145335, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427357.208145335, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427049.39312406, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64427049.39312406, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64426660.99818401, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64426660.99818401, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64426170.936871, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64426170.936871, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64425552.60935727, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64425552.60935727, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64424772.46361481, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64424772.46361481, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64423788.18271286, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64423788.18271286, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64422546.402046196, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64422546.402046196, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64420979.836119056, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64420979.836119056, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64419003.66458898, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64419003.66458898, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64416510.99045885, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64416510.99045885, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64413367.138336174, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64413367.138336174, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64409402.50628651, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64409402.50628651, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64404403.61988451, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64404403.61988451, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64398101.96098537, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64398101.96098537, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64390160.05690916, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64390160.05690916, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64380154.22050254, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64380154.22050254, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64367553.23368757, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64367553.23368757, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64351692.17811265, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64351692.17811265, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64331740.55708714, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64331740.55708714, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64306663.85815487, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64306663.85815487, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64275177.83204634, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64275177.83204634, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64235695.09903011, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64235695.09903011, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64186264.367964305, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64186264.367964305, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64124503.75014188, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64124503.75014188, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64047531.61120446, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 64047531.61120446, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63951901.41718618, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63951901.41718618, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63833551.374737374, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63833551.374737374, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63687785.48493876, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63687785.48493876, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63509309.685659595, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63509309.685659595, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63292354.02159835, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63292354.02159835, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63030916.89990266, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 63030916.89990266, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 62719166.29703928, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 62719166.29703928, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 62352019.354438685, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 62352019.354438685, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61925889.875772476, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61925889.875772476, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61439539.89859062, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61439539.89859062, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60894903.039219804, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60894903.039219804, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60297684.607476555, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60297684.607476555, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59657521.16598571, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59657521.16598571, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58987535.05051082, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58987535.05051082, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58303257.30893663, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58303257.30893663, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 57621079.35589412, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 57621079.35589412, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56956552.362989165, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56956552.362989165, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56322906.14367991, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56322906.14367991, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 55730077.752803415, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 55730077.752803415, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 55184365.56435659, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 55184365.56435659, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 54688640.34364891, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 54688640.34364891, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 54242923.97107168, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 54242923.97107168, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53845116.92275897, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53845116.92275897, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53491699.68250863, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53491699.68250863, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53178310.76477921, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 53178310.76477921, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52900177.09233121, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52900177.09233121, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52652419.277090184, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52652419.277090184, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52430270.98847021, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52430270.98847021, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52229246.49376922, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52229246.49376922, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52045276.251295805, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 52045276.251295805, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51874817.10761593, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51874817.10761593, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51714935.480955906, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51714935.480955906, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51563358.53546297, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51563358.53546297, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51418487.867063135, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51418487.867063135, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51279371.6204245, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51279371.6204245, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51145634.32609803, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51145634.32609803, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51017369.002990715, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 51017369.002990715, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50895002.06601913, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50895002.06601913, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50779146.50047491, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50779146.50047491, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50670461.07683641, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50670461.07683641, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50569532.273268215, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50569532.273268215, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50476790.981010474, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50476790.981010474, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50392468.80539254, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50392468.80539254, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50316590.69087247, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50316590.69087247, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50248994.15213543, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50248994.15213543, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50189362.60450393, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50189362.60450393, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50137261.69126286, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50137261.69126286, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50092171.83247456, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50092171.83247456, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50053515.0816231, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50053515.0816231, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50020677.61213055, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 50020677.61213055, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49993029.950182974, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49993029.950182974, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49969946.08142715, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49969946.08142715, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49950821.12032734, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49950821.12032734, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49935086.375795275, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49935086.375795275, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49922220.65542218, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49922220.65542218, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49911757.23721766, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49911757.23721766, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49903286.65921827, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49903286.65921827, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49896456.01861009, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49896456.01861009, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49890965.72520982, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49890965.72520982, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49886564.66025478, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49886564.66025478, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49883044.54819732, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49883044.54819732, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49880234.147845834, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49880234.147845834, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49877993.670362815, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49877993.670362815, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49876209.66553557, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49876209.66553557, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49874790.493499264, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49874790.493499264, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49873662.41408341, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49873662.41408341, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49872766.272819825, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49872766.272819825, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49872054.73300109, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49872054.73300109, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49871489.989638604, tolerance: 12885.7065737425\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 49871489.989638604, tolerance: 12885.7065737425\n", " model = cd_fast.enet_coordinate_descent_gram(\n" ] }, @@ -1444,10 +1444,10 @@ "id": "a5b4b3a7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.452873Z", - "iopub.status.busy": "2023-08-21T02:29:23.452757Z", - "iopub.status.idle": "2023-08-21T02:29:23.462335Z", - "shell.execute_reply": "2023-08-21T02:29:23.462029Z" + "iopub.execute_input": "2023-08-22T07:00:07.902654Z", + "iopub.status.busy": "2023-08-22T07:00:07.902513Z", + "iopub.status.idle": "2023-08-22T07:00:07.912659Z", + "shell.execute_reply": "2023-08-22T07:00:07.912286Z" } }, "outputs": [ @@ -1866,10 +1866,10 @@ "id": "ffdcd0c6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.463956Z", - "iopub.status.busy": "2023-08-21T02:29:23.463846Z", - "iopub.status.idle": "2023-08-21T02:29:23.670285Z", - "shell.execute_reply": "2023-08-21T02:29:23.669949Z" + "iopub.execute_input": "2023-08-22T07:00:07.914460Z", + "iopub.status.busy": "2023-08-22T07:00:07.914335Z", + "iopub.status.idle": "2023-08-22T07:00:08.105311Z", + "shell.execute_reply": "2023-08-22T07:00:08.104857Z" }, "lines_to_next_cell": 0 }, @@ -1911,10 +1911,10 @@ "id": "e60d63d3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.671975Z", - "iopub.status.busy": "2023-08-21T02:29:23.671852Z", - "iopub.status.idle": "2023-08-21T02:29:23.674849Z", - "shell.execute_reply": "2023-08-21T02:29:23.674590Z" + "iopub.execute_input": "2023-08-22T07:00:08.107307Z", + "iopub.status.busy": "2023-08-22T07:00:08.107179Z", + "iopub.status.idle": "2023-08-22T07:00:08.110477Z", + "shell.execute_reply": "2023-08-22T07:00:08.110049Z" } }, "outputs": [ @@ -1968,10 +1968,10 @@ "id": "a2253f89", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.676319Z", - "iopub.status.busy": "2023-08-21T02:29:23.676213Z", - "iopub.status.idle": "2023-08-21T02:29:23.678423Z", - "shell.execute_reply": "2023-08-21T02:29:23.678191Z" + "iopub.execute_input": "2023-08-22T07:00:08.112116Z", + "iopub.status.busy": "2023-08-22T07:00:08.112018Z", + "iopub.status.idle": "2023-08-22T07:00:08.114728Z", + "shell.execute_reply": "2023-08-22T07:00:08.114379Z" } }, "outputs": [ @@ -2006,10 +2006,10 @@ "id": "aa10fcf4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.679982Z", - "iopub.status.busy": "2023-08-21T02:29:23.679875Z", - "iopub.status.idle": "2023-08-21T02:29:23.682329Z", - "shell.execute_reply": "2023-08-21T02:29:23.682074Z" + "iopub.execute_input": "2023-08-22T07:00:08.116886Z", + "iopub.status.busy": "2023-08-22T07:00:08.116732Z", + "iopub.status.idle": "2023-08-22T07:00:08.119361Z", + "shell.execute_reply": "2023-08-22T07:00:08.119014Z" }, "lines_to_next_cell": 0 }, @@ -2047,10 +2047,10 @@ "id": "f5bc4121", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.683856Z", - "iopub.status.busy": "2023-08-21T02:29:23.683756Z", - "iopub.status.idle": "2023-08-21T02:29:23.696250Z", - "shell.execute_reply": "2023-08-21T02:29:23.695956Z" + "iopub.execute_input": "2023-08-22T07:00:08.121086Z", + "iopub.status.busy": "2023-08-22T07:00:08.120969Z", + "iopub.status.idle": "2023-08-22T07:00:08.133376Z", + "shell.execute_reply": "2023-08-22T07:00:08.133011Z" } }, "outputs": [ @@ -2058,7 +2058,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.446e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.446e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -2100,10 +2100,10 @@ "id": "e4018437", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.697819Z", - "iopub.status.busy": "2023-08-21T02:29:23.697718Z", - "iopub.status.idle": "2023-08-21T02:29:23.700233Z", - "shell.execute_reply": "2023-08-21T02:29:23.699974Z" + "iopub.execute_input": "2023-08-22T07:00:08.135390Z", + "iopub.status.busy": "2023-08-22T07:00:08.135249Z", + "iopub.status.idle": "2023-08-22T07:00:08.138028Z", + "shell.execute_reply": "2023-08-22T07:00:08.137669Z" }, "lines_to_next_cell": 0 }, @@ -2147,10 +2147,10 @@ "id": "aaa73183", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.701707Z", - "iopub.status.busy": "2023-08-21T02:29:23.701624Z", - "iopub.status.idle": "2023-08-21T02:29:23.709254Z", - "shell.execute_reply": "2023-08-21T02:29:23.708916Z" + "iopub.execute_input": "2023-08-22T07:00:08.140104Z", + "iopub.status.busy": "2023-08-22T07:00:08.139927Z", + "iopub.status.idle": "2023-08-22T07:00:08.147255Z", + "shell.execute_reply": "2023-08-22T07:00:08.146900Z" } }, "outputs": [ @@ -2158,7 +2158,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.486e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.486e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -2205,10 +2205,10 @@ "id": "8f95689e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.711112Z", - "iopub.status.busy": "2023-08-21T02:29:23.710959Z", - "iopub.status.idle": "2023-08-21T02:29:23.718893Z", - "shell.execute_reply": "2023-08-21T02:29:23.718567Z" + "iopub.execute_input": "2023-08-22T07:00:08.149814Z", + "iopub.status.busy": "2023-08-22T07:00:08.149544Z", + "iopub.status.idle": "2023-08-22T07:00:08.157631Z", + "shell.execute_reply": "2023-08-22T07:00:08.157328Z" }, "lines_to_next_cell": 0 }, @@ -2217,7 +2217,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -2262,10 +2262,10 @@ "id": "725a3200", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:23.720467Z", - "iopub.status.busy": "2023-08-21T02:29:23.720361Z", - "iopub.status.idle": "2023-08-21T02:29:24.185363Z", - "shell.execute_reply": "2023-08-21T02:29:24.185015Z" + "iopub.execute_input": "2023-08-22T07:00:08.159712Z", + "iopub.status.busy": "2023-08-22T07:00:08.159508Z", + "iopub.status.idle": "2023-08-22T07:00:08.559312Z", + "shell.execute_reply": "2023-08-22T07:00:08.558977Z" } }, "outputs": [ @@ -2273,207 +2273,207 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.136e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.134e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.134e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.134e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.134e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.131e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.131e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.130e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.130e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.128e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.128e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.127e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.127e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.117e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.117e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.113e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.113e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.107e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.107e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.100e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.100e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.091e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.091e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.081e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.081e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.055e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.055e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.977e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.977e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.744e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.744e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.494e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.494e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.968e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.968e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.704e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.704e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.448e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.448e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.204e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.204e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.977e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.977e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.769e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.769e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.581e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.581e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.412e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.412e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.261e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.261e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.127e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.127e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.008e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 7.008e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.900e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.900e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.803e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.803e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.714e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.714e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.632e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.632e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.554e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.554e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.480e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.480e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.409e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.409e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.342e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.342e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.276e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.276e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.214e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.214e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.154e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.154e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.097e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.097e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.043e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 6.043e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.991e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.991e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.943e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.943e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.898e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.898e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.856e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.856e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.817e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.817e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.780e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.780e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.746e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.746e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.715e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.715e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.687e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.687e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.661e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.661e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.637e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.637e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.616e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.616e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.596e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.596e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.579e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.579e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.563e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.563e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.550e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.550e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.538e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.538e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.528e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.528e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.519e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.519e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.512e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.512e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.506e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.506e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.500e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.500e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.496e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.496e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.493e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.493e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.490e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.490e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.488e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.488e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.486e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.486e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.485e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.485e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.483e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.483e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.483e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.483e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.482e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 5.482e+06, tolerance: 2.272e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.248e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.248e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -2519,10 +2519,10 @@ "id": "823982cc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:24.187182Z", - "iopub.status.busy": "2023-08-21T02:29:24.187049Z", - "iopub.status.idle": "2023-08-21T02:29:27.299737Z", - "shell.execute_reply": "2023-08-21T02:29:27.299435Z" + "iopub.execute_input": "2023-08-22T07:00:08.561312Z", + "iopub.status.busy": "2023-08-22T07:00:08.561182Z", + "iopub.status.idle": "2023-08-22T07:00:11.194918Z", + "shell.execute_reply": "2023-08-22T07:00:11.194585Z" }, "lines_to_next_cell": 0 }, @@ -2531,1007 +2531,1007 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.877e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.877e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.230e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.230e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.097e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.097e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.229e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.229e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.214e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.214e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.096e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.096e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.228e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.228e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.875e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.875e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.095e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.095e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.227e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.227e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.211e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.211e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.873e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.873e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.093e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.093e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.225e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.225e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.209e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.209e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.872e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.872e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.212e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.212e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.870e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.870e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.089e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.089e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.210e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.210e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.204e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.204e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.867e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.867e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.086e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.086e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.200e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.200e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.864e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.864e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.082e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.082e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.203e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.203e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.196e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.196e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.860e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.860e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.077e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.077e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.208e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.208e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.197e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.197e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.855e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.855e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.071e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.071e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.201e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.201e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.191e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.191e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.849e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.849e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.063e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.063e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.194e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.194e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.174e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.174e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.841e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.841e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.054e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.054e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.184e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.184e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.173e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.173e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.163e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.163e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.043e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.043e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.172e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.172e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.161e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.161e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.149e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.149e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.820e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.820e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.029e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.029e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.157e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.157e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.146e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.146e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.806e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.806e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.012e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.012e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.139e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.139e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.129e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.129e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.112e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.112e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.789e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.789e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.992e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.992e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.117e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.117e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.107e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.107e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.087e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.087e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.769e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.769e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.968e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.968e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.081e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.081e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.058e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.058e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.745e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.745e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.060e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.060e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.051e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.051e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.718e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.718e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.907e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.907e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.015e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.015e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.686e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.686e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.869e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.869e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.975e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.975e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.650e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.650e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.828e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.828e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.938e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.938e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.929e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.929e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.611e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.611e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.783e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.783e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.568e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.568e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.734e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.734e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.834e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.834e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.826e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.826e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.772e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.772e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.524e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.524e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.684e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.684e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.778e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.778e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.770e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.770e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.710e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.710e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.478e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.478e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.633e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.633e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.721e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.721e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.713e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.713e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.646e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.646e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.432e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.432e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.663e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.663e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.655e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.655e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.388e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.388e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.533e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.533e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.607e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.607e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.599e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.599e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.520e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.520e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.345e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.345e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.486e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.486e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.554e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.554e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.545e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.545e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.460e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.460e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.443e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.443e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.504e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.504e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.494e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.494e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.404e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.404e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.268e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.268e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.403e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.403e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.457e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.457e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.447e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.447e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.352e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.352e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.415e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.415e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.405e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.405e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.333e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.333e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.377e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.377e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.262e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.262e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.177e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.177e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.304e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.304e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.343e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.343e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.331e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.331e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.224e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.224e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.154e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.154e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.278e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.278e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.312e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.312e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.300e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.300e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.255e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.255e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.284e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.284e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.272e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.272e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.159e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.159e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.260e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.260e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.247e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.247e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.098e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.098e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.215e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.215e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.237e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.237e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.225e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.225e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.109e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.109e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.083e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.083e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.088e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.088e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.070e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.070e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.182e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.182e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.186e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.186e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.058e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.058e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.167e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.167e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.181e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.181e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.169e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.169e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.165e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.165e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.139e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.139e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.149e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.149e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.138e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.138e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.027e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.027e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.126e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.126e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.012e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.012e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.017e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.017e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.110e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.110e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.102e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.102e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.108e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.108e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.097e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.097e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.982e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.982e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.090e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.090e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.095e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.095e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.804e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.804e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.894e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.894e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.078e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.078e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.071e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.071e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.713e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.713e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.808e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.808e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.067e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.067e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.073e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.073e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.060e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.060e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.627e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.627e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.727e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.727e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.057e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.057e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.062e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.062e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.048e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.048e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.548e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.548e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.650e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.650e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.579e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.579e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.045e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.045e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.406e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.406e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.514e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.514e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.343e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.343e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.454e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.454e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.030e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.030e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.286e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.286e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.402e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.402e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.003e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.003e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.355e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.355e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.969e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.969e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.187e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.187e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.314e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.314e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.966e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.966e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.014e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.014e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.914e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.914e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.145e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.145e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.279e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.279e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.010e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.010e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.865e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.865e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.249e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.249e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.843e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.843e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.824e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.824e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.075e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.075e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.223e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.223e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.047e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.047e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.202e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.202e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.743e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.743e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.761e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.761e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.022e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.022e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.184e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.184e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.700e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.700e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.990e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.990e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.737e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.737e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.000e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.000e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.169e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.169e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.663e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.663e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.971e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.971e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.717e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.717e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.982e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.982e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.156e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.156e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.630e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.630e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.956e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.956e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.701e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.701e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.966e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.966e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.146e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.146e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.601e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.601e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.943e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.943e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.688e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.688e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.953e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.953e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.138e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.138e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.575e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.575e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.933e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.933e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.677e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.677e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.942e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.942e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.132e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.132e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.554e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.554e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.924e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.924e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.668e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.668e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.933e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.933e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.126e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.126e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.535e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.535e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.917e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.917e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.661e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.661e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.926e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.926e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.122e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.122e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.520e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.520e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.911e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.911e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.655e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.655e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.920e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.920e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.119e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.119e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.507e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.507e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.906e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.906e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.651e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.651e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.915e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.915e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.116e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.116e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.496e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.496e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.647e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.647e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.911e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.911e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.114e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.114e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.487e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.487e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.899e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.899e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.644e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.644e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.907e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.907e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.112e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.112e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.480e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.480e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.897e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.897e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.642e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.642e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.905e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.905e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.111e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.111e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.895e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.895e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.640e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.640e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.903e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.903e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.110e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.110e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.469e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.469e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.893e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.893e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.639e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.639e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.901e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.901e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.109e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.109e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.465e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.465e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.892e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.892e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.638e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.638e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.900e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.900e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.462e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.462e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.891e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.891e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.637e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.637e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.899e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.899e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.460e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.460e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.898e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.898e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.458e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.458e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.456e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.456e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.889e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.889e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.635e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.635e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -3577,10 +3577,10 @@ "id": "b1b7d3b4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:27.301365Z", - "iopub.status.busy": "2023-08-21T02:29:27.301252Z", - "iopub.status.idle": "2023-08-21T02:29:27.401673Z", - "shell.execute_reply": "2023-08-21T02:29:27.401251Z" + "iopub.execute_input": "2023-08-22T07:00:11.196745Z", + "iopub.status.busy": "2023-08-22T07:00:11.196604Z", + "iopub.status.idle": "2023-08-22T07:00:11.287223Z", + "shell.execute_reply": "2023-08-22T07:00:11.286902Z" } }, "outputs": [ @@ -3621,10 +3621,10 @@ "id": "59a69421", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:27.403382Z", - "iopub.status.busy": "2023-08-21T02:29:27.403269Z", - "iopub.status.idle": "2023-08-21T02:29:30.557588Z", - "shell.execute_reply": "2023-08-21T02:29:30.557217Z" + "iopub.execute_input": "2023-08-22T07:00:11.289077Z", + "iopub.status.busy": "2023-08-22T07:00:11.288949Z", + "iopub.status.idle": "2023-08-22T07:00:13.927873Z", + "shell.execute_reply": "2023-08-22T07:00:13.927443Z" } }, "outputs": [ @@ -3632,1007 +3632,1007 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.101e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.233e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.100e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.222e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.879e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.232e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.099e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.221e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.878e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.231e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.877e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.877e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.098e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.230e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.230e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.097e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.097e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.229e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.229e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.219e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.214e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.214e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.876e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.096e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.096e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.228e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.228e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.218e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.875e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.875e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.095e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.095e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.227e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.227e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.216e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.211e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.211e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.873e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.873e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.093e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.093e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.225e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.225e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.215e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.209e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.209e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.872e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.872e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.223e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.212e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.212e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.870e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.870e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.089e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.089e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.220e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.210e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.210e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.204e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.204e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.867e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.867e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.086e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.086e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.207e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.200e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.200e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.864e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.864e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.082e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.082e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.213e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.203e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.203e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.196e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.196e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.860e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.860e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.077e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.077e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.208e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.208e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.197e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.197e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.855e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.855e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.071e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.071e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.201e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.201e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.191e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.191e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.849e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.849e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.063e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.063e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.194e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.194e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.183e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.174e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.174e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.841e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.841e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.054e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.054e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.184e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.184e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.173e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.173e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.163e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.163e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.043e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.043e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.172e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.172e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.161e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.161e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.149e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.149e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.820e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.820e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.029e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.029e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.157e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.157e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.146e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.146e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.806e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.806e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.012e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.012e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.139e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.139e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.129e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.129e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.112e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.112e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.789e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.789e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.992e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.992e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.117e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.117e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.107e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.107e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.087e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.087e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.769e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.769e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.968e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.968e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.091e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.081e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.081e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.058e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.058e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.745e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.745e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.060e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.060e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.051e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.051e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.718e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.718e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.907e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.907e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.015e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.015e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.686e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.686e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.869e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.869e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.984e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.975e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.975e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.939e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.650e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.650e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.828e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.828e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.938e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.938e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.929e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.929e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.611e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.611e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.783e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.783e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.888e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.880e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.832e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.568e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.568e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.734e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.734e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.834e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.834e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.826e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.826e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.772e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.772e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.524e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.524e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.684e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.684e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.778e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.778e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.770e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.770e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.710e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.710e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.478e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.478e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.633e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.633e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.721e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.721e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.713e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.713e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.646e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.646e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.432e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.432e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.663e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.663e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.655e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.655e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.582e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.388e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.388e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.533e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.533e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.607e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.607e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.599e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.599e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.520e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.520e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.345e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.345e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.486e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.486e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.554e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.554e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.545e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.545e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.460e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.460e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.443e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.443e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.504e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.504e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.494e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.494e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.404e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.404e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.268e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.268e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.403e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.403e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.457e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.457e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.447e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.447e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.352e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.352e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.415e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.415e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.405e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.405e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.305e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.333e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.333e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.377e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.377e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.366e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.262e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.262e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.177e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.177e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.304e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.304e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.343e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.343e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.331e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.331e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.224e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.224e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.154e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.154e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.278e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.278e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.312e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.312e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.300e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.300e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.190e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.133e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.255e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.255e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.284e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.284e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.272e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.272e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.159e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.159e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.234e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.260e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.260e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.247e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.247e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.132e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.098e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.098e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.215e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.215e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.237e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.237e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.225e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.225e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.109e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.109e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.083e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.083e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.217e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.204e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.088e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.088e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.070e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.070e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.182e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.182e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.198e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.186e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.186e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.069e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.058e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.058e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.167e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.167e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.181e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.181e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.169e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.169e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.165e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.165e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.139e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.139e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.149e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.149e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.138e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.138e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.027e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.027e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.126e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.126e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.135e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.124e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.012e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.012e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.017e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.017e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.114e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.121e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.110e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.110e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.102e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.102e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.108e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.108e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.097e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.097e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.982e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.982e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.090e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.090e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.095e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.095e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.804e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.804e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.894e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.894e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.078e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.078e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.084e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.071e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.071e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.713e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.713e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.808e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.808e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.067e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.067e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.073e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.073e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.060e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.060e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.627e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.627e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.727e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.727e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.057e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.057e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.062e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.062e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.048e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.048e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.548e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.548e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.650e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.650e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.047e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.053e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.038e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.579e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.579e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.045e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.045e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.406e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.406e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.514e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.514e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.028e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.037e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.343e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.343e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.454e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.454e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.030e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.030e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.286e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.286e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.402e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.402e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.011e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.024e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.003e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.003e+07, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.234e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.355e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.355e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.019e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.969e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.969e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.187e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.187e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.314e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.314e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.966e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.966e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.014e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.014e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.914e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.914e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.145e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.145e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.279e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.279e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.010e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.010e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.865e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.865e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.249e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.249e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.843e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.843e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.007e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.824e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.824e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.075e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.075e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.223e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.223e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.004e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.790e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.047e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.047e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.202e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.202e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.743e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.743e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.001e+07, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.761e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.761e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.022e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.022e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.184e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.184e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.700e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.700e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.990e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.990e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.737e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.737e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.000e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.000e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.169e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.169e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.663e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.663e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.971e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.971e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.717e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.717e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.982e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.982e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.156e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.156e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.630e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.630e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.956e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.956e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.701e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.701e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.966e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.966e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.146e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.146e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.601e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.601e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.943e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.943e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.688e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.688e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.953e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.953e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.138e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.138e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.575e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.575e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.933e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.933e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.677e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.677e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.942e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.942e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.132e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.132e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.554e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.554e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.924e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.924e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.668e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.668e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.933e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.933e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.126e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.126e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.535e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.535e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.917e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.917e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.661e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.661e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.926e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.926e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.122e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.122e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.520e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.520e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.911e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.911e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.655e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.655e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.920e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.920e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.119e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.119e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.507e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.507e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.906e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.906e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.651e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.651e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.915e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.915e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.116e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.116e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.496e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.496e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.902e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.647e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.647e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.911e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.911e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.114e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.114e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.487e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.487e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.899e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.899e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.644e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.644e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.907e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.907e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.112e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.112e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.480e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.480e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.897e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.897e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.642e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.642e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.905e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.905e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.111e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.111e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.474e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.895e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.895e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.640e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.640e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.903e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.903e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.110e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.110e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.469e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.469e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.893e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.893e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.639e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.639e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.901e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.901e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.109e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.109e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.465e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.465e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.892e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.892e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.638e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.638e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.900e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.900e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.462e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.462e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.891e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.891e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.637e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.637e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.899e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.899e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.108e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.460e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.460e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.898e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.898e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.458e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.458e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.890e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.636e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.107e+06, tolerance: 3.759e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.456e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.456e+06, tolerance: 4.201e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.889e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.889e+06, tolerance: 4.466e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.635e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 9.635e+06, tolerance: 4.445e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.897e+06, tolerance: 4.437e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -4711,10 +4711,10 @@ "id": "572b14c3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:30.559540Z", - "iopub.status.busy": "2023-08-21T02:29:30.559406Z", - "iopub.status.idle": "2023-08-21T02:29:30.661941Z", - "shell.execute_reply": "2023-08-21T02:29:30.660478Z" + "iopub.execute_input": "2023-08-22T07:00:13.930022Z", + "iopub.status.busy": "2023-08-22T07:00:13.929865Z", + "iopub.status.idle": "2023-08-22T07:00:14.018201Z", + "shell.execute_reply": "2023-08-22T07:00:14.017805Z" }, "lines_to_next_cell": 2 }, @@ -4760,10 +4760,10 @@ "id": "a6129b36", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:30.663816Z", - "iopub.status.busy": "2023-08-21T02:29:30.663686Z", - "iopub.status.idle": "2023-08-21T02:29:31.013347Z", - "shell.execute_reply": "2023-08-21T02:29:31.012943Z" + "iopub.execute_input": "2023-08-22T07:00:14.020355Z", + "iopub.status.busy": "2023-08-22T07:00:14.020186Z", + "iopub.status.idle": "2023-08-22T07:00:14.305398Z", + "shell.execute_reply": "2023-08-22T07:00:14.305076Z" } }, "outputs": [ @@ -4771,2007 +4771,2007 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795326.355502333, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795326.355502333, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795268.885511458, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795268.885511458, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795196.367825005, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795196.367825005, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795104.862821113, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18795104.862821113, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794989.399687696, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794989.399687696, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794843.706650957, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794843.706650957, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794659.87071198, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794659.87071198, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794427.908521358, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794427.908521358, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794135.22526347, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18794135.22526347, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18793765.932449568, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18793765.932449568, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18793299.98803079, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18793299.98803079, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18792712.112872534, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18792712.112872534, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18791970.425932087, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18791970.425932087, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18791034.72591697, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18791034.72591697, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18789854.32913581, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18789854.32913581, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18788365.350956466, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18788365.350956466, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18786487.290938053, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18786487.290938053, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18784118.748442672, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18784118.748442672, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18781132.05553399, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18781132.05553399, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18777366.566605024, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18777366.566605024, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18772620.289297033, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18772620.289297033, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18766639.479676694, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18766639.479676694, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18759105.758860495, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18759105.758860495, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18749620.243803147, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18749620.243803147, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18737684.132153213, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18737684.132153213, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18722675.157982755, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18722675.157982755, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18703819.37168406, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18703819.37168406, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18680157.84067929, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18680157.84067929, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18650508.189617783, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18650508.189617783, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18613421.503628485, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18613421.503628485, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18567136.14871325, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18567136.14871325, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18509531.699850053, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18509531.699850053, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18438088.608600505, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18438088.608600505, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18349862.649110064, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18349862.649110064, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18241487.557216965, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18241487.557216965, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18109224.25083878, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18109224.25083878, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17949079.523028806, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17949079.523028806, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17757018.994714484, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17757018.994714484, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17529294.98190815, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17529294.98190815, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17262895.457700975, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17262895.457700975, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16956091.882983487, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16956091.882983487, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16609021.736273043, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16609021.736273043, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16224194.650997939, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16224194.650997939, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15806778.142363884, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15806778.142363884, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15364525.127389485, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15364525.127389485, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14907268.75187378, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14907268.75187378, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14446023.624531085, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14446023.624531085, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13991857.160644894, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13991857.160644894, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13554773.727504015, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13554773.727504015, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13142847.182203237, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13142847.182203237, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12761747.456957739, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12761747.456957739, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12414679.232309299, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12414679.232309299, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12102642.724649917, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12102642.724649917, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11824874.692517474, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11824874.692517474, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11579334.50630629, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11579334.50630629, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11363143.416383019, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11363143.416383019, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11172936.696242273, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11172936.696242273, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11005127.92643167, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11005127.92643167, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10856105.032984463, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10856105.032984463, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10722381.625233045, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10722381.625233045, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10600721.735570516, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10600721.735570516, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10488247.552619573, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10488247.552619573, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10382531.68105097, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10382531.68105097, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10281669.161078632, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10281669.161078632, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10184320.545404715, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10184320.545404715, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10089716.55059902, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10089716.55059902, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9997617.850835908, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9997617.850835908, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9908230.155360885, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9908230.155360885, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9822083.085401118, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9822083.085401118, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9739888.930170696, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9739888.930170696, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9662401.666184625, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9662401.666184625, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9590296.226307327, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9590296.226307327, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9524082.854699288, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9524082.854699288, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9464062.902306747, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9464062.902306747, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9410323.196208755, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9410323.196208755, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9362759.024991764, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9362759.024991764, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9321112.753117379, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9321112.753117379, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9285016.290065145, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9285016.290065145, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9254029.627395952, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9254029.627395952, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9227672.214767914, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9227672.214767914, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9205447.27460862, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9205447.27460862, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9186860.578098293, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9186860.578098293, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9171435.130133288, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9171435.130133288, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9158722.527650403, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9158722.527650403, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9148311.191396464, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9148311.191396464, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9139831.50202173, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9139831.50202173, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9132958.012055235, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9132958.012055235, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9127409.145408802, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9127409.145408802, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9122944.972944392, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9122944.972944392, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9119363.705526328, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9119363.705526328, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9116497.490587894, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9116497.490587894, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9114207.980834428, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9114207.980834428, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9112382.008592516, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9112382.008592516, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9110927.575648237, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9110927.575648237, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9109770.269829819, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9109770.269829819, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9108850.148759764, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9108850.148759764, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9108119.08491204, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9108119.08491204, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9107538.538969103, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9107538.538969103, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9107077.714962065, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9107077.714962065, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9106712.046135923, tolerance: 3759.109166869193\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9106712.046135923, tolerance: 3759.109166869193\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005651.632865302, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005651.632865302, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005578.608102243, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005578.608102243, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005486.463074774, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005486.463074774, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005370.192059726, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005370.192059726, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005223.47917251, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005223.47917251, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005038.355660334, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21005038.355660334, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004804.76767336, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004804.76767336, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004510.03120046, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004510.03120046, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004138.144828446, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21004138.144828446, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21003668.923421204, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21003668.923421204, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21003076.906345215, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21003076.906345215, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21002329.98203154, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21002329.98203154, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21001387.655909717, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21001387.655909717, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21000198.8704182, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21000198.8704182, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20998699.26312138, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20998699.26312138, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20996807.72107362, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20996807.72107362, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20994422.05552329, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20994422.05552329, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20991413.57989597, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20991413.57989597, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20987620.324921425, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20987620.324921425, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20982838.567338496, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20982838.567338496, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20976812.283196613, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20976812.283196613, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20969220.065253027, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20969220.065253027, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20959658.970863715, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20959658.970863715, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20947624.701018073, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20947624.701018073, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20932487.468798272, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20932487.468798272, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20913462.923603535, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20913462.923603535, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20889577.599545892, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20889577.599545892, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20859628.61984418, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20859628.61984418, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20822137.913488373, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20822137.913488373, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20775302.126054227, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20775302.126054227, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20716940.917180095, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20716940.917180095, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20644448.64953633, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20644448.64953633, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20554757.795455974, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20554757.795455974, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20444326.815649558, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20444326.815649558, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20309170.5956441, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20309170.5956441, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20144956.94257016, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20144956.94257016, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19947196.308887925, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19947196.308887925, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19711550.604615457, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19711550.604615457, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19434276.168588594, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19434276.168588594, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19112791.023677077, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19112791.023677077, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18746315.49762964, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18746315.49762964, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18336483.416578818, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18336483.416578818, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17887774.82963546, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17887774.82963546, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17407607.14883928, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17407607.14883928, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16905965.499829993, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16905965.499829993, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16394560.80209675, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16394560.80209675, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15885645.94315279, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15885645.94315279, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15390736.734407002, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15390736.734407002, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14919517.25785277, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14919517.25785277, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14479140.715843389, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14479140.715843389, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14074002.01810337, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14074002.01810337, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13705921.512677444, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13705921.512677444, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13374594.126102015, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13374594.126102015, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13078142.079861483, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13078142.079861483, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12813645.639316088, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12813645.639316088, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12577583.791150972, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12577583.791150972, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12366168.387483226, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12366168.387483226, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12175587.27845306, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12175587.27845306, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12002182.958268248, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12002182.958268248, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11842589.470659975, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11842589.470659975, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11693840.031875866, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11693840.031875866, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11553447.60800361, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11553447.60800361, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11419454.0438313, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11419454.0438313, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11290441.388440857, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11290441.388440857, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11165501.742342338, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11165501.742342338, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11044168.420816425, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11044168.420816425, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10926319.289729377, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10926319.289729377, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10812069.210340973, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10812069.210340973, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10701669.403435929, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10701669.403435929, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10595426.714498514, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10595426.714498514, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10493648.013477515, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10493648.013477515, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10396608.203056702, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10396608.203056702, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10304536.713966034, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10304536.713966034, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10217616.440012153, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10217616.440012153, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10135989.092876721, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10135989.092876721, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10059761.060749074, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10059761.060749074, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9989004.697692012, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9989004.697692012, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9923752.620593688, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9923752.620593688, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9863986.795334544, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9863986.795334544, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9809627.884194935, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9809627.884194935, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9760531.052715844, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9760531.052715844, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9716491.487344079, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9716491.487344079, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9677258.06531545, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9677258.06531545, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9642549.951165989, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9642549.951165989, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9612070.387835175, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9612070.387835175, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9585514.488134583, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9585514.488134583, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9562571.500908714, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9562571.500908714, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9542924.549681038, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9542924.549681038, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9526251.156759001, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9526251.156759001, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9512226.472533092, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9512226.472533092, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9500529.267319627, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9500529.267319627, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9490849.431706948, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9490849.431706948, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9482895.334901826, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9482895.334901826, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9476399.71781569, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9476399.71781569, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9471123.439398324, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9471123.439398324, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9466857.004635958, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9466857.004635958, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9463420.20844639, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9463420.20844639, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9460660.409301298, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9460660.409301298, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9458449.957484353, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9458449.957484353, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9456683.22035802, tolerance: 4201.186103419478\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9456683.22035802, tolerance: 4201.186103419478\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331946.25629055, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331946.25629055, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331864.018678214, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331864.018678214, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331760.248581372, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331760.248581372, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331629.308755428, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331629.308755428, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331464.086506005, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331464.086506005, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331255.607747704, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22331255.607747704, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330992.550247405, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330992.550247405, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330660.62979839, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330660.62979839, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330241.82628314, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22330241.82628314, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22329713.40806704, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22329713.40806704, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22329046.702501133, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22329046.702501133, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22328205.546983715, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22328205.546983715, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22327144.338416774, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22327144.338416774, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22325805.578253012, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22325805.578253012, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22324116.784799173, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22324116.784799173, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22321986.613041975, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22321986.613041975, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22319299.9839329, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22319299.9839329, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22315911.97874348, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22315911.97874348, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22311640.198869713, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22311640.198869713, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22306255.226839963, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22306255.226839963, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22299468.750693016, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22299468.750693016, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22290918.833475478, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22290918.833475478, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22280151.72747749, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22280151.72747749, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22266599.559077755, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22266599.559077755, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22249553.162800502, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22249553.162800502, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22228129.35292585, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22228129.35292585, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22201232.036903117, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22201232.036903117, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22167506.872833706, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22167506.872833706, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22125289.76574775, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22125289.76574775, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22072550.542125095, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22072550.542125095, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22006834.845984127, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22006834.845984127, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21925209.906269174, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21925209.906269174, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21824223.56629905, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21824223.56629905, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21699890.94922881, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21699890.94922881, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21547729.124614064, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21547729.124614064, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21362866.213577304, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21362866.213577304, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21140255.446179498, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21140255.446179498, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20875023.13975618, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20875023.13975618, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20562967.32341789, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20562967.32341789, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20201195.56502676, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20201195.56502676, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19788844.32939185, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19788844.32939185, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19327763.89751004, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19327763.89751004, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18823001.04313301, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18823001.04313301, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18282896.08461045, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18282896.08461045, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17718660.4886989, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17718660.4886989, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17143422.40324079, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17143422.40324079, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16570887.230051238, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16570887.230051238, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16013892.090309372, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16013892.090309372, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15483171.861886727, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15483171.861886727, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14986579.129588084, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14986579.129588084, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14528848.289413737, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14528848.289413737, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14111836.239774454, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14111836.239774454, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13735069.935277399, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13735069.935277399, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13396407.639332836, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13396407.639332836, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13092660.916831579, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13092660.916831579, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12820093.900344713, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12820093.900344713, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12574781.90922219, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12574781.90922219, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12352853.175078167, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12352853.175078167, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12150651.369793259, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12150651.369793259, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11964850.854771722, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11964850.854771722, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11792543.263225015, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11792543.263225015, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11631302.416094316, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11631302.416094316, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11479227.7561279, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11479227.7561279, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11334963.041737791, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11334963.041737791, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11197685.003164051, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11197685.003164051, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11067056.224580359, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11067056.224580359, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10943139.511030385, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10943139.511030385, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10826278.220752902, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10826278.220752902, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10716956.341549171, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10716956.341549171, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10615659.18706467, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10615659.18706467, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10522756.819315987, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10522756.819315987, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10438426.844454892, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10438426.844454892, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10362623.27115231, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10362623.27115231, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10295087.38179537, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10295087.38179537, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10235388.466414705, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10235388.466414705, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10182978.74114095, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10182978.74114095, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10137247.95260475, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10137247.95260475, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10097567.748922419, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10097567.748922419, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10063321.789749103, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10063321.789749103, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10033922.656392608, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10033922.656392608, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10008819.486834103, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10008819.486834103, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9987500.645290056, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9987500.645290056, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9969494.453323793, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9969494.453323793, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9954369.32479691, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9954369.32479691, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9941733.515465437, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9941733.515465437, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9931234.335989065, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9931234.335989065, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9922556.777457738, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9922556.777457738, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9915421.679110043, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9915421.679110043, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9909583.627876062, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9909583.627876062, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9904828.718921196, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9904828.718921196, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9900972.216495434, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9900972.216495434, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9897856.106707212, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9897856.106707212, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9895346.540855931, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9895346.540855931, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9893331.203755055, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9893331.203755055, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9891716.674948297, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9891716.674948297, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9890425.865192825, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9890425.865192825, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9889395.604661888, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9889395.604661888, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9888574.440116646, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9888574.440116646, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9887920.674489552, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9887920.674489552, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9887400.660169175, tolerance: 4466.452064951529\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9887400.660169175, tolerance: 4466.452064951529\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225193.80408011, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225193.80408011, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225110.813517075, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225110.813517075, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225006.093373984, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22225006.093373984, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224873.954836704, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224873.954836704, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224707.22016197, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224707.22016197, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224496.83322094, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224496.83322094, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224231.36831536, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22224231.36831536, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22223896.410779048, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22223896.410779048, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22223473.77603032, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22223473.77603032, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22222940.525154293, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22222940.525154293, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22222267.72434169, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22222267.72434169, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22221418.88207672, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22221418.88207672, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22220347.981225494, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22220347.981225494, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22218997.002387535, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22218997.002387535, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22217292.809172478, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22217292.809172478, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22215143.234477364, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22215143.234477364, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22212432.168317866, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22212432.168317866, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22209013.40126823, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22209013.40126823, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22204702.922219783, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22204702.922219783, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22199269.304569546, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22199269.304569546, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22192421.741654057, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22192421.741654057, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22183795.21258787, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22183795.21258787, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22172932.17909693, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22172932.17909693, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22159260.14304964, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22159260.14304964, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22142064.35203175, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22142064.35203175, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22120454.95809202, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22120454.95809202, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22093328.06334204, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22093328.06334204, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22059320.403233726, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22059320.403233726, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22016758.03845356, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22016758.03845356, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21963600.508906867, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21963600.508906867, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21897383.65478575, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21897383.65478575, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21815166.968429696, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21815166.968429696, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21713495.123522323, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21713495.123522323, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21588388.30984886, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21588388.30984886, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21435381.888817236, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21435381.888817236, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21249641.65996918, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21249641.65996918, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21026184.505123127, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21026184.505123127, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20760231.655652393, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20760231.655652393, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20447708.31167379, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20447708.31167379, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20085874.018901825, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20085874.018901825, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19674021.850113407, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19674021.850113407, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19214128.3053442, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19214128.3053442, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18711289.424232315, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18711289.424232315, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18173771.014405873, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18173771.014405873, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17612557.62934444, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17612557.62934444, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17040407.03219554, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17040407.03219554, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16470567.131662391, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16470567.131662391, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15915425.819018744, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15915425.819018744, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15385384.27148134, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15385384.27148134, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14888160.528800251, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14888160.528800251, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14428585.410549453, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14428585.410549453, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14008814.608291918, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14008814.608291918, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13628800.43657365, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13628800.43657365, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13286857.361730725, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13286857.361730725, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12980197.224087035, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12980197.224087035, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12705370.410345197, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12705370.410345197, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12458600.903357476, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12458600.903357476, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12236032.77957509, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12236032.77957509, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12033913.49389702, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12033913.49389702, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11848733.596731743, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11848733.596731743, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11677333.403468838, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11677333.403468838, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11516981.070353946, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11516981.070353946, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11365424.704670552, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11365424.704670552, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11220921.203073826, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11220921.203073826, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11082243.920528807, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11082243.920528807, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10948669.457422748, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10948669.457422748, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10819942.016223667, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10819942.016223667, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10696213.317397818, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10696213.317397818, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10577957.546131799, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10577957.546131799, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10465864.125929628, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10465864.125929628, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10360715.842557454, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10360715.842557454, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10263264.873279892, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10263264.873279892, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10174122.558233691, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10174122.558233691, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10093678.084935276, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10093678.084935276, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10022055.90958463, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10022055.90958463, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9959113.332252601, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9959113.332252601, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9904471.381944738, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9904471.381944738, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9857566.988895562, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9857566.988895562, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9817713.479318874, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9817713.479318874, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9784158.875562938, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9784158.875562938, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9756135.4293958, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9756135.4293958, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9732897.547924208, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9732897.547924208, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9713747.933154197, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9713747.933154197, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9698053.28484727, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9698053.28484727, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9685251.610393653, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9685251.610393653, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9674853.346299471, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9674853.346299471, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9666438.328081315, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9666438.328081315, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9659650.291029936, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9659650.291029936, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9654190.159247063, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9654190.159247063, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9649808.977198932, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9649808.977198932, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9646301.012972398, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9646301.012972398, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9643497.331329834, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9643497.331329834, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9641259.984843817, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9641259.984843817, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9639476.879484767, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9639476.879484767, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9638057.315691978, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9638057.315691978, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9636928.172691077, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9636928.172691077, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9636030.684258943, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9636030.684258943, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9635317.743812287, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9635317.743812287, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9634751.672914779, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9634751.672914779, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9634302.388158696, tolerance: 4445.102149685068\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9634302.388158696, tolerance: 4445.102149685068\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182535.705905367, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182535.705905367, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182443.31748153, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182443.31748153, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182326.738805104, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182326.738805104, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182179.636849403, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22182179.636849403, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181994.021044992, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181994.021044992, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181759.809716668, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181759.809716668, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181464.28327085, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181464.28327085, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181091.39464482, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22181091.39464482, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22180620.89990636, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22180620.89990636, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22180027.262331244, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22180027.262331244, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22179278.27131426, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22179278.27131426, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22178333.30250969, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22178333.30250969, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22177141.126954924, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22177141.126954924, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22175637.153777506, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22175637.153777506, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22173739.962460298, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22173739.962460298, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22171346.945451487, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22171346.945451487, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22168328.83898362, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22168328.83898362, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22164522.86814139, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22164522.86814139, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22159724.170510717, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22159724.170510717, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22153675.090679448, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22153675.090679448, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22146051.856030278, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22146051.856030278, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22136448.05522982, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22136448.05522982, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22124354.250566233, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22124354.250566233, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22109132.97552027, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22109132.97552027, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22089988.320511386, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22089988.320511386, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22065929.327634364, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22065929.327634364, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22035726.555516478, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 22035726.555516478, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21997861.52451259, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21997861.52451259, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21950469.43740475, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21950469.43740475, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21891276.769023754, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21891276.769023754, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21817537.260214396, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21817537.260214396, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21725972.80421009, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21725972.80421009, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21612729.92224466, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21612729.92224466, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21473368.08108258, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21473368.08108258, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21302902.69437747, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21302902.69437747, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21095932.158423126, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 21095932.158423126, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20846882.286273133, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20846882.286273133, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20550398.911674757, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20550398.911674757, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20201904.639180813, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 20201904.639180813, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19798303.254432607, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19798303.254432607, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19338763.60317261, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 19338763.60317261, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18825451.629099563, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18825451.629099563, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18264026.303933263, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 18264026.303933263, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17663705.112665202, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17663705.112665202, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17036766.85903686, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 17036766.85903686, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16397496.223623449, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16397496.223623449, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15760744.92149185, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15760744.92149185, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15140415.226936534, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15140415.226936534, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14548197.66197113, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14548197.66197113, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13992801.316187331, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13992801.316187331, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13479749.374918321, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13479749.374918321, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13011650.716625076, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13011650.716625076, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12588761.536151327, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12588761.536151327, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12209637.009462353, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12209637.009462353, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11871722.016013274, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11871722.016013274, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11571805.12738007, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11571805.12738007, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11306328.206388844, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11306328.206388844, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11071585.798533637, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11071585.798533637, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10863860.419768564, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10863860.419768564, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10679529.96999051, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10679529.96999051, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10515164.967978276, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10515164.967978276, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10367617.395431116, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10367617.395431116, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10234094.932508666, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10234094.932508666, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10112213.557229094, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10112213.557229094, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10000024.23575536, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10000024.23575536, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9896012.57105465, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9896012.57105465, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9799072.614562154, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9799072.614562154, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9708457.890308099, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9708457.890308099, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9623714.619163413, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9623714.619163413, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9544604.25348744, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9544604.25348744, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9471024.212762302, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9471024.212762302, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9402936.228999598, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9402936.228999598, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9340310.144654753, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9340310.144654753, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9283087.29859646, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9283087.29859646, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9231162.854348717, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9231162.854348717, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9184382.359520858, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9184382.359520858, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9142546.024753645, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9142546.024753645, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9105415.114890352, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9105415.114890352, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9072717.557093456, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9072717.557093456, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9044152.703403218, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9044152.703403218, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9019396.685310023, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9019396.685310023, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8998109.575324507, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8998109.575324507, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8979944.333787149, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8979944.333787149, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8964556.387394711, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8964556.387394711, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8951612.3695335, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8951612.3695335, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8940797.002727017, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8940797.002727017, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8931817.822045382, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8931817.822045382, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8924407.976697778, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8924407.976697778, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8918327.548498938, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8918327.548498938, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8913363.779400796, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8913363.779400796, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8909330.473245148, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8909330.473245148, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8906066.743651448, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8906066.743651448, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8903435.248435475, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8903435.248435475, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8901320.0564094, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8901320.0564094, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8899624.301448012, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8899624.301448012, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8898267.772619218, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8898267.772619218, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8897184.565959448, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8897184.565959448, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8896320.890152896, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8896320.890152896, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8895633.08348321, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8895633.08348321, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8895085.869018715, tolerance: 4436.577708196869\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8895085.869018715, tolerance: 4436.577708196869\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.271e+07, tolerance: 5.332e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -6863,10 +6863,10 @@ "id": "3683157f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.015165Z", - "iopub.status.busy": "2023-08-21T02:29:31.015003Z", - "iopub.status.idle": "2023-08-21T02:29:31.140464Z", - "shell.execute_reply": "2023-08-21T02:29:31.139654Z" + "iopub.execute_input": "2023-08-22T07:00:14.307687Z", + "iopub.status.busy": "2023-08-22T07:00:14.307502Z", + "iopub.status.idle": "2023-08-22T07:00:14.399739Z", + "shell.execute_reply": "2023-08-22T07:00:14.399295Z" } }, "outputs": [ @@ -6910,10 +6910,10 @@ "id": "1d504d1b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.144567Z", - "iopub.status.busy": "2023-08-21T02:29:31.144409Z", - "iopub.status.idle": "2023-08-21T02:29:31.154211Z", - "shell.execute_reply": "2023-08-21T02:29:31.151804Z" + "iopub.execute_input": "2023-08-22T07:00:14.401869Z", + "iopub.status.busy": "2023-08-22T07:00:14.401710Z", + "iopub.status.idle": "2023-08-22T07:00:14.404500Z", + "shell.execute_reply": "2023-08-22T07:00:14.404205Z" } }, "outputs": [ @@ -6949,10 +6949,10 @@ "id": "8503f6ed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.164012Z", - "iopub.status.busy": "2023-08-21T02:29:31.163779Z", - "iopub.status.idle": "2023-08-21T02:29:31.173705Z", - "shell.execute_reply": "2023-08-21T02:29:31.169330Z" + "iopub.execute_input": "2023-08-22T07:00:14.406204Z", + "iopub.status.busy": "2023-08-22T07:00:14.406092Z", + "iopub.status.idle": "2023-08-22T07:00:14.408483Z", + "shell.execute_reply": "2023-08-22T07:00:14.408172Z" }, "lines_to_next_cell": 0 }, @@ -7014,10 +7014,10 @@ "id": "47ab71ff", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.190830Z", - "iopub.status.busy": "2023-08-21T02:29:31.190341Z", - "iopub.status.idle": "2023-08-21T02:29:31.196927Z", - "shell.execute_reply": "2023-08-21T02:29:31.195551Z" + "iopub.execute_input": "2023-08-22T07:00:14.410278Z", + "iopub.status.busy": "2023-08-22T07:00:14.410146Z", + "iopub.status.idle": "2023-08-22T07:00:14.412596Z", + "shell.execute_reply": "2023-08-22T07:00:14.412250Z" } }, "outputs": [], @@ -7041,10 +7041,10 @@ "id": "825b7073", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.199687Z", - "iopub.status.busy": "2023-08-21T02:29:31.199561Z", - "iopub.status.idle": "2023-08-21T02:29:31.520903Z", - "shell.execute_reply": "2023-08-21T02:29:31.520496Z" + "iopub.execute_input": "2023-08-22T07:00:14.414295Z", + "iopub.status.busy": "2023-08-22T07:00:14.414146Z", + "iopub.status.idle": "2023-08-22T07:00:14.676526Z", + "shell.execute_reply": "2023-08-22T07:00:14.676174Z" }, "lines_to_next_cell": 0 }, @@ -7053,2007 +7053,2007 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002961.893047336, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002961.893047336, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002909.292721532, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002909.292721532, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002842.919898538, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002842.919898538, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002759.16890147, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002759.16890147, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002653.490324104, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002653.490324104, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002520.144170538, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002520.144170538, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002351.888507718, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002351.888507718, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002139.586836109, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16002139.586836109, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001871.713040235, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001871.713040235, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001533.727331886, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001533.727331886, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001107.28977405, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16001107.28977405, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000569.269442707, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000569.269442707, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999890.496647634, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999890.496647634, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999034.192416634, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999034.192416634, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15997953.993094172, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15997953.993094172, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15996591.467783943, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15996591.467783943, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15994873.001788342, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15994873.001788342, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15992705.889472542, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15992705.889472542, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15989973.444502639, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15989973.444502639, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15986528.893835295, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15986528.893835295, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15982187.774395373, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15982187.774395373, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976718.499356627, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976718.499356627, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15969830.707495732, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15969830.707495732, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15961160.960501963, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15961160.960501963, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15950255.320705947, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15950255.320705947, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15936548.344581451, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15936548.344581451, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15919338.096469924, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15919338.096469924, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15897756.97009871, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15897756.97009871, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15870738.473491088, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15870738.473491088, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15836980.785622943, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15836980.785622943, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15794908.961932577, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15794908.961932577, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15742639.305781398, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15742639.305781398, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15677951.783964379, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15677951.783964379, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15598279.520216344, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15598279.520216344, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15500728.213326858, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15500728.213326858, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15382142.225333132, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15382142.225333132, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15239236.776243072, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15239236.776243072, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15068814.890988702, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15068814.890988702, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14868080.263148528, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14868080.263148528, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14635039.685599191, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14635039.685599191, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14368959.698660212, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14368959.698660212, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14070805.23862632, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14070805.23862632, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13743554.88143778, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13743554.88143778, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13392276.560592549, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13392276.560592549, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13023877.88091306, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13023877.88091306, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12646520.933576018, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12646520.933576018, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12268792.343592053, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12268792.343592053, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11898803.095559342, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11898803.095559342, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11543417.93091813, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11543417.93091813, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11207766.718773343, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11207766.718773343, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10895093.611569963, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10895093.611569963, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10606899.312997252, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10606899.312997252, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10343266.88124088, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10343266.88124088, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10103247.353431445, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10103247.353431445, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9885208.910573516, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9885208.910573516, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9687100.478192497, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9687100.478192497, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9506625.781409387, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9506625.781409387, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9341352.903950285, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9341352.903950285, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9188793.402093235, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9188793.402093235, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9046478.453631114, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9046478.453631114, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8912045.904589174, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8912045.904589174, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8783339.107432563, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8783339.107432563, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8658509.901020331, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8658509.901020331, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8536113.828113679, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8536113.828113679, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8415183.975072118, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8415183.975072118, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8295269.742745581, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8295269.742745581, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8176429.120013418, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8176429.120013418, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8059168.8293056125, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8059168.8293056125, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7944335.999206969, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7944335.999206969, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7832975.645216511, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7832975.645216511, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7726176.614947152, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7726176.614947152, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7624931.461247044, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7624931.461247044, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7530031.627469164, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7530031.627469164, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7442009.746564693, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7442009.746564693, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7361129.1469736025, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7361129.1469736025, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7287410.63533624, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7287410.63533624, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7220681.095616933, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7220681.095616933, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7160628.395404535, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7160628.395404535, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7106851.48376607, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7106851.48376607, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7058900.76970095, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7058900.76970095, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7016308.880858365, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7016308.880858365, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6978613.911777701, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6978613.911777701, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6945376.571027264, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6945376.571027264, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6916191.049528801, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6916191.049528801, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6890688.79244657, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6890688.79244657, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6868535.393319955, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6868535.393319955, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6849422.765039895, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6849422.765039895, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6833060.05095333, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6833060.05095333, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6819166.544534292, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6819166.544534292, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6807468.458908728, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6807468.458908728, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6797699.628345776, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6797699.628345776, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6789604.944998693, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6789604.944998693, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6782944.868629447, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6782944.868629447, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6777499.565630652, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6777499.565630652, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6773071.791553852, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6773071.791553852, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6769488.209512218, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6769488.209512218, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6766599.256783063, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6766599.256783063, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6764277.892213011, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6764277.892213011, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6762417.6162482, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6762417.6162482, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6760930.116967933, tolerance: 3200.6325551004925\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6760930.116967933, tolerance: 3200.6325551004925\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173612.82487654, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173612.82487654, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173560.33151807, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173560.33151807, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173494.093703294, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173494.093703294, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173410.51311625, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173410.51311625, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173305.049649913, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173305.049649913, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173171.975059805, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173171.975059805, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173004.062268812, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15173004.062268812, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172792.193566969, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172792.193566969, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172524.866617758, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172524.866617758, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172187.571748763, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15172187.571748763, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15171762.00720005, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15171762.00720005, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15171225.090500388, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15171225.090500388, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15170547.71354342, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15170547.71354342, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15169693.175771877, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15169693.175771877, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15168615.213598879, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15168615.213598879, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15167255.524179863, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15167255.524179863, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15165540.657224856, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15165540.657224856, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15163378.11903821, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15163378.11903821, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15160651.497821936, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15160651.497821936, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15157214.378191706, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15157214.378191706, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15152882.766135195, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15152882.766135195, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15147425.6946986, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15147425.6946986, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15140553.628850497, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15140553.628850497, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15131904.241777299, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15131904.241777299, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15121025.105980713, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15121025.105980713, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15107352.850599289, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15107352.850599289, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15090188.41286841, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15090188.41286841, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15068668.205066573, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15068668.205066573, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15041731.400110113, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15041731.400110113, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15008084.208955988, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15008084.208955988, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14966163.110870235, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14966163.110870235, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14914100.653844737, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14914100.653844737, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14849699.805850953, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14849699.805850953, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14770425.961151276, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14770425.961151276, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14673429.41690654, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14673429.41690654, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14555614.815015966, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14555614.815015966, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14413776.349016687, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14413776.349016687, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14244816.178940995, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14244816.178940995, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14046055.366934752, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14046055.366934752, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13815628.708094303, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13815628.708094303, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13552926.205683708, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13552926.205683708, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13259008.940702371, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13259008.940702371, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12936897.573228309, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12936897.573228309, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12591625.616217315, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12591625.616217315, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12229982.920676824, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12229982.920676824, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11859948.802383406, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11859948.802383406, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11489906.8603167, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11489906.8603167, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11127805.377401602, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11127805.377401602, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10780443.14443526, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10780443.14443526, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10453012.587348029, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10453012.587348029, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10148944.578529166, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10148944.578529166, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9870012.667698365, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9870012.667698365, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9616601.230672905, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9616601.230672905, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9388032.941233683, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9388032.941233683, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9182876.289070565, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9182876.289070565, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8999193.791535858, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8999193.791535858, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8834727.19434187, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8834727.19434187, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8687036.347689679, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8687036.347689679, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8553612.383287674, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8553612.383287674, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8431979.280234471, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8431979.280234471, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8319788.946660187, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8319788.946660187, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8214909.054690647, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8214909.054690647, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8115501.1056430675, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8115501.1056430675, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8020086.35524954, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8020086.35524954, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7927596.53846852, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7927596.53846852, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7837403.822275469, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7837403.822275469, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7749321.535335509, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7749321.535335509, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7663566.802084766, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7663566.802084766, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7580680.550684168, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7580680.550684168, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7501409.564666606, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7501409.564666606, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7426566.500521793, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7426566.500521793, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7356892.242162683, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7356892.242162683, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7292946.117484922, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7292946.117484922, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7235042.041596897, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7235042.041596897, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7183235.551674365, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7183235.551674365, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7137353.553695727, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7137353.553695727, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7097050.348456673, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7097050.348456673, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7061872.012726546, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7061872.012726546, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7031315.123405474, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7031315.123405474, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7004872.089238734, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7004872.089238734, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6982061.123036072, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6982061.123036072, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6962442.578610088, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6962442.578610088, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6945624.890073966, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6945624.890073966, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6931263.4663270125, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6931263.4663270125, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6919055.476661856, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6919055.476661856, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6908732.977539104, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6908732.977539104, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6900056.2920428645, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6900056.2920428645, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6892808.858171555, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6892808.858171555, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6886793.977603645, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6886793.977603645, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6881833.233569127, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6881833.233569127, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6877765.97498893, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6877765.97498893, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6874449.207170451, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6874449.207170451, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6871757.386867455, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6871757.386867455, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6869581.853912757, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6869581.853912757, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6867829.838852352, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6867829.838852352, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6866423.119345377, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6866423.119345377, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6865296.456501478, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6865296.456501478, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6864395.94700243, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6864395.94700243, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6863677.402652601, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6863677.402652601, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6863104.834999971, tolerance: 3034.7626598069196\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6863104.834999971, tolerance: 3034.7626598069196\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000126.775776321, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000126.775776321, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000067.997791689, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16000067.997791689, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999993.829780785, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999993.829780785, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999900.242584623, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999900.242584623, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999782.152469946, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999782.152469946, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999633.14527111, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999633.14527111, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999445.128467944, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999445.128467944, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999207.892430544, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15999207.892430544, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998908.557207122, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998908.557207122, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998530.875140417, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998530.875140417, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998054.351968959, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15998054.351968959, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15997453.139532348, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15997453.139532348, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15996694.641307216, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15996694.641307216, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15995737.757220387, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15995737.757220387, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15994530.675893765, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15994530.675893765, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15993008.099962447, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15993008.099962447, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15991087.762599917, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15991087.762599917, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15988666.060097354, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15988666.060097354, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15985612.585588472, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15985612.585588472, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15981763.302383827, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15981763.302383827, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976912.042096594, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976912.042096594, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15970799.954194367, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15970799.954194367, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15963102.47325135, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15963102.47325135, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15953413.314912459, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15953413.314912459, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15941224.973906962, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15941224.973906962, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15925905.198558565, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15925905.198558565, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15906668.990428165, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15906668.990428165, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15882545.878220897, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15882545.878220897, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15852342.621036042, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15852342.621036042, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15814602.219371142, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15814602.219371142, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15767561.301116722, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15767561.301116722, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15709109.781098895, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15709109.781098895, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15636759.341258615, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15636759.341258615, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15547630.840385439, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15547630.840385439, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15438475.105455775, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15438475.105455775, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15305746.07465526, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15305746.07465526, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15145748.542592412, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15145748.542592412, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14954882.27386727, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14954882.27386727, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14729996.36384661, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14729996.36384661, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14468848.510940228, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14468848.510940228, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14170631.317143818, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14170631.317143818, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13836485.361873377, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13836485.361873377, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13469879.089990832, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13469879.089990832, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13076719.754361462, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13076719.754361462, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12665089.79937819, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12665089.79937819, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12244586.676668119, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12244586.676668119, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11825360.36369123, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11825360.36369123, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11417044.801169304, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11417044.801169304, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11027817.645702794, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11027817.645702794, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10663776.910200799, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10663776.910200799, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10328716.2675956, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10328716.2675956, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10024263.64783793, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10024263.64783793, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9750266.819731826, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9750266.819731826, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9505284.688773429, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9505284.688773429, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9287065.61072085, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9287065.61072085, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9092940.776433397, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9092940.776433397, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8920108.266351493, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8920108.266351493, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8765816.866835387, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8765816.866835387, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8627473.905487, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8627473.905487, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8502702.196109628, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8502702.196109628, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8389365.458262948, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8389365.458262948, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8285575.962199782, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8285575.962199782, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8189695.129107317, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8189695.129107317, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8100335.848355204, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8100335.848355204, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8016371.614804332, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8016371.614804332, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7936951.343980087, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7936951.343980087, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7861511.843847987, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7861511.843847987, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7789775.81877588, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7789775.81877588, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7721724.491724883, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7721724.491724883, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7657540.53569288, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7657540.53569288, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7597526.506006125, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7597526.506006125, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7542012.431576015, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7542012.431576015, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7491270.131106991, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7491270.131106991, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7445449.741931618, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7445449.741931618, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7404547.164364969, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7404547.164364969, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7368402.734578147, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7368402.734578147, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7336724.612267373, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7336724.612267373, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7309126.908337014, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7309126.908337014, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7285172.53934286, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7285172.53934286, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7264413.0266303, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7264413.0266303, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7246420.465473388, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7246420.465473388, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7230809.549602925, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7230809.549602925, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7217249.407961924, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7217249.407961924, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7205466.206412938, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7205466.206412938, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7195238.325930048, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7195238.325930048, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7186386.647782039, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7186386.647782039, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7178762.875061372, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7178762.875061372, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7172238.602284237, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7172238.602284237, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7166697.001612171, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7166697.001612171, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7162027.848205515, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7162027.848205515, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7158125.584421616, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7158125.584421616, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7154889.512672326, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7154889.512672326, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7152225.062096559, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7152225.062096559, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7150045.262096591, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7150045.262096591, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7148271.882784204, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7148271.882784204, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7146836.014641162, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7146836.014641162, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7145678.080780019, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7145678.080780019, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7144747.393668608, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7144747.393668608, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7144001.407092072, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7144001.407092072, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7143404.805305656, tolerance: 3200.070250165819\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7143404.805305656, tolerance: 3200.070250165819\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766426.844425442, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766426.844425442, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766379.012219734, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766379.012219734, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766318.655993313, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766318.655993313, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766242.496938994, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766242.496938994, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766146.398082258, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766146.398082258, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766025.13980752, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13766025.13980752, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765872.136748439, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765872.136748439, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765679.08077331, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765679.08077331, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765435.490848666, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765435.490848666, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765128.145612368, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13765128.145612368, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13764740.368286435, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13764740.368286435, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13764251.12581003, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13764251.12581003, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13763633.894413952, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13763633.894413952, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13762855.231859002, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13762855.231859002, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13761872.98172164, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13761872.98172164, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13760634.01686267, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13760634.01686267, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13759071.406945651, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13759071.406945651, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13757100.867966294, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13757100.867966294, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13754616.31968939, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13754616.31968939, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13751484.339396805, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13751484.339396805, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13747537.257695232, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13747537.257695232, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13742564.595583746, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13742564.595583746, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13736302.49455343, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13736302.49455343, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13728420.749109622, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13728420.749109622, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13718507.02436845, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13718507.02436845, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13706047.848124275, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13706047.848124275, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13690406.03569032, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13690406.03569032, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13670794.381086988, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13670794.381086988, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13646245.795015218, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13646245.795015218, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13615580.679837886, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13615580.679837886, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13577373.323622873, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13577373.323622873, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13529920.608156208, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13529920.608156208, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13471218.48980598, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13471218.48980598, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13398954.581488008, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13398954.581488008, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13310528.590455977, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13310528.590455977, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13203115.797389356, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13203115.797389356, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13073790.981404455, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13073790.981404455, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12919729.112886174, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12919729.112886174, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12738491.873820404, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12738491.873820404, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12528392.752768412, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12528392.752768412, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12288907.120278118, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12288907.120278118, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12021061.050642934, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12021061.050642934, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11727704.457379244, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11727704.457379244, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11413566.98420337, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11413566.98420337, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11085024.381464427, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11085024.381464427, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10749570.986969216, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10749570.986969216, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10415080.823900381, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10415080.823900381, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10089009.138994666, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10089009.138994666, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9777704.218602655, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9777704.218602655, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9485957.157639354, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9485957.157639354, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9216836.907742979, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9216836.907742979, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8971777.239570614, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8971777.239570614, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8750831.806329573, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8750831.806329573, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8553002.845594905, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8553002.845594905, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8376568.552591967, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8376568.552591967, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8219365.99395707, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8219365.99395707, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8079015.288983279, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8079015.288983279, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7953088.9445123505, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7953088.9445123505, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7839237.297915861, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7839237.297915861, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7735280.8174845725, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7735280.8174845725, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7639277.0523840925, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7639277.0523840925, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7549567.214150196, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7549567.214150196, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7464805.436922483, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7464805.436922483, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7383972.203368484, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7383972.203368484, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7306371.938584399, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7306371.938584399, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7231613.9732326735, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7231613.9732326735, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7159576.877369866, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7159576.877369866, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7090358.567763316, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7090358.567763316, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7024217.2241215855, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7024217.2241215855, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6961509.172985473, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6961509.172985473, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6902628.941757254, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6902628.941757254, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6847954.742128507, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6847954.742128507, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6797801.388530005, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6797801.388530005, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6752382.798167879, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6752382.798167879, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6711786.944628094, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6711786.944628094, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6675965.981966857, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6675965.981966857, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6644742.448857503, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6644742.448857503, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6617829.550839442, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6617829.550839442, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6594860.867273544, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6594860.867273544, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6575423.588385814, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6575423.588385814, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6559089.833983606, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6559089.833983606, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6545442.225937976, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6545442.225937976, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6534091.895329608, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6534091.895329608, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6524688.873515937, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6524688.873515937, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6516926.039701696, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6516926.039701696, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6510538.426567688, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6510538.426567688, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6505299.7780512385, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6505299.7780512385, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6501017.943079299, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6501017.943079299, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6497530.176477653, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6497530.176477653, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6494698.902794392, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6494698.902794392, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6492408.111473216, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6492408.111473216, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6490560.3336993465, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6490560.3336993465, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6489074.074242126, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6489074.074242126, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6487881.578697735, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6487881.578697735, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6486926.855244275, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6486926.855244275, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6486163.908028902, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6486163.908028902, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6485555.163897053, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6485555.163897053, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6485070.084972435, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6485070.084972435, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6484683.961142942, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6484683.961142942, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6484376.8736711275, tolerance: 2753.321903486231\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6484376.8736711275, tolerance: 2753.321903486231\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123836.286658319, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123836.286658319, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123762.414447501, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123762.414447501, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123669.200043006, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123669.200043006, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123551.579596577, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123551.579596577, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123403.163871313, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123403.163871313, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123215.891543608, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16123215.891543608, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122979.591935372, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122979.591935372, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122681.433587788, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122681.433587788, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122305.228986472, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16122305.228986472, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16121830.55809336, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16121830.55809336, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16121231.663752725, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16121231.663752725, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16120476.060052717, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16120476.060052717, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16119522.779778486, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16119522.779778486, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16118320.168518286, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16118320.168518286, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16116803.109996723, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16116803.109996723, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16114889.538918179, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16114889.538918179, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16112476.063036688, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16112476.063036688, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16109432.47434148, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16109432.47434148, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16105594.879294181, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16105594.879294181, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16100757.119470121, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16100757.119470121, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16094660.087017829, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16094660.087017829, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16086978.46580684, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16086978.46580684, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16077304.35332688, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16077304.35332688, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16065127.149018394, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16065127.149018394, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16049809.047450969, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16049809.047450969, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16030555.476241706, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16030555.476241706, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16006379.911872495, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 16006379.911872495, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976062.758394275, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15976062.758394275, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15938104.483596483, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15938104.483596483, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15890674.11469827, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15890674.11469827, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15831555.686060235, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15831555.686060235, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15758097.525340755, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15758097.525340755, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15667172.578206709, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15667172.578206709, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15555162.420748936, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15555162.420748936, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15417983.020182043, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15417983.020182043, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15251175.908593165, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15251175.908593165, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15050092.453317674, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 15050092.453317674, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14810198.177746587, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14810198.177746587, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14527514.082835246, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14527514.082835246, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14199187.811678281, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 14199187.811678281, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13824146.920817537, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13824146.920817537, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13403734.027286602, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 13403734.027286602, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12942174.869677957, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12942174.869677957, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12446711.659031235, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 12446711.659031235, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11927272.408043081, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11927272.408043081, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11395650.820912804, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 11395650.820912804, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10864314.587176824, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10864314.587176824, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10345084.699656613, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 10345084.699656613, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9847974.664610261, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9847974.664610261, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9380422.144947704, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 9380422.144947704, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8947015.008946363, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8947015.008946363, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8549670.25861056, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8549670.25861056, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8188124.101396974, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 8188124.101396974, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7860558.677097185, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7860558.677097185, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7564216.251072414, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7564216.251072414, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7295907.831051512, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7295907.831051512, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7052382.339382325, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 7052382.339382325, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6830565.9531656, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6830565.9531656, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6627701.871803495, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6627701.871803495, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6441421.548990706, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6441421.548990706, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6269768.629955583, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6269768.629955583, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6111186.722532658, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 6111186.722532658, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5964477.8422521455, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5964477.8422521455, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5828739.876908956, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5828739.876908956, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5703294.550898104, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5703294.550898104, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5587617.998651163, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5587617.998651163, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5481282.987854576, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5481282.987854576, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5383916.678079197, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5383916.678079197, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5295172.882818847, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5295172.882818847, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5214714.536832884, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5214714.536832884, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5142200.898831903, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5142200.898831903, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5077274.992035702, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5077274.992035702, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5019549.576235791, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5019549.576235791, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4968593.444998971, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4968593.444998971, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4923922.319001433, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4923922.319001433, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4884998.717484867, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4884998.717484867, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4851242.93844572, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4851242.93844572, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4822053.96370539, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4822053.96370539, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4796836.339338534, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4796836.339338534, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4775027.808895556, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4775027.808895556, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4756122.72319144, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4756122.72319144, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4739687.533593078, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4739687.533593078, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4725366.495343714, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4725366.495343714, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4712877.711579567, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4712877.711579567, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4702001.540622955, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4702001.540622955, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4692564.7733192, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4692564.7733192, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4684424.413915036, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4684424.413915036, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4677454.213645212, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4677454.213645212, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4671535.662147184, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4671535.662147184, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4666553.581406483, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4666553.581406483, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4662395.34181063, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4662395.34181063, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4658952.2530382, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4658952.2530382, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4656121.7760819215, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4656121.7760819215, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4653809.600037627, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4653809.600037627, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4651931.081491712, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4651931.081491712, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4650411.90595999, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4650411.90595999, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4649188.052146216, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4649188.052146216, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4648205.23751574, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4648205.23751574, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4647418.038791819, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4647418.038791819, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: UserWarning: Coordinate descent without L1 regularization may lead to unexpected results and is discouraged. Set l1_ratio > 0 to add L1 regularization.\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4646788.852992944, tolerance: 3224.823681413525\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:614: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 4646788.852992944, tolerance: 3224.823681413525\n", " model = cd_fast.enet_coordinate_descent_gram(\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 3.855e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1/lib/python3.10/site-packages/sklearn/linear_model/_coordinate_descent.py:628: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 1.153e+07, tolerance: 3.855e+03 Linear regression models with null weight for the l1 regularization term are more efficiently fitted using one of the solvers implemented in sklearn.linear_model.Ridge/RidgeCV instead.\n", " model = cd_fast.enet_coordinate_descent(\n" ] }, @@ -9107,10 +9107,10 @@ "id": "efb2d25e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.523410Z", - "iopub.status.busy": "2023-08-21T02:29:31.523272Z", - "iopub.status.idle": "2023-08-21T02:29:31.579951Z", - "shell.execute_reply": "2023-08-21T02:29:31.579678Z" + "iopub.execute_input": "2023-08-22T07:00:14.678953Z", + "iopub.status.busy": "2023-08-22T07:00:14.678802Z", + "iopub.status.idle": "2023-08-22T07:00:14.728316Z", + "shell.execute_reply": "2023-08-22T07:00:14.727946Z" }, "lines_to_next_cell": 2 }, @@ -9143,10 +9143,10 @@ "id": "5d2977a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.581483Z", - "iopub.status.busy": "2023-08-21T02:29:31.581387Z", - "iopub.status.idle": "2023-08-21T02:29:31.592388Z", - "shell.execute_reply": "2023-08-21T02:29:31.592127Z" + "iopub.execute_input": "2023-08-22T07:00:14.730133Z", + "iopub.status.busy": "2023-08-22T07:00:14.730000Z", + "iopub.status.idle": "2023-08-22T07:00:14.740248Z", + "shell.execute_reply": "2023-08-22T07:00:14.739889Z" }, "lines_to_next_cell": 0 }, @@ -9177,10 +9177,10 @@ "id": "0d833201", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.593898Z", - "iopub.status.busy": "2023-08-21T02:29:31.593816Z", - "iopub.status.idle": "2023-08-21T02:29:31.766535Z", - "shell.execute_reply": "2023-08-21T02:29:31.766109Z" + "iopub.execute_input": "2023-08-22T07:00:14.742261Z", + "iopub.status.busy": "2023-08-22T07:00:14.742118Z", + "iopub.status.idle": "2023-08-22T07:00:14.896514Z", + "shell.execute_reply": "2023-08-22T07:00:14.896137Z" }, "lines_to_next_cell": 0 }, @@ -9220,10 +9220,10 @@ "id": "bfbf2fe3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.768327Z", - "iopub.status.busy": "2023-08-21T02:29:31.768191Z", - "iopub.status.idle": "2023-08-21T02:29:31.770716Z", - "shell.execute_reply": "2023-08-21T02:29:31.770428Z" + "iopub.execute_input": "2023-08-22T07:00:14.898477Z", + "iopub.status.busy": "2023-08-22T07:00:14.898358Z", + "iopub.status.idle": "2023-08-22T07:00:14.900774Z", + "shell.execute_reply": "2023-08-22T07:00:14.900366Z" } }, "outputs": [ @@ -9256,10 +9256,10 @@ "id": "ccb9a209", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.772272Z", - "iopub.status.busy": "2023-08-21T02:29:31.772160Z", - "iopub.status.idle": "2023-08-21T02:29:31.881691Z", - "shell.execute_reply": "2023-08-21T02:29:31.881374Z" + "iopub.execute_input": "2023-08-22T07:00:14.902539Z", + "iopub.status.busy": "2023-08-22T07:00:14.902374Z", + "iopub.status.idle": "2023-08-22T07:00:14.997062Z", + "shell.execute_reply": "2023-08-22T07:00:14.996746Z" } }, "outputs": [ @@ -9303,10 +9303,10 @@ "id": "40eff15b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.883735Z", - "iopub.status.busy": "2023-08-21T02:29:31.883609Z", - "iopub.status.idle": "2023-08-21T02:29:31.886519Z", - "shell.execute_reply": "2023-08-21T02:29:31.886178Z" + "iopub.execute_input": "2023-08-22T07:00:14.998878Z", + "iopub.status.busy": "2023-08-22T07:00:14.998760Z", + "iopub.status.idle": "2023-08-22T07:00:15.001284Z", + "shell.execute_reply": "2023-08-22T07:00:15.000943Z" } }, "outputs": [ @@ -9373,10 +9373,10 @@ "id": "2bd0cc9c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.888390Z", - "iopub.status.busy": "2023-08-21T02:29:31.888274Z", - "iopub.status.idle": "2023-08-21T02:29:31.893813Z", - "shell.execute_reply": "2023-08-21T02:29:31.893422Z" + "iopub.execute_input": "2023-08-22T07:00:15.003376Z", + "iopub.status.busy": "2023-08-22T07:00:15.003216Z", + "iopub.status.idle": "2023-08-22T07:00:15.007328Z", + "shell.execute_reply": "2023-08-22T07:00:15.007008Z" } }, "outputs": [ @@ -9417,10 +9417,10 @@ "id": "f188c54a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.895683Z", - "iopub.status.busy": "2023-08-21T02:29:31.895544Z", - "iopub.status.idle": "2023-08-21T02:29:31.900117Z", - "shell.execute_reply": "2023-08-21T02:29:31.899738Z" + "iopub.execute_input": "2023-08-22T07:00:15.008975Z", + "iopub.status.busy": "2023-08-22T07:00:15.008880Z", + "iopub.status.idle": "2023-08-22T07:00:15.012449Z", + "shell.execute_reply": "2023-08-22T07:00:15.012179Z" } }, "outputs": [ @@ -9460,10 +9460,10 @@ "id": "8be53659", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:31.902369Z", - "iopub.status.busy": "2023-08-21T02:29:31.902221Z", - "iopub.status.idle": "2023-08-21T02:29:32.087080Z", - "shell.execute_reply": "2023-08-21T02:29:32.086738Z" + "iopub.execute_input": "2023-08-22T07:00:15.014465Z", + "iopub.status.busy": "2023-08-22T07:00:15.014315Z", + "iopub.status.idle": "2023-08-22T07:00:15.127942Z", + "shell.execute_reply": "2023-08-22T07:00:15.127535Z" } }, "outputs": [ @@ -9520,10 +9520,10 @@ "id": "b6c30e1c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.088803Z", - "iopub.status.busy": "2023-08-21T02:29:32.088665Z", - "iopub.status.idle": "2023-08-21T02:29:32.188991Z", - "shell.execute_reply": "2023-08-21T02:29:32.188578Z" + "iopub.execute_input": "2023-08-22T07:00:15.129800Z", + "iopub.status.busy": "2023-08-22T07:00:15.129659Z", + "iopub.status.idle": "2023-08-22T07:00:15.218853Z", + "shell.execute_reply": "2023-08-22T07:00:15.218439Z" } }, "outputs": [ @@ -9575,10 +9575,10 @@ "id": "6fedf71f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.190664Z", - "iopub.status.busy": "2023-08-21T02:29:32.190543Z", - "iopub.status.idle": "2023-08-21T02:29:32.196709Z", - "shell.execute_reply": "2023-08-21T02:29:32.196462Z" + "iopub.execute_input": "2023-08-22T07:00:15.220829Z", + "iopub.status.busy": "2023-08-22T07:00:15.220699Z", + "iopub.status.idle": "2023-08-22T07:00:15.226460Z", + "shell.execute_reply": "2023-08-22T07:00:15.226111Z" }, "lines_to_next_cell": 2 }, @@ -9621,10 +9621,10 @@ "id": "f78e9153", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.198160Z", - "iopub.status.busy": "2023-08-21T02:29:32.198072Z", - "iopub.status.idle": "2023-08-21T02:29:32.201083Z", - "shell.execute_reply": "2023-08-21T02:29:32.200686Z" + "iopub.execute_input": "2023-08-22T07:00:15.228509Z", + "iopub.status.busy": "2023-08-22T07:00:15.228362Z", + "iopub.status.idle": "2023-08-22T07:00:15.230933Z", + "shell.execute_reply": "2023-08-22T07:00:15.230633Z" } }, "outputs": [ @@ -9676,10 +9676,10 @@ "id": "31120c88", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.203509Z", - "iopub.status.busy": "2023-08-21T02:29:32.203359Z", - "iopub.status.idle": "2023-08-21T02:29:32.207977Z", - "shell.execute_reply": "2023-08-21T02:29:32.207598Z" + "iopub.execute_input": "2023-08-22T07:00:15.232659Z", + "iopub.status.busy": "2023-08-22T07:00:15.232549Z", + "iopub.status.idle": "2023-08-22T07:00:15.235970Z", + "shell.execute_reply": "2023-08-22T07:00:15.235650Z" } }, "outputs": [ @@ -9718,10 +9718,10 @@ "id": "fc6b3a12", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.210299Z", - "iopub.status.busy": "2023-08-21T02:29:32.210090Z", - "iopub.status.idle": "2023-08-21T02:29:32.358906Z", - "shell.execute_reply": "2023-08-21T02:29:32.358585Z" + "iopub.execute_input": "2023-08-22T07:00:15.237863Z", + "iopub.status.busy": "2023-08-22T07:00:15.237759Z", + "iopub.status.idle": "2023-08-22T07:00:15.333920Z", + "shell.execute_reply": "2023-08-22T07:00:15.333623Z" } }, "outputs": [ @@ -9771,10 +9771,10 @@ "id": "b806f0e8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:32.362552Z", - "iopub.status.busy": "2023-08-21T02:29:32.362360Z", - "iopub.status.idle": "2023-08-21T02:29:32.464295Z", - "shell.execute_reply": "2023-08-21T02:29:32.463871Z" + "iopub.execute_input": "2023-08-22T07:00:15.335731Z", + "iopub.status.busy": "2023-08-22T07:00:15.335610Z", + "iopub.status.idle": "2023-08-22T07:00:15.425776Z", + "shell.execute_reply": "2023-08-22T07:00:15.425408Z" } }, "outputs": [ @@ -9815,7 +9815,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -9828,7 +9828,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch07-nonlin-lab.Rmd b/Ch07-nonlin-lab.Rmd index c2abf72..c595752 100644 --- a/Ch07-nonlin-lab.Rmd +++ b/Ch07-nonlin-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch07-nonlin-lab.ipynb b/Ch07-nonlin-lab.ipynb index b56a2db..347036d 100644 --- a/Ch07-nonlin-lab.ipynb +++ b/Ch07-nonlin-lab.ipynb @@ -21,10 +21,10 @@ "id": "f0d9a8c8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:33.891853Z", - "iopub.status.busy": "2023-08-21T02:29:33.891740Z", - "iopub.status.idle": "2023-08-21T02:29:35.316371Z", - "shell.execute_reply": "2023-08-21T02:29:35.315923Z" + "iopub.execute_input": "2023-08-22T07:00:19.101721Z", + "iopub.status.busy": "2023-08-22T07:00:19.101624Z", + "iopub.status.idle": "2023-08-22T07:00:20.128515Z", + "shell.execute_reply": "2023-08-22T07:00:20.128166Z" } }, "outputs": [], @@ -55,10 +55,10 @@ "id": "c4bc71b4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.320427Z", - "iopub.status.busy": "2023-08-21T02:29:35.319735Z", - "iopub.status.idle": "2023-08-21T02:29:35.335825Z", - "shell.execute_reply": "2023-08-21T02:29:35.335435Z" + "iopub.execute_input": "2023-08-22T07:00:20.130689Z", + "iopub.status.busy": "2023-08-22T07:00:20.130382Z", + "iopub.status.idle": "2023-08-22T07:00:20.144261Z", + "shell.execute_reply": "2023-08-22T07:00:20.143915Z" } }, "outputs": [], @@ -94,10 +94,10 @@ "id": "14649fd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.338249Z", - "iopub.status.busy": "2023-08-21T02:29:35.338114Z", - "iopub.status.idle": "2023-08-21T02:29:35.348243Z", - "shell.execute_reply": "2023-08-21T02:29:35.347922Z" + "iopub.execute_input": "2023-08-22T07:00:20.146307Z", + "iopub.status.busy": "2023-08-22T07:00:20.146145Z", + "iopub.status.idle": "2023-08-22T07:00:20.154062Z", + "shell.execute_reply": "2023-08-22T07:00:20.153676Z" } }, "outputs": [], @@ -124,10 +124,10 @@ "id": "bca84aa3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.350246Z", - "iopub.status.busy": "2023-08-21T02:29:35.350053Z", - "iopub.status.idle": "2023-08-21T02:29:35.474010Z", - "shell.execute_reply": "2023-08-21T02:29:35.473145Z" + "iopub.execute_input": "2023-08-22T07:00:20.155897Z", + "iopub.status.busy": "2023-08-22T07:00:20.155777Z", + "iopub.status.idle": "2023-08-22T07:00:20.258666Z", + "shell.execute_reply": "2023-08-22T07:00:20.253837Z" }, "lines_to_next_cell": 2 }, @@ -259,10 +259,10 @@ "id": "411af5ab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.479757Z", - "iopub.status.busy": "2023-08-21T02:29:35.479078Z", - "iopub.status.idle": "2023-08-21T02:29:35.483997Z", - "shell.execute_reply": "2023-08-21T02:29:35.483275Z" + "iopub.execute_input": "2023-08-22T07:00:20.267608Z", + "iopub.status.busy": "2023-08-22T07:00:20.265087Z", + "iopub.status.idle": "2023-08-22T07:00:20.272250Z", + "shell.execute_reply": "2023-08-22T07:00:20.271081Z" } }, "outputs": [], @@ -294,10 +294,10 @@ "id": "0eb6317c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.487461Z", - "iopub.status.busy": "2023-08-21T02:29:35.487287Z", - "iopub.status.idle": "2023-08-21T02:29:35.493595Z", - "shell.execute_reply": "2023-08-21T02:29:35.491379Z" + "iopub.execute_input": "2023-08-22T07:00:20.278663Z", + "iopub.status.busy": "2023-08-22T07:00:20.278281Z", + "iopub.status.idle": "2023-08-22T07:00:20.286475Z", + "shell.execute_reply": "2023-08-22T07:00:20.285277Z" }, "lines_to_next_cell": 0 }, @@ -351,10 +351,10 @@ "id": "714f2c6d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.499091Z", - "iopub.status.busy": "2023-08-21T02:29:35.498388Z", - "iopub.status.idle": "2023-08-21T02:29:35.798204Z", - "shell.execute_reply": "2023-08-21T02:29:35.797853Z" + "iopub.execute_input": "2023-08-22T07:00:20.291120Z", + "iopub.status.busy": "2023-08-22T07:00:20.289650Z", + "iopub.status.idle": "2023-08-22T07:00:20.490780Z", + "shell.execute_reply": "2023-08-22T07:00:20.489475Z" }, "lines_to_next_cell": 0 }, @@ -420,10 +420,10 @@ "id": "0f5f60ed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.799903Z", - "iopub.status.busy": "2023-08-21T02:29:35.799807Z", - "iopub.status.idle": "2023-08-21T02:29:35.885877Z", - "shell.execute_reply": "2023-08-21T02:29:35.880532Z" + "iopub.execute_input": "2023-08-22T07:00:20.501016Z", + "iopub.status.busy": "2023-08-22T07:00:20.500451Z", + "iopub.status.idle": "2023-08-22T07:00:20.542279Z", + "shell.execute_reply": "2023-08-22T07:00:20.541055Z" } }, "outputs": [ @@ -560,10 +560,10 @@ "id": "3ca7417d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.892132Z", - "iopub.status.busy": "2023-08-21T02:29:35.891945Z", - "iopub.status.idle": "2023-08-21T02:29:35.906237Z", - "shell.execute_reply": "2023-08-21T02:29:35.903796Z" + "iopub.execute_input": "2023-08-22T07:00:20.547883Z", + "iopub.status.busy": "2023-08-22T07:00:20.546804Z", + "iopub.status.idle": "2023-08-22T07:00:20.558851Z", + "shell.execute_reply": "2023-08-22T07:00:20.557712Z" }, "lines_to_next_cell": 2 }, @@ -669,10 +669,10 @@ "id": "caadfcc3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.910461Z", - "iopub.status.busy": "2023-08-21T02:29:35.909732Z", - "iopub.status.idle": "2023-08-21T02:29:35.916845Z", - "shell.execute_reply": "2023-08-21T02:29:35.914913Z" + "iopub.execute_input": "2023-08-22T07:00:20.563550Z", + "iopub.status.busy": "2023-08-22T07:00:20.562723Z", + "iopub.status.idle": "2023-08-22T07:00:20.568989Z", + "shell.execute_reply": "2023-08-22T07:00:20.568096Z" }, "lines_to_next_cell": 2 }, @@ -710,10 +710,10 @@ "id": "92de2600", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.921712Z", - "iopub.status.busy": "2023-08-21T02:29:35.921332Z", - "iopub.status.idle": "2023-08-21T02:29:35.972191Z", - "shell.execute_reply": "2023-08-21T02:29:35.968927Z" + "iopub.execute_input": "2023-08-22T07:00:20.574149Z", + "iopub.status.busy": "2023-08-22T07:00:20.573276Z", + "iopub.status.idle": "2023-08-22T07:00:20.605121Z", + "shell.execute_reply": "2023-08-22T07:00:20.604136Z" }, "lines_to_next_cell": 2 }, @@ -820,10 +820,10 @@ "id": "a4452162", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:35.977098Z", - "iopub.status.busy": "2023-08-21T02:29:35.976606Z", - "iopub.status.idle": "2023-08-21T02:29:36.071648Z", - "shell.execute_reply": "2023-08-21T02:29:36.069969Z" + "iopub.execute_input": "2023-08-22T07:00:20.609844Z", + "iopub.status.busy": "2023-08-22T07:00:20.609519Z", + "iopub.status.idle": "2023-08-22T07:00:20.635472Z", + "shell.execute_reply": "2023-08-22T07:00:20.634538Z" }, "lines_to_next_cell": 2 }, @@ -933,10 +933,10 @@ "id": "5b317cb2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.079783Z", - "iopub.status.busy": "2023-08-21T02:29:36.079376Z", - "iopub.status.idle": "2023-08-21T02:29:36.089301Z", - "shell.execute_reply": "2023-08-21T02:29:36.086171Z" + "iopub.execute_input": "2023-08-22T07:00:20.644474Z", + "iopub.status.busy": "2023-08-22T07:00:20.644125Z", + "iopub.status.idle": "2023-08-22T07:00:20.652869Z", + "shell.execute_reply": "2023-08-22T07:00:20.652118Z" } }, "outputs": [], @@ -960,10 +960,10 @@ "id": "ba682884", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.096542Z", - "iopub.status.busy": "2023-08-21T02:29:36.096230Z", - "iopub.status.idle": "2023-08-21T02:29:36.294776Z", - "shell.execute_reply": "2023-08-21T02:29:36.292034Z" + "iopub.execute_input": "2023-08-22T07:00:20.659807Z", + "iopub.status.busy": "2023-08-22T07:00:20.659436Z", + "iopub.status.idle": "2023-08-22T07:00:20.794764Z", + "shell.execute_reply": "2023-08-22T07:00:20.793804Z" }, "lines_to_next_cell": 0 }, @@ -1025,10 +1025,10 @@ "id": "84c211b3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.301026Z", - "iopub.status.busy": "2023-08-21T02:29:36.300636Z", - "iopub.status.idle": "2023-08-21T02:29:36.330683Z", - "shell.execute_reply": "2023-08-21T02:29:36.329634Z" + "iopub.execute_input": "2023-08-22T07:00:20.802014Z", + "iopub.status.busy": "2023-08-22T07:00:20.801524Z", + "iopub.status.idle": "2023-08-22T07:00:20.820547Z", + "shell.execute_reply": "2023-08-22T07:00:20.819213Z" }, "lines_to_next_cell": 2 }, @@ -1154,10 +1154,10 @@ "id": "60466a94", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.335194Z", - "iopub.status.busy": "2023-08-21T02:29:36.334390Z", - "iopub.status.idle": "2023-08-21T02:29:36.342883Z", - "shell.execute_reply": "2023-08-21T02:29:36.341853Z" + "iopub.execute_input": "2023-08-22T07:00:20.827052Z", + "iopub.status.busy": "2023-08-22T07:00:20.826622Z", + "iopub.status.idle": "2023-08-22T07:00:20.840226Z", + "shell.execute_reply": "2023-08-22T07:00:20.838401Z" }, "lines_to_next_cell": 0 }, @@ -1197,10 +1197,10 @@ "id": "ff6d9fcb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.348667Z", - "iopub.status.busy": "2023-08-21T02:29:36.347888Z", - "iopub.status.idle": "2023-08-21T02:29:36.376193Z", - "shell.execute_reply": "2023-08-21T02:29:36.375375Z" + "iopub.execute_input": "2023-08-22T07:00:20.847470Z", + "iopub.status.busy": "2023-08-22T07:00:20.846698Z", + "iopub.status.idle": "2023-08-22T07:00:20.876785Z", + "shell.execute_reply": "2023-08-22T07:00:20.874921Z" }, "lines_to_next_cell": 0 }, @@ -1323,10 +1323,10 @@ "id": "2a206718", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.386789Z", - "iopub.status.busy": "2023-08-21T02:29:36.386044Z", - "iopub.status.idle": "2023-08-21T02:29:36.418061Z", - "shell.execute_reply": "2023-08-21T02:29:36.416433Z" + "iopub.execute_input": "2023-08-22T07:00:20.884203Z", + "iopub.status.busy": "2023-08-22T07:00:20.883987Z", + "iopub.status.idle": "2023-08-22T07:00:20.912686Z", + "shell.execute_reply": "2023-08-22T07:00:20.910961Z" } }, "outputs": [ @@ -1459,10 +1459,10 @@ "id": "766241f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.425365Z", - "iopub.status.busy": "2023-08-21T02:29:36.424580Z", - "iopub.status.idle": "2023-08-21T02:29:36.432225Z", - "shell.execute_reply": "2023-08-21T02:29:36.431397Z" + "iopub.execute_input": "2023-08-22T07:00:20.920607Z", + "iopub.status.busy": "2023-08-22T07:00:20.918963Z", + "iopub.status.idle": "2023-08-22T07:00:20.929300Z", + "shell.execute_reply": "2023-08-22T07:00:20.928186Z" }, "lines_to_next_cell": 0 }, @@ -1504,10 +1504,10 @@ "id": "71b3ac84", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.443753Z", - "iopub.status.busy": "2023-08-21T02:29:36.443393Z", - "iopub.status.idle": "2023-08-21T02:29:36.490069Z", - "shell.execute_reply": "2023-08-21T02:29:36.489170Z" + "iopub.execute_input": "2023-08-22T07:00:20.943822Z", + "iopub.status.busy": "2023-08-22T07:00:20.943014Z", + "iopub.status.idle": "2023-08-22T07:00:20.968025Z", + "shell.execute_reply": "2023-08-22T07:00:20.966003Z" }, "lines_to_next_cell": 0 }, @@ -1638,10 +1638,10 @@ "id": "eb35ef98", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.498313Z", - "iopub.status.busy": "2023-08-21T02:29:36.498133Z", - "iopub.status.idle": "2023-08-21T02:29:36.532175Z", - "shell.execute_reply": "2023-08-21T02:29:36.530924Z" + "iopub.execute_input": "2023-08-22T07:00:20.975032Z", + "iopub.status.busy": "2023-08-22T07:00:20.974773Z", + "iopub.status.idle": "2023-08-22T07:00:21.001621Z", + "shell.execute_reply": "2023-08-22T07:00:20.999410Z" }, "lines_to_next_cell": 0 }, @@ -1755,10 +1755,10 @@ "id": "78b393fe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.541740Z", - "iopub.status.busy": "2023-08-21T02:29:36.541236Z", - "iopub.status.idle": "2023-08-21T02:29:36.729893Z", - "shell.execute_reply": "2023-08-21T02:29:36.728852Z" + "iopub.execute_input": "2023-08-22T07:00:21.009111Z", + "iopub.status.busy": "2023-08-22T07:00:21.008401Z", + "iopub.status.idle": "2023-08-22T07:00:21.127979Z", + "shell.execute_reply": "2023-08-22T07:00:21.126680Z" } }, "outputs": [ @@ -1803,10 +1803,10 @@ "id": "cb014cc6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.738629Z", - "iopub.status.busy": "2023-08-21T02:29:36.738138Z", - "iopub.status.idle": "2023-08-21T02:29:36.783309Z", - "shell.execute_reply": "2023-08-21T02:29:36.781945Z" + "iopub.execute_input": "2023-08-22T07:00:21.135155Z", + "iopub.status.busy": "2023-08-22T07:00:21.134355Z", + "iopub.status.idle": "2023-08-22T07:00:21.153025Z", + "shell.execute_reply": "2023-08-22T07:00:21.152246Z" } }, "outputs": [ @@ -1849,10 +1849,10 @@ "id": "106dc178", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:36.791911Z", - "iopub.status.busy": "2023-08-21T02:29:36.791104Z", - "iopub.status.idle": "2023-08-21T02:29:37.275891Z", - "shell.execute_reply": "2023-08-21T02:29:37.275551Z" + "iopub.execute_input": "2023-08-22T07:00:21.159707Z", + "iopub.status.busy": "2023-08-22T07:00:21.159506Z", + "iopub.status.idle": "2023-08-22T07:00:21.446559Z", + "shell.execute_reply": "2023-08-22T07:00:21.445625Z" } }, "outputs": [ @@ -1895,10 +1895,10 @@ "id": "d0334df0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:37.277695Z", - "iopub.status.busy": "2023-08-21T02:29:37.277558Z", - "iopub.status.idle": "2023-08-21T02:29:38.159528Z", - "shell.execute_reply": "2023-08-21T02:29:38.158089Z" + "iopub.execute_input": "2023-08-22T07:00:21.454580Z", + "iopub.status.busy": "2023-08-22T07:00:21.453805Z", + "iopub.status.idle": "2023-08-22T07:00:21.741596Z", + "shell.execute_reply": "2023-08-22T07:00:21.740381Z" } }, "outputs": [ @@ -1950,10 +1950,10 @@ "id": "e00ec554", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:38.167367Z", - "iopub.status.busy": "2023-08-21T02:29:38.166718Z", - "iopub.status.idle": "2023-08-21T02:29:38.206501Z", - "shell.execute_reply": "2023-08-21T02:29:38.203694Z" + "iopub.execute_input": "2023-08-22T07:00:21.748135Z", + "iopub.status.busy": "2023-08-22T07:00:21.747093Z", + "iopub.status.idle": "2023-08-22T07:00:21.771304Z", + "shell.execute_reply": "2023-08-22T07:00:21.768895Z" }, "lines_to_next_cell": 2 }, @@ -1992,10 +1992,10 @@ "id": "28e301a2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:38.216727Z", - "iopub.status.busy": "2023-08-21T02:29:38.215858Z", - "iopub.status.idle": "2023-08-21T02:29:38.814109Z", - "shell.execute_reply": "2023-08-21T02:29:38.813789Z" + "iopub.execute_input": "2023-08-22T07:00:21.776636Z", + "iopub.status.busy": "2023-08-22T07:00:21.775975Z", + "iopub.status.idle": "2023-08-22T07:00:22.088656Z", + "shell.execute_reply": "2023-08-22T07:00:22.087101Z" } }, "outputs": [ @@ -2054,10 +2054,10 @@ "id": "7988af75", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:38.815771Z", - "iopub.status.busy": "2023-08-21T02:29:38.815666Z", - "iopub.status.idle": "2023-08-21T02:29:38.846626Z", - "shell.execute_reply": "2023-08-21T02:29:38.845296Z" + "iopub.execute_input": "2023-08-22T07:00:22.093999Z", + "iopub.status.busy": "2023-08-22T07:00:22.092990Z", + "iopub.status.idle": "2023-08-22T07:00:22.104732Z", + "shell.execute_reply": "2023-08-22T07:00:22.103894Z" }, "lines_to_next_cell": 0 }, @@ -2093,10 +2093,10 @@ "id": "1a4803f3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:38.852512Z", - "iopub.status.busy": "2023-08-21T02:29:38.851848Z", - "iopub.status.idle": "2023-08-21T02:29:39.089982Z", - "shell.execute_reply": "2023-08-21T02:29:39.089296Z" + "iopub.execute_input": "2023-08-22T07:00:22.111630Z", + "iopub.status.busy": "2023-08-22T07:00:22.109538Z", + "iopub.status.idle": "2023-08-22T07:00:22.238185Z", + "shell.execute_reply": "2023-08-22T07:00:22.237011Z" }, "lines_to_next_cell": 0 }, @@ -2156,10 +2156,10 @@ "id": "dc655431", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.094771Z", - "iopub.status.busy": "2023-08-21T02:29:39.093629Z", - "iopub.status.idle": "2023-08-21T02:29:39.227174Z", - "shell.execute_reply": "2023-08-21T02:29:39.226787Z" + "iopub.execute_input": "2023-08-22T07:00:22.242955Z", + "iopub.status.busy": "2023-08-22T07:00:22.242470Z", + "iopub.status.idle": "2023-08-22T07:00:22.377106Z", + "shell.execute_reply": "2023-08-22T07:00:22.375348Z" } }, "outputs": [ @@ -2217,10 +2217,10 @@ "id": "90ea4ff0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.228985Z", - "iopub.status.busy": "2023-08-21T02:29:39.228844Z", - "iopub.status.idle": "2023-08-21T02:29:39.289822Z", - "shell.execute_reply": "2023-08-21T02:29:39.286542Z" + "iopub.execute_input": "2023-08-22T07:00:22.382764Z", + "iopub.status.busy": "2023-08-22T07:00:22.381824Z", + "iopub.status.idle": "2023-08-22T07:00:22.403585Z", + "shell.execute_reply": "2023-08-22T07:00:22.401813Z" }, "lines_to_next_cell": 0 }, @@ -2254,10 +2254,10 @@ "id": "104bc542", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.297216Z", - "iopub.status.busy": "2023-08-21T02:29:39.295538Z", - "iopub.status.idle": "2023-08-21T02:29:39.509987Z", - "shell.execute_reply": "2023-08-21T02:29:39.505606Z" + "iopub.execute_input": "2023-08-22T07:00:22.408939Z", + "iopub.status.busy": "2023-08-22T07:00:22.408540Z", + "iopub.status.idle": "2023-08-22T07:00:22.524209Z", + "shell.execute_reply": "2023-08-22T07:00:22.522972Z" } }, "outputs": [ @@ -2297,10 +2297,10 @@ "id": "d5884f39", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.515536Z", - "iopub.status.busy": "2023-08-21T02:29:39.514906Z", - "iopub.status.idle": "2023-08-21T02:29:39.590528Z", - "shell.execute_reply": "2023-08-21T02:29:39.587475Z" + "iopub.execute_input": "2023-08-22T07:00:22.529074Z", + "iopub.status.busy": "2023-08-22T07:00:22.528274Z", + "iopub.status.idle": "2023-08-22T07:00:22.562860Z", + "shell.execute_reply": "2023-08-22T07:00:22.561973Z" }, "lines_to_next_cell": 0 }, @@ -2330,10 +2330,10 @@ "id": "9155767c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.595864Z", - "iopub.status.busy": "2023-08-21T02:29:39.595093Z", - "iopub.status.idle": "2023-08-21T02:29:39.751046Z", - "shell.execute_reply": "2023-08-21T02:29:39.747430Z" + "iopub.execute_input": "2023-08-22T07:00:22.569210Z", + "iopub.status.busy": "2023-08-22T07:00:22.568849Z", + "iopub.status.idle": "2023-08-22T07:00:22.677881Z", + "shell.execute_reply": "2023-08-22T07:00:22.676932Z" }, "lines_to_next_cell": 0 }, @@ -2383,10 +2383,10 @@ "id": "048524d1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.765191Z", - "iopub.status.busy": "2023-08-21T02:29:39.764636Z", - "iopub.status.idle": "2023-08-21T02:29:39.875769Z", - "shell.execute_reply": "2023-08-21T02:29:39.875407Z" + "iopub.execute_input": "2023-08-22T07:00:22.685366Z", + "iopub.status.busy": "2023-08-22T07:00:22.684753Z", + "iopub.status.idle": "2023-08-22T07:00:22.790525Z", + "shell.execute_reply": "2023-08-22T07:00:22.789666Z" } }, "outputs": [ @@ -2430,10 +2430,10 @@ "id": "3d632d24", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:39.878255Z", - "iopub.status.busy": "2023-08-21T02:29:39.878128Z", - "iopub.status.idle": "2023-08-21T02:29:40.030675Z", - "shell.execute_reply": "2023-08-21T02:29:40.030077Z" + "iopub.execute_input": "2023-08-22T07:00:22.797262Z", + "iopub.status.busy": "2023-08-22T07:00:22.796333Z", + "iopub.status.idle": "2023-08-22T07:00:22.839603Z", + "shell.execute_reply": "2023-08-22T07:00:22.837625Z" } }, "outputs": [ @@ -2477,10 +2477,10 @@ "id": "f5e21a13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:40.036373Z", - "iopub.status.busy": "2023-08-21T02:29:40.035626Z", - "iopub.status.idle": "2023-08-21T02:29:40.048244Z", - "shell.execute_reply": "2023-08-21T02:29:40.047103Z" + "iopub.execute_input": "2023-08-22T07:00:22.850660Z", + "iopub.status.busy": "2023-08-22T07:00:22.849974Z", + "iopub.status.idle": "2023-08-22T07:00:22.858653Z", + "shell.execute_reply": "2023-08-22T07:00:22.857543Z" }, "lines_to_next_cell": 0 }, @@ -2584,10 +2584,10 @@ "id": "6bc84bd9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:40.053032Z", - "iopub.status.busy": "2023-08-21T02:29:40.052718Z", - "iopub.status.idle": "2023-08-21T02:29:40.121414Z", - "shell.execute_reply": "2023-08-21T02:29:40.119305Z" + "iopub.execute_input": "2023-08-22T07:00:22.866946Z", + "iopub.status.busy": "2023-08-22T07:00:22.866205Z", + "iopub.status.idle": "2023-08-22T07:00:22.902537Z", + "shell.execute_reply": "2023-08-22T07:00:22.901746Z" } }, "outputs": [ @@ -2694,10 +2694,10 @@ "id": "dd9e0491", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:40.127853Z", - "iopub.status.busy": "2023-08-21T02:29:40.126917Z", - "iopub.status.idle": "2023-08-21T02:29:40.134348Z", - "shell.execute_reply": "2023-08-21T02:29:40.133225Z" + "iopub.execute_input": "2023-08-22T07:00:22.910365Z", + "iopub.status.busy": "2023-08-22T07:00:22.909672Z", + "iopub.status.idle": "2023-08-22T07:00:22.916982Z", + "shell.execute_reply": "2023-08-22T07:00:22.915954Z" } }, "outputs": [ @@ -2736,7 +2736,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_81087/2135516388.py:1: UserWarning: KNOWN BUG: p-values computed in this summary are likely much smaller than they should be. \n", + "/var/folders/16/8y65_zv174qgdp4ktlmpv12h0000gq/T/ipykernel_84754/2135516388.py:1: UserWarning: KNOWN BUG: p-values computed in this summary are likely much smaller than they should be. \n", " \n", "Please do not make inferences based on these values! \n", "\n", @@ -2767,10 +2767,10 @@ "id": "cb3cb4ef", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:40.140991Z", - "iopub.status.busy": "2023-08-21T02:29:40.139059Z", - "iopub.status.idle": "2023-08-21T02:29:40.156398Z", - "shell.execute_reply": "2023-08-21T02:29:40.154898Z" + "iopub.execute_input": "2023-08-22T07:00:22.924618Z", + "iopub.status.busy": "2023-08-22T07:00:22.924291Z", + "iopub.status.idle": "2023-08-22T07:00:22.938562Z", + "shell.execute_reply": "2023-08-22T07:00:22.937364Z" } }, "outputs": [], @@ -2793,10 +2793,10 @@ "id": "583711cb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:40.161933Z", - "iopub.status.busy": "2023-08-21T02:29:40.161044Z", - "iopub.status.idle": "2023-08-21T02:29:41.074609Z", - "shell.execute_reply": "2023-08-21T02:29:41.073657Z" + "iopub.execute_input": "2023-08-22T07:00:22.946138Z", + "iopub.status.busy": "2023-08-22T07:00:22.945678Z", + "iopub.status.idle": "2023-08-22T07:00:23.056404Z", + "shell.execute_reply": "2023-08-22T07:00:23.054342Z" }, "lines_to_next_cell": 2 }, @@ -2827,10 +2827,10 @@ "id": "259d273b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.077991Z", - "iopub.status.busy": "2023-08-21T02:29:41.077451Z", - "iopub.status.idle": "2023-08-21T02:29:41.210787Z", - "shell.execute_reply": "2023-08-21T02:29:41.209817Z" + "iopub.execute_input": "2023-08-22T07:00:23.062645Z", + "iopub.status.busy": "2023-08-22T07:00:23.062312Z", + "iopub.status.idle": "2023-08-22T07:00:23.191981Z", + "shell.execute_reply": "2023-08-22T07:00:23.190477Z" }, "lines_to_next_cell": 0 }, @@ -2871,10 +2871,10 @@ "id": "71dde739", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.214250Z", - "iopub.status.busy": "2023-08-21T02:29:41.213993Z", - "iopub.status.idle": "2023-08-21T02:29:41.230586Z", - "shell.execute_reply": "2023-08-21T02:29:41.229987Z" + "iopub.execute_input": "2023-08-22T07:00:23.199542Z", + "iopub.status.busy": "2023-08-22T07:00:23.199201Z", + "iopub.status.idle": "2023-08-22T07:00:23.217281Z", + "shell.execute_reply": "2023-08-22T07:00:23.216211Z" }, "lines_to_next_cell": 0 }, @@ -2980,10 +2980,10 @@ "id": "126b4433", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.236028Z", - "iopub.status.busy": "2023-08-21T02:29:41.234087Z", - "iopub.status.idle": "2023-08-21T02:29:41.242018Z", - "shell.execute_reply": "2023-08-21T02:29:41.240913Z" + "iopub.execute_input": "2023-08-22T07:00:23.225140Z", + "iopub.status.busy": "2023-08-22T07:00:23.224675Z", + "iopub.status.idle": "2023-08-22T07:00:23.231622Z", + "shell.execute_reply": "2023-08-22T07:00:23.230728Z" }, "lines_to_next_cell": 0 }, @@ -3014,10 +3014,10 @@ "id": "71357343", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.246132Z", - "iopub.status.busy": "2023-08-21T02:29:41.245849Z", - "iopub.status.idle": "2023-08-21T02:29:41.516225Z", - "shell.execute_reply": "2023-08-21T02:29:41.513222Z" + "iopub.execute_input": "2023-08-22T07:00:23.238285Z", + "iopub.status.busy": "2023-08-22T07:00:23.237444Z", + "iopub.status.idle": "2023-08-22T07:00:23.300732Z", + "shell.execute_reply": "2023-08-22T07:00:23.299079Z" }, "lines_to_next_cell": 2 }, @@ -3057,10 +3057,10 @@ "id": "568fe30f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.521913Z", - "iopub.status.busy": "2023-08-21T02:29:41.521643Z", - "iopub.status.idle": "2023-08-21T02:29:41.650531Z", - "shell.execute_reply": "2023-08-21T02:29:41.648645Z" + "iopub.execute_input": "2023-08-22T07:00:23.308132Z", + "iopub.status.busy": "2023-08-22T07:00:23.307471Z", + "iopub.status.idle": "2023-08-22T07:00:23.412833Z", + "shell.execute_reply": "2023-08-22T07:00:23.411958Z" } }, "outputs": [ @@ -3091,10 +3091,10 @@ "id": "56f3acef", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.656894Z", - "iopub.status.busy": "2023-08-21T02:29:41.656175Z", - "iopub.status.idle": "2023-08-21T02:29:41.778189Z", - "shell.execute_reply": "2023-08-21T02:29:41.777902Z" + "iopub.execute_input": "2023-08-22T07:00:23.419875Z", + "iopub.status.busy": "2023-08-22T07:00:23.419189Z", + "iopub.status.idle": "2023-08-22T07:00:23.528901Z", + "shell.execute_reply": "2023-08-22T07:00:23.527531Z" } }, "outputs": [ @@ -3124,10 +3124,10 @@ "id": "74d23615", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.779880Z", - "iopub.status.busy": "2023-08-21T02:29:41.779764Z", - "iopub.status.idle": "2023-08-21T02:29:41.891093Z", - "shell.execute_reply": "2023-08-21T02:29:41.890788Z" + "iopub.execute_input": "2023-08-22T07:00:23.533975Z", + "iopub.status.busy": "2023-08-22T07:00:23.533655Z", + "iopub.status.idle": "2023-08-22T07:00:23.643883Z", + "shell.execute_reply": "2023-08-22T07:00:23.643400Z" }, "lines_to_next_cell": 2 }, @@ -3172,10 +3172,10 @@ "id": "5a0046bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:41.892708Z", - "iopub.status.busy": "2023-08-21T02:29:41.892590Z", - "iopub.status.idle": "2023-08-21T02:29:42.034991Z", - "shell.execute_reply": "2023-08-21T02:29:42.034633Z" + "iopub.execute_input": "2023-08-22T07:00:23.646013Z", + "iopub.status.busy": "2023-08-22T07:00:23.645883Z", + "iopub.status.idle": "2023-08-22T07:00:23.774046Z", + "shell.execute_reply": "2023-08-22T07:00:23.773509Z" }, "lines_to_next_cell": 0 }, @@ -3222,7 +3222,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -3235,7 +3235,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch08-baggboost-lab.Rmd b/Ch08-baggboost-lab.Rmd index 50e480c..67a23d6 100644 --- a/Ch08-baggboost-lab.Rmd +++ b/Ch08-baggboost-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch08-baggboost-lab.ipynb b/Ch08-baggboost-lab.ipynb index 0aaa6ac..b378a78 100644 --- a/Ch08-baggboost-lab.ipynb +++ b/Ch08-baggboost-lab.ipynb @@ -26,10 +26,10 @@ "id": "5061d7d5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:43.521031Z", - "iopub.status.busy": "2023-08-21T02:29:43.520759Z", - "iopub.status.idle": "2023-08-21T02:29:44.874525Z", - "shell.execute_reply": "2023-08-21T02:29:44.874222Z" + "iopub.execute_input": "2023-08-22T07:00:27.086529Z", + "iopub.status.busy": "2023-08-22T07:00:27.086444Z", + "iopub.status.idle": "2023-08-22T07:00:28.125805Z", + "shell.execute_reply": "2023-08-22T07:00:28.125477Z" }, "lines_to_next_cell": 0 }, @@ -58,10 +58,10 @@ "id": "747b056a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.876483Z", - "iopub.status.busy": "2023-08-21T02:29:44.876317Z", - "iopub.status.idle": "2023-08-21T02:29:44.941466Z", - "shell.execute_reply": "2023-08-21T02:29:44.941148Z" + "iopub.execute_input": "2023-08-22T07:00:28.127941Z", + "iopub.status.busy": "2023-08-22T07:00:28.127762Z", + "iopub.status.idle": "2023-08-22T07:00:28.677332Z", + "shell.execute_reply": "2023-08-22T07:00:28.676967Z" }, "lines_to_next_cell": 2 }, @@ -106,10 +106,10 @@ "id": "a29167fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.943319Z", - "iopub.status.busy": "2023-08-21T02:29:44.943207Z", - "iopub.status.idle": "2023-08-21T02:29:44.948609Z", - "shell.execute_reply": "2023-08-21T02:29:44.948363Z" + "iopub.execute_input": "2023-08-22T07:00:28.679410Z", + "iopub.status.busy": "2023-08-22T07:00:28.679295Z", + "iopub.status.idle": "2023-08-22T07:00:28.684543Z", + "shell.execute_reply": "2023-08-22T07:00:28.684233Z" } }, "outputs": [], @@ -137,10 +137,10 @@ "id": "9fc6c8b9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.950122Z", - "iopub.status.busy": "2023-08-21T02:29:44.950017Z", - "iopub.status.idle": "2023-08-21T02:29:44.964042Z", - "shell.execute_reply": "2023-08-21T02:29:44.963794Z" + "iopub.execute_input": "2023-08-22T07:00:28.686277Z", + "iopub.status.busy": "2023-08-22T07:00:28.686146Z", + "iopub.status.idle": "2023-08-22T07:00:28.699975Z", + "shell.execute_reply": "2023-08-22T07:00:28.699627Z" }, "lines_to_next_cell": 0 }, @@ -172,10 +172,10 @@ "id": "533f0949", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.965639Z", - "iopub.status.busy": "2023-08-21T02:29:44.965555Z", - "iopub.status.idle": "2023-08-21T02:29:44.972079Z", - "shell.execute_reply": "2023-08-21T02:29:44.971812Z" + "iopub.execute_input": "2023-08-22T07:00:28.702236Z", + "iopub.status.busy": "2023-08-22T07:00:28.702106Z", + "iopub.status.idle": "2023-08-22T07:00:28.707600Z", + "shell.execute_reply": "2023-08-22T07:00:28.707288Z" }, "lines_to_next_cell": 2 }, @@ -224,10 +224,10 @@ "id": "c4a8718e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.973649Z", - "iopub.status.busy": "2023-08-21T02:29:44.973541Z", - "iopub.status.idle": "2023-08-21T02:29:44.976459Z", - "shell.execute_reply": "2023-08-21T02:29:44.976196Z" + "iopub.execute_input": "2023-08-22T07:00:28.709124Z", + "iopub.status.busy": "2023-08-22T07:00:28.709024Z", + "iopub.status.idle": "2023-08-22T07:00:28.711727Z", + "shell.execute_reply": "2023-08-22T07:00:28.711484Z" }, "lines_to_next_cell": 2 }, @@ -271,10 +271,10 @@ "id": "2fe92cb1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.977909Z", - "iopub.status.busy": "2023-08-21T02:29:44.977813Z", - "iopub.status.idle": "2023-08-21T02:29:44.980904Z", - "shell.execute_reply": "2023-08-21T02:29:44.980648Z" + "iopub.execute_input": "2023-08-22T07:00:28.713483Z", + "iopub.status.busy": "2023-08-22T07:00:28.713358Z", + "iopub.status.idle": "2023-08-22T07:00:28.716712Z", + "shell.execute_reply": "2023-08-22T07:00:28.716377Z" } }, "outputs": [ @@ -314,10 +314,10 @@ "id": "823745dc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:44.982460Z", - "iopub.status.busy": "2023-08-21T02:29:44.982347Z", - "iopub.status.idle": "2023-08-21T02:29:45.271601Z", - "shell.execute_reply": "2023-08-21T02:29:45.271198Z" + "iopub.execute_input": "2023-08-22T07:00:28.718214Z", + "iopub.status.busy": "2023-08-22T07:00:28.718128Z", + "iopub.status.idle": "2023-08-22T07:00:28.972065Z", + "shell.execute_reply": "2023-08-22T07:00:28.971661Z" }, "lines_to_next_cell": 0 }, @@ -362,10 +362,10 @@ "id": "38ec5f13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.273437Z", - "iopub.status.busy": "2023-08-21T02:29:45.273325Z", - "iopub.status.idle": "2023-08-21T02:29:45.276242Z", - "shell.execute_reply": "2023-08-21T02:29:45.275887Z" + "iopub.execute_input": "2023-08-22T07:00:28.974012Z", + "iopub.status.busy": "2023-08-22T07:00:28.973872Z", + "iopub.status.idle": "2023-08-22T07:00:28.976664Z", + "shell.execute_reply": "2023-08-22T07:00:28.976277Z" } }, "outputs": [ @@ -427,10 +427,10 @@ "id": "3959f39a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.277931Z", - "iopub.status.busy": "2023-08-21T02:29:45.277817Z", - "iopub.status.idle": "2023-08-21T02:29:45.284043Z", - "shell.execute_reply": "2023-08-21T02:29:45.283649Z" + "iopub.execute_input": "2023-08-22T07:00:28.978468Z", + "iopub.status.busy": "2023-08-22T07:00:28.978343Z", + "iopub.status.idle": "2023-08-22T07:00:28.984086Z", + "shell.execute_reply": "2023-08-22T07:00:28.983816Z" }, "lines_to_next_cell": 0 }, @@ -483,10 +483,10 @@ "id": "201c4690", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.286011Z", - "iopub.status.busy": "2023-08-21T02:29:45.285866Z", - "iopub.status.idle": "2023-08-21T02:29:45.288396Z", - "shell.execute_reply": "2023-08-21T02:29:45.288038Z" + "iopub.execute_input": "2023-08-22T07:00:28.986102Z", + "iopub.status.busy": "2023-08-22T07:00:28.985936Z", + "iopub.status.idle": "2023-08-22T07:00:28.988314Z", + "shell.execute_reply": "2023-08-22T07:00:28.988003Z" }, "lines_to_next_cell": 0 }, @@ -516,10 +516,10 @@ "id": "a8dc5c3a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.290090Z", - "iopub.status.busy": "2023-08-21T02:29:45.289979Z", - "iopub.status.idle": "2023-08-21T02:29:45.293957Z", - "shell.execute_reply": "2023-08-21T02:29:45.293696Z" + "iopub.execute_input": "2023-08-22T07:00:28.990208Z", + "iopub.status.busy": "2023-08-22T07:00:28.990083Z", + "iopub.status.idle": "2023-08-22T07:00:28.994160Z", + "shell.execute_reply": "2023-08-22T07:00:28.993813Z" }, "lines_to_next_cell": 0 }, @@ -556,10 +556,10 @@ "id": "0cbe0d28", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.295541Z", - "iopub.status.busy": "2023-08-21T02:29:45.295458Z", - "iopub.status.idle": "2023-08-21T02:29:45.299182Z", - "shell.execute_reply": "2023-08-21T02:29:45.298807Z" + "iopub.execute_input": "2023-08-22T07:00:28.996199Z", + "iopub.status.busy": "2023-08-22T07:00:28.996086Z", + "iopub.status.idle": "2023-08-22T07:00:28.999517Z", + "shell.execute_reply": "2023-08-22T07:00:28.999166Z" }, "lines_to_next_cell": 0 }, @@ -586,10 +586,10 @@ "id": "ea649080", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.300868Z", - "iopub.status.busy": "2023-08-21T02:29:45.300771Z", - "iopub.status.idle": "2023-08-21T02:29:45.571746Z", - "shell.execute_reply": "2023-08-21T02:29:45.571364Z" + "iopub.execute_input": "2023-08-22T07:00:29.001372Z", + "iopub.status.busy": "2023-08-22T07:00:29.001246Z", + "iopub.status.idle": "2023-08-22T07:00:29.236635Z", + "shell.execute_reply": "2023-08-22T07:00:29.236312Z" }, "lines_to_next_cell": 0 }, @@ -629,10 +629,10 @@ "id": "e005da14", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:45.573701Z", - "iopub.status.busy": "2023-08-21T02:29:45.573563Z", - "iopub.status.idle": "2023-08-21T02:29:46.379024Z", - "shell.execute_reply": "2023-08-21T02:29:46.378601Z" + "iopub.execute_input": "2023-08-22T07:00:29.238455Z", + "iopub.status.busy": "2023-08-22T07:00:29.238325Z", + "iopub.status.idle": "2023-08-22T07:00:29.937364Z", + "shell.execute_reply": "2023-08-22T07:00:29.937016Z" }, "lines_to_next_cell": 0 }, @@ -671,10 +671,10 @@ "id": "23324f7e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.381085Z", - "iopub.status.busy": "2023-08-21T02:29:46.380960Z", - "iopub.status.idle": "2023-08-21T02:29:46.383318Z", - "shell.execute_reply": "2023-08-21T02:29:46.383057Z" + "iopub.execute_input": "2023-08-22T07:00:29.939343Z", + "iopub.status.busy": "2023-08-22T07:00:29.939187Z", + "iopub.status.idle": "2023-08-22T07:00:29.942069Z", + "shell.execute_reply": "2023-08-22T07:00:29.941716Z" }, "lines_to_next_cell": 0 }, @@ -711,10 +711,10 @@ "id": "6dcd8b37", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.385077Z", - "iopub.status.busy": "2023-08-21T02:29:46.384936Z", - "iopub.status.idle": "2023-08-21T02:29:46.392841Z", - "shell.execute_reply": "2023-08-21T02:29:46.392541Z" + "iopub.execute_input": "2023-08-22T07:00:29.943944Z", + "iopub.status.busy": "2023-08-22T07:00:29.943797Z", + "iopub.status.idle": "2023-08-22T07:00:29.951177Z", + "shell.execute_reply": "2023-08-22T07:00:29.950818Z" }, "lines_to_next_cell": 2 }, @@ -817,10 +817,10 @@ "id": "0459d3a9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.395016Z", - "iopub.status.busy": "2023-08-21T02:29:46.394693Z", - "iopub.status.idle": "2023-08-21T02:29:46.408492Z", - "shell.execute_reply": "2023-08-21T02:29:46.408187Z" + "iopub.execute_input": "2023-08-22T07:00:29.953197Z", + "iopub.status.busy": "2023-08-22T07:00:29.952962Z", + "iopub.status.idle": "2023-08-22T07:00:29.965364Z", + "shell.execute_reply": "2023-08-22T07:00:29.965021Z" } }, "outputs": [], @@ -847,10 +847,10 @@ "id": "34bf2864", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.411065Z", - "iopub.status.busy": "2023-08-21T02:29:46.410850Z", - "iopub.status.idle": "2023-08-21T02:29:46.413541Z", - "shell.execute_reply": "2023-08-21T02:29:46.413268Z" + "iopub.execute_input": "2023-08-22T07:00:29.967326Z", + "iopub.status.busy": "2023-08-22T07:00:29.967175Z", + "iopub.status.idle": "2023-08-22T07:00:29.969789Z", + "shell.execute_reply": "2023-08-22T07:00:29.969459Z" } }, "outputs": [], @@ -878,16 +878,16 @@ "id": "dd0dfd8a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.415108Z", - "iopub.status.busy": "2023-08-21T02:29:46.414996Z", - "iopub.status.idle": "2023-08-21T02:29:46.704739Z", - "shell.execute_reply": "2023-08-21T02:29:46.704318Z" + "iopub.execute_input": "2023-08-22T07:00:29.971954Z", + "iopub.status.busy": "2023-08-22T07:00:29.971825Z", + "iopub.status.idle": "2023-08-22T07:00:30.219764Z", + "shell.execute_reply": "2023-08-22T07:00:30.219356Z" } }, "outputs": [ { "data": { - "image/png": "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T82aNUtQBgAAHAnFFgDgVP79e7Vxu63//vhpvL29dfz4cf3888+aPHmyjh49qipVqqhjx47KmjVrgnds/fz8rC/8dObMGWXOnPmpj7du3TpVrFhRadKksV4W9yJRt2/fVoMGDVSyZEnrdUFBQVqyZMlzPwcAABwRxRYAgBdgMpnk7e0tb29vxcTEaP369fr777+VNWvWBO/Y+vn5aePGjTKbzYqOjra+4vGGDRt05coV66nHc+fOVceOHeMd27dvX+3du1cpUqTQqFGjlDJlSknS4cOH5eHhobx58ybiZwsAgH0wWSwWi9EhAADO58CBAypevLj279/P+9g6AL6fAAAj8arIAAAAAAC7RrEFAAAAANg1ii0AAAAAwK5RbAEA+JfAwEAFBQUZHSNBIiMjVaVKFVWqVEnlypXTr7/+Gu/6oUOHytPT84njoqOjra+wbDab5e7ursOHD0uSfvvtN1WtWlW+vr768MMPJT16/99MmTJZb79q1aqk/+QAAEggXhUZAOA0Hj58+MTb/ST148S9RuN/vZXQy2abN2+eypcvr2HDhmnHjh0aMWKEli5dKkm6cOGCTp48+dTjUqVKpbCwMEnS+fPnVbVqVb333nuKjo5W7969tWTJknjv9ys9es/fzZs3v3BGAACSGju2AACbEBERofLly8vHx0dms1mRkZH6+++/5efnpypVqqhz587y9/eXJLVt21Y7duyQJIWFhal9+/aSpO+++06+vr4qUaKEBg8ebL3vnDlzqkuXLqpSpYpu3rypxo0by9fXVz4+Pjpx4oQkafny5SpatKhq166t/fv3PzNnTEyMOnToIF9fX3l7e2vXrl3WTJ06dVKtWrUUHBwsT09PDRo0SH5+fjp//ryaNm2qSpUqqXz58tb7//cxL6NgwYK6deuWJOn69et67bXXrNcFBgbG+zo8S1BQkFq0aCFJ2r17t9KlS6fWrVvLbDbHew/e3377TRUqVFDLli115cqVl8oLAEBSYMcWAGATQkJCVLlyZQUGBkp6tNPZs2dPtWvXTi1atNCMGTOsJfRZ2rdvr08//VQWi0XlypVThw4dlDNnTl28eFF9+vRRrly51L9/f9WvX19NmzbVkSNH1LdvXy1btkz9+/fXnj17lC5dOvn6+j7zMaZPn668efPqxx9/1JUrV1S7dm1ruc2ePbsmT54sSercubOq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V65cypIli1KnTq1y5cpp7969kh6V2H/z8PBQpkyZXiojACBpMUNfboYWLFhQt27dkiRdv35dr732mvW6581Q6f/m7+3bt1W4cGFJUt68eXX//n1ZLBZFRkZa769w4cK6cePGUx8HcAa8jy2cSkhIiCpXrqzAwEBJj1Zpe/bsqXbt2qlFixaaMWOGdYA+S/v27fXpp5/KYrGoXLly6tChg3LmzKmLFy+qT58+ypUrl/r376/69euradOmOnLkiPr27atly5apf//+2rNnj9KlSydfX99nPsb06dOVN29e/fjjj7py5Ypq165tHczZs2fX5MmTJT16D93q1avriy++0HfffacCBQpo4cKFCg8PV5s2bbR79+4njnnci7xR/fLly/XFF1/o5s2bWr9+vSSpW7duGjZsmO7fv686deqoaNGi8vHxsR5z7dq1eEU1U6ZMunbt2nO/vgAA28QMjS+hM9TLy0tDhgxRkSJFdOPGDW3btk3Sf89QSbp3754CAgJ05MgRjRo1SpKUJ08e3b17VwUKFNCNGze0cuVKSZKfn58CAgI0ffp0RUVFac+ePc/9XgCOhmILp9K4cWONHDlSLVq0UM6cORUYGKjw8HB169ZN0qPfZZk/f74kxXtD9sdPUVq6dKmmTZsmk8mks2fP6vz588qZM6eyZ8+uXLlySZIOHz6srVu36ocffrDe15UrV/Taa68pQ4YMkqQyZco8M+fhw4e1c+dObdiwQZKsK7CS5O3tbf3Y1dVV5cqVkyQdP35cDRo0kCTlz58/XoF8/JjHvcgb1derV0/16tXTwoULNXDgQC1atEhZsmSRJLm7u6tBgwbat29fvKGcJUsWRUZGWv9848YN6zEAAPvCDI0voTN0zJgxql+/vnr37q3du3erS5cuWr9+/X/OUElKnTq1tm3bpqtXr6pkyZJq3LixFi5cqOzZs2vFihWKiIhQvXr19Ouvv6pfv3763//+p4YNG2rhwoUaMGDAUws54KgotnAqLi4uGjlypCSpXbt2Cg4OVr58+fTLL78ob9681tVZScqcObPOnTsnSdbTZyVpyJAhOn78uNzc3FS+fHnrwHZ1dbXepnDhwipbtqzq1asn6dELPbi6uurvv//WrVu3lC5dOu3Zs0dFihR5as7ChQvL09NTPXv2tB4f5/HHMZlM1h8eChQooO3bt8vf31/h4eHx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LbQeii4ZMaZknRFjyflZOiPGlEpm9HhyvhZn9JjSP4weS87P4oweU3vgyaOIiIiIiIjI0LgV2eAURdF6CERUAs5PIuPgfCXSL85PKgt2bImIiIiIiMjQWNjqVGpqKmJiYhz2fnPmzEGfPn0QGhqKJ598Uj0L3ZQpUxAUFISgoCAsWLDA6nMXLlyIPn36IDw8XF1Ry8nJwciRIxEeHo7evXvjt99+AwDExcWhS5cu8PDwwOnTpx3y2YjswdFz9IcffkCHDh3g4eFh9f6IiAir194TQmDGjBkIDg5Gr169sGLFCvX2Z599FuHh4YiJiVHn44kTJxAREaFez++vv/6y34cishNHz8833ngDERERCA0Nxfjx45GbmwsASEpKQlhYGEJCQvDuu+9afe7s2bMREhICSZJw4MABAMCaNWvQp08fREZGYuDAgbhy5QoA5lByDo6en2avvfYa/P39i90+fvx4q+M5deqUxfVtq1evjrS0NADA22+/jdDQUISHhyM5ORkAkJmZieHDh0OSJAwbNgzXrl2z7weiYljYEoDCs7vt2rUL27dvx/nz57FlyxYAwMyZMxEfH48dO3ZgzZo1OH78uMXzLl68iIULFyIuLg7r1q3DzJkzUVBQgE2bNqFWrVrYtm0bfvzxR7z44osAgC5dumDnzp0ICgpy+GckMjJJkvDHH39YPXHGqlWrUL9+favPO3jwIA4ePIidO3dCURS89tprAIDffvsNly9fxrZt2/D8889j1qxZAIBPPvkEjz76KBRFwaRJk/DBBx/Y7TMROYvnnnsOW7duxfbt2wEAmzZtAgBMnz4dX3zxBeLi4qzm0H379mH37t3YsWMHli5diqeeegoAcPfddyMuLg6xsbEYOHAg/vOf/wBgDiWqqDNnzuDPP/8sdntiYiKuX79u9TmtWrWCoihQFAXz589H37594eXlhaNHj2L9+vWIi4vD559/rp4pedGiRQgMDISiKBg6dCjee+89u34mKo6FrQPNnDkTP/74I4DCy9507doVubm5ePnllxEVFYUePXrg008/Lfa8CRMmIC4uDgDUL5sAcODAAcTExCAqKgojRoxAZmZmhcdW9Dqz7u7ucHNzs7jd1dUV1apVU283S01NRceOHVG9enXUq1cP1apVQ2pqKvz8/JCdnQ0hBNLS0tC4cWMAQL169VC7du0Kj5PInvQ8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ERERERGRobGwJSIiIiIiIkNjYUtERERERESGZtPL/aSkpNjy5aiCyhoHxss5mOPIeDoHxtP5nDx5EgBj6iysxZGxNZ7bY8YYOgfmUOdU1nja5KzIp06dQocOHZCZmVnZlyIb8fT0REpKClq1alXsPsbL+bi6uqKgoEDrYZCNMJ7Ox83NTb1WMhmfOccCYD41ME9PT2zevBkxMTGMoRNhDnVOpdU2ZjYpbIHCYuny5cu2eCmygYYNG5YaeMbLuZw7dw4A1At6k7Exns4nOzsb7u7uWg+DbKRojmU+NS5zHBlD58Ic6pzuVNsANixsiYiIiIiIiLTAk0cRERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQ/g/QNdsvQNw/pQAAAABJRU5ErkJggg==", + "image/png": "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T82aNUtQBgAAHAnFFgDgVP79e7Vxu63//vhpvL29dfz4cf3888+aPHmyjh49qipVqqhjx47KmjVrgnds/fz8rC/8dObMGWXOnPmpj7du3TpVrFhRadKksV4W9yJRt2/fVoMGDVSyZEnrdUFBQVqyZMlzPwcAABwRxRYAgBdgMpnk7e0tb29vxcTEaP369fr777+VNWvWBO/Y+vn5aePGjTKbzYqOjra+4vGGDRt05coV66nHc+fOVceOHeMd27dvX+3du1cpUqTQqFGjlDJlSknS4cOH5eHhobx58ybiZwsAgH0wWSwWi9EhAADO58CBAypevLj279/P+9g6AL6fAAAj8arIAAAAAAC7RrEFAAAAANg1ii0AAAAAwK5RbAEA+JfAwEAFBQUZHSNBIiMjVaVKFVWqVEnlypXTr7/+Gu/6oUOHytPT84njoqOjra+wbDab5e7ursOHD0uSfvvtN1WtWlW+vr768MMPJT16/99MmTJZb79q1aqk/+QAAEggXhUZAOA0Hj58+MTb/ST148S9RuN/vZXQy2abN2+eypcvr2HDhmnHjh0aMWKEli5dKkm6cOGCTp48+dTjUqVKpbCwMEnS+fPnVbVqVb333nuKjo5W7969tWTJknjv9ys9es/fzZs3v3BGAACSGju2AACbEBERofLly8vHx0dms1mRkZH6+++/5efnpypVqqhz587y9/eXJLVt21Y7duyQJIWFhal9+/aSpO+++06+vr4qUaKEBg8ebL3vnDlzqkuXLqpSpYpu3rypxo0by9fXVz4+Pjpx4oQkafny5SpatKhq166t/fv3PzNnTEyMOnToIF9fX3l7e2vXrl3WTJ06dVKtWrUUHBwsT09PDRo0SH5+fjp//ryaNm2qSpUqqXz58tb7//cxL6NgwYK6deuWJOn69et67bXXrNcFBgbG+zo8S1BQkFq0aCFJ2r17t9KlS6fWrVvLbDbHew/e3377TRUqVFDLli115cqVl8oLAEBSYMcWAGATQkJCVLlyZQUGBkp6tNPZs2dPtWvXTi1atNCMGTOsJfRZ2rdvr08//VQWi0XlypVThw4dlDNnTl28eFF9+vRRrly51L9/f9WvX19NmzbVkSNH1LdvXy1btkz9+/fXnj17lC5dOvn6+j7zMaZPn668efPqxx9/1JUrV1S7dm1ruc2ePbsmT54sSercubOq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V65cypIli1KnTq1y5cpp7969kh6V2H/z8PBQpkyZXiojACBpMUNfboYWLFhQt27dkiRdv35dr732mvW6581Q6f/m7+3bt1W4cGFJUt68eXX//n1ZLBZFRkZa769w4cK6cePGUx8HcAa8jy2cSkhIiCpXrqzAwEBJj1Zpe/bsqXbt2qlFixaaMWOGdYA+S/v27fXpp5/KYrGoXLly6tChg3LmzKmLFy+qT58+ypUrl/r376/69euradOmOnLkiPr27atly5apf//+2rNnj9KlSydfX99nPsb06dOVN29e/fjjj7py5Ypq165tHczZs2fX5MmTJT16D93q1avriy++0HfffacCBQpo4cKFCg8PV5s2bbR79+4njnnci7xR/fLly/XFF1/o5s2bWr9+vSSpW7duGjZsmO7fv686deqoaNGi8vHxsR5z7dq1eEU1U6ZMunbt2nO/vgAA28QMjS+hM9TLy0tDhgxRkSJFdOPGDW3btk3Sf89QSbp3754CAgJ05MgRjRo1SpKUJ08e3b17VwUKFNCNGze0cuVKSZKfn58CAgI0ffp0RUVFac+ePc/9XgCOhmILp9K4cWONHDlSLVq0UM6cORUYGKjw8HB169ZN0qPfZZk/f74kxXtD9sdPUVq6dKmmTZsmk8mks2fP6vz588qZM6eyZ8+uXLlySZIOHz6srVu36ocffrDe15UrV/Taa68pQ4YMkqQyZco8M+fhw4e1c+dObdiwQZKsK7CS5O3tbf3Y1dVV5cqVkyQdP35cDRo0kCTlz58/XoF8/JjHvcgb1derV0/16tXTwoULNXDgQC1atEhZsmSRJLm7u6tBgwbat29fvKGcJUsWRUZGWv9848YN6zEAAPvCDI0voTN0zJgxql+/vnr37q3du3erS5cuWr9+/X/OUElKnTq1tm3bpqtXr6pkyZJq3LixFi5cqOzZs2vFihWKiIhQvXr19Ouvv6pfv3763//+p4YNG2rhwoUaMGDAUws54KgotnAqLi4uGjlypCSpXbt2Cg4OVr58+fTLL78ob9681tVZScqcObPOnTsnSdbTZyVpyJAhOn78uNzc3FS+fHnrwHZ1dbXepnDhwipbtqzq1asn6dELPbi6uurvv//WrVu3lC5dOu3Zs0dFihR5as7ChQvL09NTPXv2tB4f5/HHMZlM1h8eChQooO3bt8vf31/h4eHx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lcfCloiIiIiIiAyNhS0REREREREZGgtbIiIiIiIiMjSbXu4nJSXFli9HFVTWODBezsEcR8bTOTCezufkyZMAGFNnYS2OjK3x3B4zxtA5MIc6n/LE0iZnRT516hQ6dOiAzMzMyr4U2YinpydSUlLQqlWrYvcxXs7H1dUVBQUFWg+DbITxdD5ubm7qtZLJ+Mw5FgDzqYF5enpi8+bNiImJYQydCHOo8ymtrinKJoUtUFgsXb582RYvRTbQsGHDUoPPeDmXc+fOAYB6QW8yNsbT+WRnZ8Pd3V3rYZCNFM2xzKfGZY4jY+hcmEOdz53qGjObFbZEREREREREWuDJo4iIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGgsbImIiIiIiMjQWNgSERERERGRobGwJSIiIiIiIkNjYUtERERERESGxsKWiIiIiIiIDI2FLRERERERERkaC1siIiIiIiIyNBa2REREREREZGj/BxWf2d82Buy4AAAAAElFTkSuQmCC", "text/plain": [ "
" ] @@ -932,10 +932,10 @@ "id": "33fb7786", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.706833Z", - "iopub.status.busy": "2023-08-21T02:29:46.706699Z", - "iopub.status.idle": "2023-08-21T02:29:46.756824Z", - "shell.execute_reply": "2023-08-21T02:29:46.756520Z" + "iopub.execute_input": "2023-08-22T07:00:30.221897Z", + "iopub.status.busy": "2023-08-22T07:00:30.221737Z", + "iopub.status.idle": "2023-08-22T07:00:30.264092Z", + "shell.execute_reply": "2023-08-22T07:00:30.263767Z" } }, "outputs": [], @@ -967,10 +967,10 @@ "id": "a386755b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.758663Z", - "iopub.status.busy": "2023-08-21T02:29:46.758546Z", - "iopub.status.idle": "2023-08-21T02:29:46.761814Z", - "shell.execute_reply": "2023-08-21T02:29:46.761470Z" + "iopub.execute_input": "2023-08-22T07:00:30.265998Z", + "iopub.status.busy": "2023-08-22T07:00:30.265875Z", + "iopub.status.idle": "2023-08-22T07:00:30.268622Z", + "shell.execute_reply": "2023-08-22T07:00:30.268322Z" }, "lines_to_next_cell": 2 }, @@ -1013,10 +1013,10 @@ "id": "3d646928", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:46.763419Z", - "iopub.status.busy": "2023-08-21T02:29:46.763331Z", - "iopub.status.idle": "2023-08-21T02:29:47.049615Z", - "shell.execute_reply": "2023-08-21T02:29:47.049265Z" + "iopub.execute_input": "2023-08-22T07:00:30.270273Z", + "iopub.status.busy": "2023-08-22T07:00:30.270155Z", + "iopub.status.idle": "2023-08-22T07:00:30.522160Z", + "shell.execute_reply": "2023-08-22T07:00:30.521845Z" }, "lines_to_next_cell": 0 }, @@ -1074,10 +1074,10 @@ "id": "275feef7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:47.051447Z", - "iopub.status.busy": "2023-08-21T02:29:47.051323Z", - "iopub.status.idle": "2023-08-21T02:29:47.211049Z", - "shell.execute_reply": "2023-08-21T02:29:47.210740Z" + "iopub.execute_input": "2023-08-22T07:00:30.524138Z", + "iopub.status.busy": "2023-08-22T07:00:30.524014Z", + "iopub.status.idle": "2023-08-22T07:00:30.657807Z", + "shell.execute_reply": "2023-08-22T07:00:30.657403Z" }, "lines_to_next_cell": 2 }, @@ -1118,10 +1118,10 @@ "id": "01dbbef3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:47.212716Z", - "iopub.status.busy": "2023-08-21T02:29:47.212598Z", - "iopub.status.idle": "2023-08-21T02:29:47.305563Z", - "shell.execute_reply": "2023-08-21T02:29:47.305155Z" + "iopub.execute_input": "2023-08-22T07:00:30.660013Z", + "iopub.status.busy": "2023-08-22T07:00:30.659853Z", + "iopub.status.idle": "2023-08-22T07:00:30.742817Z", + "shell.execute_reply": "2023-08-22T07:00:30.742410Z" } }, "outputs": [ @@ -1171,10 +1171,10 @@ "id": "b75cc90e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:47.307949Z", - "iopub.status.busy": "2023-08-21T02:29:47.307809Z", - "iopub.status.idle": "2023-08-21T02:29:48.296516Z", - "shell.execute_reply": "2023-08-21T02:29:48.296211Z" + "iopub.execute_input": "2023-08-22T07:00:30.744837Z", + "iopub.status.busy": "2023-08-22T07:00:30.744692Z", + "iopub.status.idle": "2023-08-22T07:00:31.411169Z", + "shell.execute_reply": "2023-08-22T07:00:31.410861Z" }, "lines_to_next_cell": 0 }, @@ -1220,10 +1220,10 @@ "id": "bf9a5ed4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:48.298333Z", - "iopub.status.busy": "2023-08-21T02:29:48.298184Z", - "iopub.status.idle": "2023-08-21T02:29:48.412949Z", - "shell.execute_reply": "2023-08-21T02:29:48.412594Z" + "iopub.execute_input": "2023-08-22T07:00:31.412847Z", + "iopub.status.busy": "2023-08-22T07:00:31.412730Z", + "iopub.status.idle": "2023-08-22T07:00:31.503962Z", + "shell.execute_reply": "2023-08-22T07:00:31.503621Z" }, "lines_to_next_cell": 2 }, @@ -1263,10 +1263,10 @@ "id": "71316e9a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:48.414933Z", - "iopub.status.busy": "2023-08-21T02:29:48.414785Z", - "iopub.status.idle": "2023-08-21T02:29:48.422251Z", - "shell.execute_reply": "2023-08-21T02:29:48.421922Z" + "iopub.execute_input": "2023-08-22T07:00:31.505738Z", + "iopub.status.busy": "2023-08-22T07:00:31.505608Z", + "iopub.status.idle": "2023-08-22T07:00:31.511656Z", + "shell.execute_reply": "2023-08-22T07:00:31.511297Z" }, "lines_to_next_cell": 0 }, @@ -1421,10 +1421,10 @@ "id": "0bcc5ff1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:48.424109Z", - "iopub.status.busy": "2023-08-21T02:29:48.423996Z", - "iopub.status.idle": "2023-08-21T02:29:52.311829Z", - "shell.execute_reply": "2023-08-21T02:29:52.311492Z" + "iopub.execute_input": "2023-08-22T07:00:31.513595Z", + "iopub.status.busy": "2023-08-22T07:00:31.513453Z", + "iopub.status.idle": "2023-08-22T07:00:34.630915Z", + "shell.execute_reply": "2023-08-22T07:00:34.630577Z" } }, "outputs": [ @@ -1469,10 +1469,10 @@ "id": "060f47eb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:52.313643Z", - "iopub.status.busy": "2023-08-21T02:29:52.313522Z", - "iopub.status.idle": "2023-08-21T02:29:52.788145Z", - "shell.execute_reply": "2023-08-21T02:29:52.787823Z" + "iopub.execute_input": "2023-08-22T07:00:34.632952Z", + "iopub.status.busy": "2023-08-22T07:00:34.632784Z", + "iopub.status.idle": "2023-08-22T07:00:35.097134Z", + "shell.execute_reply": "2023-08-22T07:00:35.096800Z" } }, "outputs": [ @@ -1519,10 +1519,10 @@ "id": "43505dad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:52.789753Z", - "iopub.status.busy": "2023-08-21T02:29:52.789632Z", - "iopub.status.idle": "2023-08-21T02:29:52.801529Z", - "shell.execute_reply": "2023-08-21T02:29:52.801234Z" + "iopub.execute_input": "2023-08-22T07:00:35.100329Z", + "iopub.status.busy": "2023-08-22T07:00:35.100143Z", + "iopub.status.idle": "2023-08-22T07:00:35.112033Z", + "shell.execute_reply": "2023-08-22T07:00:35.111605Z" } }, "outputs": [ @@ -1560,10 +1560,10 @@ "id": "c0a03126", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:52.803315Z", - "iopub.status.busy": "2023-08-21T02:29:52.803174Z", - "iopub.status.idle": "2023-08-21T02:29:55.330726Z", - "shell.execute_reply": "2023-08-21T02:29:55.330425Z" + "iopub.execute_input": "2023-08-22T07:00:35.113963Z", + "iopub.status.busy": "2023-08-22T07:00:35.113830Z", + "iopub.status.idle": "2023-08-22T07:00:37.129817Z", + "shell.execute_reply": "2023-08-22T07:00:37.129514Z" }, "lines_to_next_cell": 2 }, @@ -1627,10 +1627,10 @@ "id": "58f6e11f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:55.332677Z", - "iopub.status.busy": "2023-08-21T02:29:55.332550Z", - "iopub.status.idle": "2023-08-21T02:29:56.797204Z", - "shell.execute_reply": "2023-08-21T02:29:56.796899Z" + "iopub.execute_input": "2023-08-22T07:00:37.131701Z", + "iopub.status.busy": "2023-08-22T07:00:37.131582Z", + "iopub.status.idle": "2023-08-22T07:00:38.482392Z", + "shell.execute_reply": "2023-08-22T07:00:38.481994Z" }, "lines_to_next_cell": 2 }, @@ -1668,10 +1668,10 @@ "id": "a5b1296f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:56.798892Z", - "iopub.status.busy": "2023-08-21T02:29:56.798779Z", - "iopub.status.idle": "2023-08-21T02:29:57.098494Z", - "shell.execute_reply": "2023-08-21T02:29:57.098140Z" + "iopub.execute_input": "2023-08-22T07:00:38.485515Z", + "iopub.status.busy": "2023-08-22T07:00:38.485339Z", + "iopub.status.idle": "2023-08-22T07:00:38.830191Z", + "shell.execute_reply": "2023-08-22T07:00:38.829761Z" }, "lines_to_next_cell": 2 }, @@ -1707,10 +1707,10 @@ "id": "36c52755", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:57.100444Z", - "iopub.status.busy": "2023-08-21T02:29:57.100310Z", - "iopub.status.idle": "2023-08-21T02:29:57.103577Z", - "shell.execute_reply": "2023-08-21T02:29:57.103213Z" + "iopub.execute_input": "2023-08-22T07:00:38.832666Z", + "iopub.status.busy": "2023-08-22T07:00:38.832460Z", + "iopub.status.idle": "2023-08-22T07:00:38.836173Z", + "shell.execute_reply": "2023-08-22T07:00:38.835780Z" }, "lines_to_next_cell": 0 }, @@ -1759,7 +1759,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -1772,7 +1772,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch09-svm-lab.Rmd b/Ch09-svm-lab.Rmd index 0b653ef..e08f732 100644 --- a/Ch09-svm-lab.Rmd +++ b/Ch09-svm-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch09-svm-lab.ipynb b/Ch09-svm-lab.ipynb index bf1cc7c..3b96de8 100644 --- a/Ch09-svm-lab.ipynb +++ b/Ch09-svm-lab.ipynb @@ -28,10 +28,10 @@ "id": "3973b95f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:58.477582Z", - "iopub.status.busy": "2023-08-21T02:29:58.477467Z", - "iopub.status.idle": "2023-08-21T02:29:59.432527Z", - "shell.execute_reply": "2023-08-21T02:29:59.432225Z" + "iopub.execute_input": "2023-08-22T07:00:43.196408Z", + "iopub.status.busy": "2023-08-22T07:00:43.196299Z", + "iopub.status.idle": "2023-08-22T07:00:44.031971Z", + "shell.execute_reply": "2023-08-22T07:00:44.031635Z" }, "lines_to_next_cell": 0 }, @@ -58,10 +58,10 @@ "id": "0161e55e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.434432Z", - "iopub.status.busy": "2023-08-21T02:29:59.434258Z", - "iopub.status.idle": "2023-08-21T02:29:59.466972Z", - "shell.execute_reply": "2023-08-21T02:29:59.466647Z" + "iopub.execute_input": "2023-08-22T07:00:44.034329Z", + "iopub.status.busy": "2023-08-22T07:00:44.034140Z", + "iopub.status.idle": "2023-08-22T07:00:44.066591Z", + "shell.execute_reply": "2023-08-22T07:00:44.066283Z" } }, "outputs": [], @@ -86,10 +86,10 @@ "id": "7661b056", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.469128Z", - "iopub.status.busy": "2023-08-21T02:29:59.468999Z", - "iopub.status.idle": "2023-08-21T02:29:59.470961Z", - "shell.execute_reply": "2023-08-21T02:29:59.470667Z" + "iopub.execute_input": "2023-08-22T07:00:44.068359Z", + "iopub.status.busy": "2023-08-22T07:00:44.068256Z", + "iopub.status.idle": "2023-08-22T07:00:44.070030Z", + "shell.execute_reply": "2023-08-22T07:00:44.069763Z" } }, "outputs": [], @@ -126,10 +126,10 @@ "id": "46e9ab84", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.472867Z", - "iopub.status.busy": "2023-08-21T02:29:59.472726Z", - "iopub.status.idle": "2023-08-21T02:29:59.583508Z", - "shell.execute_reply": "2023-08-21T02:29:59.583126Z" + "iopub.execute_input": "2023-08-22T07:00:44.071771Z", + "iopub.status.busy": "2023-08-22T07:00:44.071636Z", + "iopub.status.idle": "2023-08-22T07:00:44.163199Z", + "shell.execute_reply": "2023-08-22T07:00:44.162710Z" }, "lines_to_next_cell": 0 }, @@ -171,10 +171,10 @@ "id": "605ffdc0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.585485Z", - "iopub.status.busy": "2023-08-21T02:29:59.585317Z", - "iopub.status.idle": "2023-08-21T02:29:59.590274Z", - "shell.execute_reply": "2023-08-21T02:29:59.589979Z" + "iopub.execute_input": "2023-08-22T07:00:44.165309Z", + "iopub.status.busy": "2023-08-22T07:00:44.165170Z", + "iopub.status.idle": "2023-08-22T07:00:44.169891Z", + "shell.execute_reply": "2023-08-22T07:00:44.169496Z" }, "lines_to_next_cell": 2 }, @@ -215,10 +215,10 @@ "id": "302a49a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.591976Z", - "iopub.status.busy": "2023-08-21T02:29:59.591865Z", - "iopub.status.idle": "2023-08-21T02:29:59.734225Z", - "shell.execute_reply": "2023-08-21T02:29:59.733936Z" + "iopub.execute_input": "2023-08-22T07:00:44.171704Z", + "iopub.status.busy": "2023-08-22T07:00:44.171421Z", + "iopub.status.idle": "2023-08-22T07:00:44.323926Z", + "shell.execute_reply": "2023-08-22T07:00:44.323505Z" } }, "outputs": [ @@ -260,10 +260,10 @@ "id": "cc1d6a13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.735943Z", - "iopub.status.busy": "2023-08-21T02:29:59.735816Z", - "iopub.status.idle": "2023-08-21T02:29:59.878335Z", - "shell.execute_reply": "2023-08-21T02:29:59.878032Z" + "iopub.execute_input": "2023-08-22T07:00:44.326070Z", + "iopub.status.busy": "2023-08-22T07:00:44.325931Z", + "iopub.status.idle": "2023-08-22T07:00:44.449908Z", + "shell.execute_reply": "2023-08-22T07:00:44.449566Z" }, "lines_to_next_cell": 0 }, @@ -306,10 +306,10 @@ "id": "6133c846", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.880078Z", - "iopub.status.busy": "2023-08-21T02:29:59.879965Z", - "iopub.status.idle": "2023-08-21T02:29:59.882347Z", - "shell.execute_reply": "2023-08-21T02:29:59.882070Z" + "iopub.execute_input": "2023-08-22T07:00:44.451882Z", + "iopub.status.busy": "2023-08-22T07:00:44.451759Z", + "iopub.status.idle": "2023-08-22T07:00:44.454360Z", + "shell.execute_reply": "2023-08-22T07:00:44.454092Z" }, "lines_to_next_cell": 2 }, @@ -344,10 +344,10 @@ "id": "9adb3793", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.883852Z", - "iopub.status.busy": "2023-08-21T02:29:59.883749Z", - "iopub.status.idle": "2023-08-21T02:29:59.910535Z", - "shell.execute_reply": "2023-08-21T02:29:59.910272Z" + "iopub.execute_input": "2023-08-22T07:00:44.456205Z", + "iopub.status.busy": "2023-08-22T07:00:44.456086Z", + "iopub.status.idle": "2023-08-22T07:00:44.482752Z", + "shell.execute_reply": "2023-08-22T07:00:44.482392Z" }, "lines_to_next_cell": 2 }, @@ -392,10 +392,10 @@ "id": "d3ab343e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.912005Z", - "iopub.status.busy": "2023-08-21T02:29:59.911925Z", - "iopub.status.idle": "2023-08-21T02:29:59.914189Z", - "shell.execute_reply": "2023-08-21T02:29:59.913943Z" + "iopub.execute_input": "2023-08-22T07:00:44.484837Z", + "iopub.status.busy": "2023-08-22T07:00:44.484685Z", + "iopub.status.idle": "2023-08-22T07:00:44.487229Z", + "shell.execute_reply": "2023-08-22T07:00:44.486932Z" }, "lines_to_next_cell": 0 }, @@ -433,10 +433,10 @@ "id": "6aba117e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.915563Z", - "iopub.status.busy": "2023-08-21T02:29:59.915487Z", - "iopub.status.idle": "2023-08-21T02:29:59.917323Z", - "shell.execute_reply": "2023-08-21T02:29:59.917078Z" + "iopub.execute_input": "2023-08-22T07:00:44.488910Z", + "iopub.status.busy": "2023-08-22T07:00:44.488789Z", + "iopub.status.idle": "2023-08-22T07:00:44.490857Z", + "shell.execute_reply": "2023-08-22T07:00:44.490592Z" } }, "outputs": [], @@ -462,10 +462,10 @@ "id": "dbe7d737", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.918744Z", - "iopub.status.busy": "2023-08-21T02:29:59.918666Z", - "iopub.status.idle": "2023-08-21T02:29:59.925361Z", - "shell.execute_reply": "2023-08-21T02:29:59.925039Z" + "iopub.execute_input": "2023-08-22T07:00:44.492721Z", + "iopub.status.busy": "2023-08-22T07:00:44.492565Z", + "iopub.status.idle": "2023-08-22T07:00:44.498024Z", + "shell.execute_reply": "2023-08-22T07:00:44.497699Z" } }, "outputs": [ @@ -549,10 +549,10 @@ "id": "ab1697c2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.927158Z", - "iopub.status.busy": "2023-08-21T02:29:59.927027Z", - "iopub.status.idle": "2023-08-21T02:29:59.931558Z", - "shell.execute_reply": "2023-08-21T02:29:59.931228Z" + "iopub.execute_input": "2023-08-22T07:00:44.499990Z", + "iopub.status.busy": "2023-08-22T07:00:44.499862Z", + "iopub.status.idle": "2023-08-22T07:00:44.504347Z", + "shell.execute_reply": "2023-08-22T07:00:44.504085Z" } }, "outputs": [ @@ -640,10 +640,10 @@ "id": "0fd42b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:59.933100Z", - "iopub.status.busy": "2023-08-21T02:29:59.933001Z", - "iopub.status.idle": "2023-08-21T02:30:00.054738Z", - "shell.execute_reply": "2023-08-21T02:30:00.054338Z" + "iopub.execute_input": "2023-08-22T07:00:44.506318Z", + "iopub.status.busy": "2023-08-22T07:00:44.506164Z", + "iopub.status.idle": "2023-08-22T07:00:44.587482Z", + "shell.execute_reply": "2023-08-22T07:00:44.587059Z" } }, "outputs": [ @@ -678,10 +678,10 @@ "id": "09c15299", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.056655Z", - "iopub.status.busy": "2023-08-21T02:30:00.056526Z", - "iopub.status.idle": "2023-08-21T02:30:00.061096Z", - "shell.execute_reply": "2023-08-21T02:30:00.060792Z" + "iopub.execute_input": "2023-08-22T07:00:44.589398Z", + "iopub.status.busy": "2023-08-22T07:00:44.589260Z", + "iopub.status.idle": "2023-08-22T07:00:44.594250Z", + "shell.execute_reply": "2023-08-22T07:00:44.593884Z" } }, "outputs": [ @@ -765,10 +765,10 @@ "id": "d5fd2ff9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.062673Z", - "iopub.status.busy": "2023-08-21T02:30:00.062585Z", - "iopub.status.idle": "2023-08-21T02:30:00.199860Z", - "shell.execute_reply": "2023-08-21T02:30:00.199129Z" + "iopub.execute_input": "2023-08-22T07:00:44.596069Z", + "iopub.status.busy": "2023-08-22T07:00:44.595957Z", + "iopub.status.idle": "2023-08-22T07:00:44.704810Z", + "shell.execute_reply": "2023-08-22T07:00:44.704515Z" }, "lines_to_next_cell": 0 }, @@ -810,10 +810,10 @@ "id": "39aff1b1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.202380Z", - "iopub.status.busy": "2023-08-21T02:30:00.202233Z", - "iopub.status.idle": "2023-08-21T02:30:00.207886Z", - "shell.execute_reply": "2023-08-21T02:30:00.207493Z" + "iopub.execute_input": "2023-08-22T07:00:44.706840Z", + "iopub.status.busy": "2023-08-22T07:00:44.706674Z", + "iopub.status.idle": "2023-08-22T07:00:44.711712Z", + "shell.execute_reply": "2023-08-22T07:00:44.711351Z" } }, "outputs": [ @@ -897,10 +897,10 @@ "id": "63a9d752", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.209907Z", - "iopub.status.busy": "2023-08-21T02:30:00.209781Z", - "iopub.status.idle": "2023-08-21T02:30:00.340803Z", - "shell.execute_reply": "2023-08-21T02:30:00.340433Z" + "iopub.execute_input": "2023-08-22T07:00:44.713664Z", + "iopub.status.busy": "2023-08-22T07:00:44.713515Z", + "iopub.status.idle": "2023-08-22T07:00:44.825679Z", + "shell.execute_reply": "2023-08-22T07:00:44.825364Z" }, "lines_to_next_cell": 2 }, @@ -950,10 +950,10 @@ "id": "2fee8df5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.342773Z", - "iopub.status.busy": "2023-08-21T02:30:00.342626Z", - "iopub.status.idle": "2023-08-21T02:30:00.345094Z", - "shell.execute_reply": "2023-08-21T02:30:00.344774Z" + "iopub.execute_input": "2023-08-22T07:00:44.827655Z", + "iopub.status.busy": "2023-08-22T07:00:44.827492Z", + "iopub.status.idle": "2023-08-22T07:00:44.829859Z", + "shell.execute_reply": "2023-08-22T07:00:44.829433Z" } }, "outputs": [], @@ -978,10 +978,10 @@ "id": "48f01abe", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.347053Z", - "iopub.status.busy": "2023-08-21T02:30:00.346902Z", - "iopub.status.idle": "2023-08-21T02:30:00.440453Z", - "shell.execute_reply": "2023-08-21T02:30:00.440153Z" + "iopub.execute_input": "2023-08-22T07:00:44.831676Z", + "iopub.status.busy": "2023-08-22T07:00:44.831542Z", + "iopub.status.idle": "2023-08-22T07:00:44.912763Z", + "shell.execute_reply": "2023-08-22T07:00:44.912396Z" }, "lines_to_next_cell": 2 }, @@ -989,7 +989,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 20, @@ -1031,10 +1031,10 @@ "id": "4acc3246", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.442257Z", - "iopub.status.busy": "2023-08-21T02:30:00.442156Z", - "iopub.status.idle": "2023-08-21T02:30:00.446674Z", - "shell.execute_reply": "2023-08-21T02:30:00.446369Z" + "iopub.execute_input": "2023-08-22T07:00:44.914642Z", + "iopub.status.busy": "2023-08-22T07:00:44.914493Z", + "iopub.status.idle": "2023-08-22T07:00:44.918862Z", + "shell.execute_reply": "2023-08-22T07:00:44.918577Z" } }, "outputs": [ @@ -1079,10 +1079,10 @@ "id": "e9852a28", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.448268Z", - "iopub.status.busy": "2023-08-21T02:30:00.448160Z", - "iopub.status.idle": "2023-08-21T02:30:00.828511Z", - "shell.execute_reply": "2023-08-21T02:30:00.828128Z" + "iopub.execute_input": "2023-08-22T07:00:44.920379Z", + "iopub.status.busy": "2023-08-22T07:00:44.920289Z", + "iopub.status.idle": "2023-08-22T07:00:45.229404Z", + "shell.execute_reply": "2023-08-22T07:00:45.229004Z" } }, "outputs": [ @@ -1123,10 +1123,10 @@ "id": "01232fc9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:00.830365Z", - "iopub.status.busy": "2023-08-21T02:30:00.830226Z", - "iopub.status.idle": "2023-08-21T02:30:01.132677Z", - "shell.execute_reply": "2023-08-21T02:30:01.132224Z" + "iopub.execute_input": "2023-08-22T07:00:45.231425Z", + "iopub.status.busy": "2023-08-22T07:00:45.231287Z", + "iopub.status.idle": "2023-08-22T07:00:45.394458Z", + "shell.execute_reply": "2023-08-22T07:00:45.394098Z" } }, "outputs": [ @@ -1167,10 +1167,10 @@ "id": "bcbd15a4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.134616Z", - "iopub.status.busy": "2023-08-21T02:30:01.134486Z", - "iopub.status.idle": "2023-08-21T02:30:01.243519Z", - "shell.execute_reply": "2023-08-21T02:30:01.243203Z" + "iopub.execute_input": "2023-08-22T07:00:45.396381Z", + "iopub.status.busy": "2023-08-22T07:00:45.396249Z", + "iopub.status.idle": "2023-08-22T07:00:45.487743Z", + "shell.execute_reply": "2023-08-22T07:00:45.487417Z" } }, "outputs": [ @@ -1215,10 +1215,10 @@ "id": "28ca551e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.245550Z", - "iopub.status.busy": "2023-08-21T02:30:01.245377Z", - "iopub.status.idle": "2023-08-21T02:30:01.600896Z", - "shell.execute_reply": "2023-08-21T02:30:01.600574Z" + "iopub.execute_input": "2023-08-22T07:00:45.489428Z", + "iopub.status.busy": "2023-08-22T07:00:45.489307Z", + "iopub.status.idle": "2023-08-22T07:00:45.761918Z", + "shell.execute_reply": "2023-08-22T07:00:45.761509Z" } }, "outputs": [ @@ -1349,10 +1349,10 @@ "id": "68ac9421", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.602740Z", - "iopub.status.busy": "2023-08-21T02:30:01.602614Z", - "iopub.status.idle": "2023-08-21T02:30:01.698620Z", - "shell.execute_reply": "2023-08-21T02:30:01.698322Z" + "iopub.execute_input": "2023-08-22T07:00:45.763931Z", + "iopub.status.busy": "2023-08-22T07:00:45.763759Z", + "iopub.status.idle": "2023-08-22T07:00:45.849017Z", + "shell.execute_reply": "2023-08-22T07:00:45.848298Z" }, "lines_to_next_cell": 0 }, @@ -1394,10 +1394,10 @@ "id": "f79a9e0a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.700479Z", - "iopub.status.busy": "2023-08-21T02:30:01.700347Z", - "iopub.status.idle": "2023-08-21T02:30:01.837479Z", - "shell.execute_reply": "2023-08-21T02:30:01.837102Z" + "iopub.execute_input": "2023-08-22T07:00:45.851590Z", + "iopub.status.busy": "2023-08-22T07:00:45.851425Z", + "iopub.status.idle": "2023-08-22T07:00:45.979876Z", + "shell.execute_reply": "2023-08-22T07:00:45.979437Z" } }, "outputs": [ @@ -1443,10 +1443,10 @@ "id": "bdb9e503", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.839390Z", - "iopub.status.busy": "2023-08-21T02:30:01.839243Z", - "iopub.status.idle": "2023-08-21T02:30:01.843595Z", - "shell.execute_reply": "2023-08-21T02:30:01.843287Z" + "iopub.execute_input": "2023-08-22T07:00:45.982037Z", + "iopub.status.busy": "2023-08-22T07:00:45.981884Z", + "iopub.status.idle": "2023-08-22T07:00:45.986135Z", + "shell.execute_reply": "2023-08-22T07:00:45.985717Z" } }, "outputs": [], @@ -1474,10 +1474,10 @@ "id": "329f5d2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.845300Z", - "iopub.status.busy": "2023-08-21T02:30:01.845201Z", - "iopub.status.idle": "2023-08-21T02:30:01.944073Z", - "shell.execute_reply": "2023-08-21T02:30:01.943763Z" + "iopub.execute_input": "2023-08-22T07:00:45.988269Z", + "iopub.status.busy": "2023-08-22T07:00:45.988146Z", + "iopub.status.idle": "2023-08-22T07:00:46.085414Z", + "shell.execute_reply": "2023-08-22T07:00:46.084883Z" } }, "outputs": [ @@ -1529,10 +1529,10 @@ "id": "267e113d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:01.945725Z", - "iopub.status.busy": "2023-08-21T02:30:01.945611Z", - "iopub.status.idle": "2023-08-21T02:30:02.034378Z", - "shell.execute_reply": "2023-08-21T02:30:02.034069Z" + "iopub.execute_input": "2023-08-22T07:00:46.087864Z", + "iopub.status.busy": "2023-08-22T07:00:46.087700Z", + "iopub.status.idle": "2023-08-22T07:00:46.169591Z", + "shell.execute_reply": "2023-08-22T07:00:46.169145Z" } }, "outputs": [ @@ -1570,10 +1570,10 @@ "id": "64cbebd0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:02.036083Z", - "iopub.status.busy": "2023-08-21T02:30:02.035963Z", - "iopub.status.idle": "2023-08-21T02:30:03.015535Z", - "shell.execute_reply": "2023-08-21T02:30:03.014798Z" + "iopub.execute_input": "2023-08-22T07:00:46.171760Z", + "iopub.status.busy": "2023-08-22T07:00:46.171615Z", + "iopub.status.idle": "2023-08-22T07:00:46.921038Z", + "shell.execute_reply": "2023-08-22T07:00:46.920658Z" }, "lines_to_next_cell": 0 }, @@ -1634,10 +1634,10 @@ "id": "b6e6f12b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:03.017430Z", - "iopub.status.busy": "2023-08-21T02:30:03.017293Z", - "iopub.status.idle": "2023-08-21T02:30:03.099156Z", - "shell.execute_reply": "2023-08-21T02:30:03.098760Z" + "iopub.execute_input": "2023-08-22T07:00:46.923126Z", + "iopub.status.busy": "2023-08-22T07:00:46.922983Z", + "iopub.status.idle": "2023-08-22T07:00:46.997998Z", + "shell.execute_reply": "2023-08-22T07:00:46.997721Z" } }, "outputs": [ @@ -1680,10 +1680,10 @@ "id": "273a10b2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:03.101069Z", - "iopub.status.busy": "2023-08-21T02:30:03.100881Z", - "iopub.status.idle": "2023-08-21T02:30:03.130224Z", - "shell.execute_reply": "2023-08-21T02:30:03.129845Z" + "iopub.execute_input": "2023-08-22T07:00:47.000124Z", + "iopub.status.busy": "2023-08-22T07:00:46.999957Z", + "iopub.status.idle": "2023-08-22T07:00:47.027848Z", + "shell.execute_reply": "2023-08-22T07:00:47.027461Z" } }, "outputs": [ @@ -1794,10 +1794,10 @@ "id": "bc3079a7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:03.132111Z", - "iopub.status.busy": "2023-08-21T02:30:03.131975Z", - "iopub.status.idle": "2023-08-21T02:30:03.143298Z", - "shell.execute_reply": "2023-08-21T02:30:03.142948Z" + "iopub.execute_input": "2023-08-22T07:00:47.030032Z", + "iopub.status.busy": "2023-08-22T07:00:47.029880Z", + "iopub.status.idle": "2023-08-22T07:00:47.040946Z", + "shell.execute_reply": "2023-08-22T07:00:47.040538Z" } }, "outputs": [ @@ -1900,7 +1900,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -1913,7 +1913,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch10-deeplearning-lab.Rmd b/Ch10-deeplearning-lab.Rmd index 51674b6..ce234b5 100644 --- a/Ch10-deeplearning-lab.Rmd +++ b/Ch10-deeplearning-lab.Rmd @@ -1,3 +1,19 @@ +--- +jupyter: + jupytext: + cell_metadata_filter: -all + formats: Rmd,ipynb + text_representation: + extension: .Rmd + format_name: rmarkdown + format_version: '1.2' + jupytext_version: 1.14.7 + kernelspec: + display_name: Python 3 (ipykernel) + language: python + name: python3 +--- + # Chapter 10 diff --git a/Ch10-deeplearning-lab.ipynb b/Ch10-deeplearning-lab.ipynb index 2577eac..4c5a709 100644 --- a/Ch10-deeplearning-lab.ipynb +++ b/Ch10-deeplearning-lab.ipynb @@ -26,6 +26,12 @@ "execution_count": 1, "id": "cf431f3f", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:23.822772Z", + "iopub.status.busy": "2023-08-22T06:36:23.822498Z", + "iopub.status.idle": "2023-08-22T06:36:35.889421Z", + "shell.execute_reply": "2023-08-22T06:36:35.888914Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -62,7 +68,14 @@ "cell_type": "code", "execution_count": 2, "id": "1db00e03", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:35.892370Z", + "iopub.status.busy": "2023-08-22T06:36:35.892133Z", + "iopub.status.idle": "2023-08-22T06:36:37.554519Z", + "shell.execute_reply": "2023-08-22T06:36:37.554232Z" + } + }, "outputs": [], "source": [ "import torch\n", @@ -88,7 +101,14 @@ "cell_type": "code", "execution_count": 3, "id": "3da0a445", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:37.556320Z", + "iopub.status.busy": "2023-08-22T06:36:37.556190Z", + "iopub.status.idle": "2023-08-22T06:36:38.312094Z", + "shell.execute_reply": "2023-08-22T06:36:38.311799Z" + } + }, "outputs": [], "source": [ "from torchmetrics import (MeanAbsoluteError,\n", @@ -112,7 +132,14 @@ "cell_type": "code", "execution_count": 4, "id": "bbbf32fe", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.313997Z", + "iopub.status.busy": "2023-08-22T06:36:38.313882Z", + "iopub.status.idle": "2023-08-22T06:36:38.557850Z", + "shell.execute_reply": "2023-08-22T06:36:38.557519Z" + } + }, "outputs": [], "source": [ "from pytorch_lightning import Trainer\n", @@ -132,7 +159,14 @@ "cell_type": "code", "execution_count": 5, "id": "3810caf4", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.559742Z", + "iopub.status.busy": "2023-08-22T06:36:38.559626Z", + "iopub.status.idle": "2023-08-22T06:36:38.563148Z", + "shell.execute_reply": "2023-08-22T06:36:38.562883Z" + } + }, "outputs": [ { "name": "stderr", @@ -163,6 +197,12 @@ "execution_count": 6, "id": "454dc419", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.564731Z", + "iopub.status.busy": "2023-08-22T06:36:38.564619Z", + "iopub.status.idle": "2023-08-22T06:36:38.566404Z", + "shell.execute_reply": "2023-08-22T06:36:38.566156Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -198,7 +238,14 @@ "cell_type": "code", "execution_count": 7, "id": "cd43a4c6", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.567754Z", + "iopub.status.busy": "2023-08-22T06:36:38.567677Z", + "iopub.status.idle": "2023-08-22T06:36:38.569838Z", + "shell.execute_reply": "2023-08-22T06:36:38.569588Z" + } + }, "outputs": [], "source": [ "from ISLP.torch import (SimpleDataModule,\n", @@ -227,7 +274,14 @@ "cell_type": "code", "execution_count": 8, "id": "eaf84e9c", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.571182Z", + "iopub.status.busy": "2023-08-22T06:36:38.571106Z", + "iopub.status.idle": "2023-08-22T06:36:38.572982Z", + "shell.execute_reply": "2023-08-22T06:36:38.572746Z" + } + }, "outputs": [], "source": [ "from ISLP.torch.imdb import (load_lookup,\n", @@ -257,6 +311,12 @@ "execution_count": 9, "id": "d007a49b", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.574407Z", + "iopub.status.busy": "2023-08-22T06:36:38.574330Z", + "iopub.status.idle": "2023-08-22T06:36:38.575831Z", + "shell.execute_reply": "2023-08-22T06:36:38.575582Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -279,6 +339,12 @@ "execution_count": 10, "id": "9da64364", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.577295Z", + "iopub.status.busy": "2023-08-22T06:36:38.577214Z", + "iopub.status.idle": "2023-08-22T06:36:38.582891Z", + "shell.execute_reply": "2023-08-22T06:36:38.582646Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -307,6 +373,12 @@ "execution_count": 11, "id": "a2cfe999", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.584411Z", + "iopub.status.busy": "2023-08-22T06:36:38.584330Z", + "iopub.status.idle": "2023-08-22T06:36:38.602242Z", + "shell.execute_reply": "2023-08-22T06:36:38.601986Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -342,7 +414,14 @@ "cell_type": "code", "execution_count": 12, "id": "5c600069", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.603814Z", + "iopub.status.busy": "2023-08-22T06:36:38.603735Z", + "iopub.status.idle": "2023-08-22T06:36:38.605828Z", + "shell.execute_reply": "2023-08-22T06:36:38.605618Z" + } + }, "outputs": [], "source": [ "(X_train, \n", @@ -367,7 +446,14 @@ "cell_type": "code", "execution_count": 13, "id": "6ea4f551", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.607262Z", + "iopub.status.busy": "2023-08-22T06:36:38.607183Z", + "iopub.status.idle": "2023-08-22T06:36:38.611049Z", + "shell.execute_reply": "2023-08-22T06:36:38.610800Z" + } + }, "outputs": [ { "data": { @@ -403,7 +489,14 @@ "cell_type": "code", "execution_count": 14, "id": "f1b8b3f5", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.612499Z", + "iopub.status.busy": "2023-08-22T06:36:38.612413Z", + "iopub.status.idle": "2023-08-22T06:36:38.614248Z", + "shell.execute_reply": "2023-08-22T06:36:38.614031Z" + } + }, "outputs": [], "source": [ "scaler = StandardScaler(with_mean=True, with_std=True)\n", @@ -427,6 +520,12 @@ "execution_count": 15, "id": "50ce4171", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.615637Z", + "iopub.status.busy": "2023-08-22T06:36:38.615534Z", + "iopub.status.idle": "2023-08-22T06:36:38.617783Z", + "shell.execute_reply": "2023-08-22T06:36:38.617551Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -451,7 +550,14 @@ "cell_type": "code", "execution_count": 16, "id": "94c4ab75", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:38.619363Z", + "iopub.status.busy": "2023-08-22T06:36:38.619259Z", + "iopub.status.idle": "2023-08-22T06:36:50.960206Z", + "shell.execute_reply": "2023-08-22T06:36:50.959901Z" + } + }, "outputs": [], "source": [ "cv = KFold(10,\n", @@ -479,6 +585,12 @@ "execution_count": 17, "id": "86e45999", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.962061Z", + "iopub.status.busy": "2023-08-22T06:36:50.961947Z", + "iopub.status.idle": "2023-08-22T06:36:50.964427Z", + "shell.execute_reply": "2023-08-22T06:36:50.964181Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -520,7 +632,14 @@ "cell_type": "code", "execution_count": 18, "id": "00ac7606", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.965887Z", + "iopub.status.busy": "2023-08-22T06:36:50.965780Z", + "iopub.status.idle": "2023-08-22T06:36:50.967993Z", + "shell.execute_reply": "2023-08-22T06:36:50.967736Z" + } + }, "outputs": [], "source": [ "class HittersModel(nn.Module):\n", @@ -578,7 +697,14 @@ "cell_type": "code", "execution_count": 19, "id": "bb7ff7e9", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.969396Z", + "iopub.status.busy": "2023-08-22T06:36:50.969288Z", + "iopub.status.idle": "2023-08-22T06:36:50.971584Z", + "shell.execute_reply": "2023-08-22T06:36:50.971363Z" + } + }, "outputs": [], "source": [ "hit_model = HittersModel(X.shape[1])\n" @@ -614,6 +740,12 @@ "execution_count": 20, "id": "b60d34e1", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.973300Z", + "iopub.status.busy": "2023-08-22T06:36:50.973196Z", + "iopub.status.idle": "2023-08-22T06:36:50.979604Z", + "shell.execute_reply": "2023-08-22T06:36:50.979367Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -634,7 +766,7 @@ "Total params: 1,051\n", "Trainable params: 1,051\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.MEGABYTES): 0.18\n", + "Total mult-adds (M): 0.18\n", "===================================================================================================================\n", "Input size (MB): 0.01\n", "Forward/backward pass size (MB): 0.07\n", @@ -682,6 +814,12 @@ "execution_count": 21, "id": "42f63682", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.981129Z", + "iopub.status.busy": "2023-08-22T06:36:50.981043Z", + "iopub.status.idle": "2023-08-22T06:36:50.983074Z", + "shell.execute_reply": "2023-08-22T06:36:50.982803Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -703,7 +841,14 @@ "cell_type": "code", "execution_count": 22, "id": "57fbf564", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.984595Z", + "iopub.status.busy": "2023-08-22T06:36:50.984509Z", + "iopub.status.idle": "2023-08-22T06:36:50.986442Z", + "shell.execute_reply": "2023-08-22T06:36:50.986202Z" + } + }, "outputs": [], "source": [ "X_test_t = torch.tensor(X_test.astype(np.float32))\n", @@ -738,7 +883,14 @@ "cell_type": "code", "execution_count": 23, "id": "570bdd73", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.987814Z", + "iopub.status.busy": "2023-08-22T06:36:50.987734Z", + "iopub.status.idle": "2023-08-22T06:36:50.989404Z", + "shell.execute_reply": "2023-08-22T06:36:50.989173Z" + } + }, "outputs": [], "source": [ "max_num_workers = rec_num_workers()" @@ -770,7 +922,14 @@ "cell_type": "code", "execution_count": 24, "id": "c08a4d6d", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.990908Z", + "iopub.status.busy": "2023-08-22T06:36:50.990826Z", + "iopub.status.idle": "2023-08-22T06:36:50.992776Z", + "shell.execute_reply": "2023-08-22T06:36:50.992504Z" + } + }, "outputs": [], "source": [ "hit_dm = SimpleDataModule(hit_train,\n", @@ -798,7 +957,14 @@ "cell_type": "code", "execution_count": 25, "id": "aaa1e593", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.994186Z", + "iopub.status.busy": "2023-08-22T06:36:50.994113Z", + "iopub.status.idle": "2023-08-22T06:36:50.996729Z", + "shell.execute_reply": "2023-08-22T06:36:50.996486Z" + } + }, "outputs": [], "source": [ "hit_module = SimpleModule.regression(hit_model,\n", @@ -825,7 +991,14 @@ "cell_type": "code", "execution_count": 26, "id": "1a4e9b3c", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:50.998209Z", + "iopub.status.busy": "2023-08-22T06:36:50.998126Z", + "iopub.status.idle": "2023-08-22T06:36:51.000007Z", + "shell.execute_reply": "2023-08-22T06:36:50.999781Z" + } + }, "outputs": [], "source": [ "hit_logger = CSVLogger('logs', name='hitters')" @@ -857,6 +1030,12 @@ "execution_count": 27, "id": "2f839fde", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:51.001398Z", + "iopub.status.busy": "2023-08-22T06:36:51.001321Z", + "iopub.status.idle": "2023-08-22T06:36:57.231774Z", + "shell.execute_reply": "2023-08-22T06:36:57.231473Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -883,7 +1062,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "57f1417773bf4bab9e04d2641c7de91f", "version_major": 2, "version_minor": 0 }, @@ -897,7 +1076,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3f81045e13e641428a7f37ab7ceb43be", + "model_id": "4c234bd07745482e823334ca8ede4b72", "version_major": 2, "version_minor": 0 }, @@ -911,7 +1090,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8a343e9ea8e847dda642f290345ce416", "version_major": 2, "version_minor": 0 }, @@ -925,7 +1104,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "cd4b335bd692418aaa6aeaf512b165a5", "version_major": 2, "version_minor": 0 }, @@ -939,7 +1118,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3de010d447e14f7885ad82380d0ed23d", "version_major": 2, "version_minor": 0 }, @@ -953,7 +1132,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6437dc82d36048c0aa6e29d7179b802d", "version_major": 2, "version_minor": 0 }, @@ -967,7 +1146,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "31a48327218d49048a5164d4891693c1", "version_major": 2, "version_minor": 0 }, @@ -981,7 +1160,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f5c7646fdcdf49069bcb0dd9a71f706d", "version_major": 2, "version_minor": 0 }, @@ -995,7 +1174,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "be384b3fd24f4e57b61662c11fcf8d3a", "version_major": 2, "version_minor": 0 }, @@ -1009,7 +1188,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fc6b10ac7dd345a9845b6e8c544fbb13", "version_major": 2, "version_minor": 0 }, @@ -1023,7 +1202,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2c1faeb221e74ea98b1ad4098608e47a", "version_major": 2, "version_minor": 0 }, @@ -1037,7 +1216,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "84061abe2bb84c13b533440db38ca93c", "version_major": 2, "version_minor": 0 }, @@ -1051,7 +1230,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e10316b8ba324e97a57db50873e5dca7", "version_major": 2, "version_minor": 0 }, @@ -1065,7 +1244,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2b7ce659cfab4b5897b5f6a37d845569", "version_major": 2, "version_minor": 0 }, @@ -1079,7 +1258,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c8fc8ef9a49a4a4aba32b36fd942faa7", "version_major": 2, "version_minor": 0 }, @@ -1093,7 +1272,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1ecb329931844b47b9b767b3c80b5e32", "version_major": 2, "version_minor": 0 }, @@ -1107,7 +1286,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "bdcc0adc6f664fdeb8e0b9ac5a8c351b", "version_major": 2, "version_minor": 0 }, @@ -1121,7 +1300,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e780afe5ba184f3b9cb0af6732f8a464", "version_major": 2, "version_minor": 0 }, @@ -1135,7 +1314,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c690985141334d6cb5927b912433934f", "version_major": 2, "version_minor": 0 }, @@ -1149,7 +1328,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7573d869f1624ee5bedca0df253c3258", "version_major": 2, "version_minor": 0 }, @@ -1163,7 +1342,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "38b1b0db2ada465797993f95bcdedf1a", "version_major": 2, "version_minor": 0 }, @@ -1177,7 +1356,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a9778179731a4b1f88c81feda8dcfcc4", "version_major": 2, "version_minor": 0 }, @@ -1191,7 +1370,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a86f93dfbb57426bbc945995748d77a4", "version_major": 2, "version_minor": 0 }, @@ -1205,7 +1384,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4b66b4428ce34557934ea32daf3c1e23", "version_major": 2, "version_minor": 0 }, @@ -1219,7 +1398,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "95e913a4d43b405ab89dc36f65d1a62a", "version_major": 2, "version_minor": 0 }, @@ -1233,7 +1412,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "40b1b46633d74bbfb37ffe764573083f", "version_major": 2, "version_minor": 0 }, @@ -1247,7 +1426,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "705e9608333240d0b9e0fcb3ce46b936", "version_major": 2, "version_minor": 0 }, @@ -1261,7 +1440,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ac03f7c299544d9782de7c690c2732bb", "version_major": 2, "version_minor": 0 }, @@ -1275,7 +1454,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c27fdee8a15544c5991535a6a91f23b5", "version_major": 2, "version_minor": 0 }, @@ -1289,7 +1468,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8d04173d877f40278c2c38fecf03f347", "version_major": 2, "version_minor": 0 }, @@ -1303,7 +1482,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4b44d0b98185429ca36376fd9bdd5290", "version_major": 2, "version_minor": 0 }, @@ -1317,7 +1496,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "efe93a27bde349f5a17664bb31036ccb", "version_major": 2, "version_minor": 0 }, @@ -1331,7 +1510,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6959784ed10246328e8d93ad8d4a3199", "version_major": 2, "version_minor": 0 }, @@ -1345,7 +1524,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e3351d9c3ee8411b968bef75e03cd8a3", "version_major": 2, "version_minor": 0 }, @@ -1359,7 +1538,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "bce44e02e5df444fbffb7d9584c91654", "version_major": 2, "version_minor": 0 }, @@ -1373,7 +1552,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b438f2d5ab2e4dcd807c83bf9f9590e3", "version_major": 2, "version_minor": 0 }, @@ -1387,7 +1566,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e3861a097df54b019bbb8679c5998d55", "version_major": 2, "version_minor": 0 }, @@ -1401,7 +1580,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "90b4d7b3e5f54a33bd8f45b1db5ac9a5", "version_major": 2, "version_minor": 0 }, @@ -1415,7 +1594,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "d8934eb8b16f4a0ca89d18a2ea942c2b", "version_major": 2, "version_minor": 0 }, @@ -1429,7 +1608,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8fa19f79b5b24960a0406b57aec15d97", "version_major": 2, "version_minor": 0 }, @@ -1443,7 +1622,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "47fc7a6d129c4fbe8ffeec0ae5462473", "version_major": 2, "version_minor": 0 }, @@ -1457,7 +1636,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7db3b75a263f4ddda899eb29f5cfaef3", "version_major": 2, "version_minor": 0 }, @@ -1471,7 +1650,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "26e3ef4daa1040c08318f410c9ce7301", "version_major": 2, "version_minor": 0 }, @@ -1485,7 +1664,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2757386cc60944f8882392a13593aea3", "version_major": 2, "version_minor": 0 }, @@ -1499,7 +1678,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4b978e6606314196ab8e5357263bdf46", "version_major": 2, "version_minor": 0 }, @@ -1513,7 +1692,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "35250da3c5d24ac6be004b8377f0471f", "version_major": 2, "version_minor": 0 }, @@ -1527,7 +1706,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "595bb83f8eda4b4bad9cc570604cfeda", "version_major": 2, "version_minor": 0 }, @@ -1541,7 +1720,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1533565239a74701823302f09bf1bc44", "version_major": 2, "version_minor": 0 }, @@ -1555,7 +1734,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "336786699ff5436da313a46db847fab4", "version_major": 2, "version_minor": 0 }, @@ -1569,7 +1748,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "553e586e7cd54ad3bb9e01d0fc37754e", + "model_id": "cf95bde69fa14a1eb0a348a4c394f678", "version_major": 2, "version_minor": 0 }, @@ -1583,7 +1762,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "05c22b9bdd4c48098756a37b57fc963b", + "model_id": "7aca029ff1bd4a159fa095fe2a761a79", "version_major": 2, "version_minor": 0 }, @@ -1597,7 +1776,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f073bf03d90b4e318352c5de82bb9953", + "model_id": "99ec7e76a90e4d32aa129b8a5432f9b1", "version_major": 2, "version_minor": 0 }, @@ -1645,13 +1824,19 @@ "execution_count": 28, "id": "672b4410", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:57.233763Z", + "iopub.status.busy": "2023-08-22T06:36:57.233589Z", + "iopub.status.idle": "2023-08-22T06:36:58.499876Z", + "shell.execute_reply": "2023-08-22T06:36:58.499595Z" + }, "lines_to_next_cell": 2 }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f0857a2a00a847c084831c51d7fd8dfd", + "model_id": "ce00caf66b9d4b4a9bef45097da41604", "version_major": 2, "version_minor": 0 }, @@ -1663,29 +1848,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│         test_loss               125020.2421875       │\n",
-       "│         test_mae               250.8108367919922     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 125020.2421875 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_mae \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 250.8108367919922 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_loss 125020.2421875\n", + " test_mae 250.8108367919922\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -1721,7 +1893,14 @@ "cell_type": "code", "execution_count": 29, "id": "8cf6ef60", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.501449Z", + "iopub.status.busy": "2023-08-22T06:36:58.501342Z", + "iopub.status.idle": "2023-08-22T06:36:58.505142Z", + "shell.execute_reply": "2023-08-22T06:36:58.504888Z" + } + }, "outputs": [], "source": [ "hit_results = pd.read_csv(hit_logger.experiment.metrics_file_path)" @@ -1741,6 +1920,12 @@ "execution_count": 30, "id": "67ce1e26", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.506556Z", + "iopub.status.busy": "2023-08-22T06:36:58.506485Z", + "iopub.status.idle": "2023-08-22T06:36:58.508767Z", + "shell.execute_reply": "2023-08-22T06:36:58.508514Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -1784,6 +1969,12 @@ "execution_count": 31, "id": "deb684d2", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.510129Z", + "iopub.status.busy": "2023-08-22T06:36:58.510060Z", + "iopub.status.idle": "2023-08-22T06:36:58.709656Z", + "shell.execute_reply": "2023-08-22T06:36:58.700996Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -1831,6 +2022,12 @@ "execution_count": 32, "id": "454033dd", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.732799Z", + "iopub.status.busy": "2023-08-22T06:36:58.729950Z", + "iopub.status.idle": "2023-08-22T06:36:58.780581Z", + "shell.execute_reply": "2023-08-22T06:36:58.765673Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -1877,6 +2074,12 @@ "execution_count": 33, "id": "71b3d0d0", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.807133Z", + "iopub.status.busy": "2023-08-22T06:36:58.800859Z", + "iopub.status.idle": "2023-08-22T06:36:58.836318Z", + "shell.execute_reply": "2023-08-22T06:36:58.822052Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -1909,7 +2112,14 @@ "cell_type": "code", "execution_count": 34, "id": "def8605c", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.852033Z", + "iopub.status.busy": "2023-08-22T06:36:58.848358Z", + "iopub.status.idle": "2023-08-22T06:36:58.873333Z", + "shell.execute_reply": "2023-08-22T06:36:58.873077Z" + } + }, "outputs": [ { "data": { @@ -1964,7 +2174,14 @@ "cell_type": "code", "execution_count": 35, "id": "8b9e2b8c", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.874850Z", + "iopub.status.busy": "2023-08-22T06:36:58.874776Z", + "iopub.status.idle": "2023-08-22T06:36:58.877600Z", + "shell.execute_reply": "2023-08-22T06:36:58.877374Z" + } + }, "outputs": [], "source": [ "mnist_dm = SimpleDataModule(mnist_train,\n", @@ -1988,6 +2205,12 @@ "execution_count": 36, "id": "a4b95dc6", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:36:58.879121Z", + "iopub.status.busy": "2023-08-22T06:36:58.879027Z", + "iopub.status.idle": "2023-08-22T06:37:01.493098Z", + "shell.execute_reply": "2023-08-22T06:37:01.492695Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -2026,7 +2249,14 @@ "cell_type": "code", "execution_count": 37, "id": "17714c25", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.495059Z", + "iopub.status.busy": "2023-08-22T06:37:01.494927Z", + "iopub.status.idle": "2023-08-22T06:37:01.497746Z", + "shell.execute_reply": "2023-08-22T06:37:01.497412Z" + } + }, "outputs": [], "source": [ "class MNISTModel(nn.Module):\n", @@ -2066,7 +2296,14 @@ "cell_type": "code", "execution_count": 38, "id": "88a4bf46", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.499269Z", + "iopub.status.busy": "2023-08-22T06:37:01.499164Z", + "iopub.status.idle": "2023-08-22T06:37:01.501783Z", + "shell.execute_reply": "2023-08-22T06:37:01.501554Z" + } + }, "outputs": [], "source": [ "mnist_model = MNISTModel()\n" @@ -2085,7 +2322,14 @@ "cell_type": "code", "execution_count": 39, "id": "ea0d9387", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.503288Z", + "iopub.status.busy": "2023-08-22T06:37:01.503188Z", + "iopub.status.idle": "2023-08-22T06:37:01.506547Z", + "shell.execute_reply": "2023-08-22T06:37:01.506292Z" + } + }, "outputs": [ { "data": { @@ -2116,7 +2360,14 @@ "cell_type": "code", "execution_count": 40, "id": "17c34a29", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.507963Z", + "iopub.status.busy": "2023-08-22T06:37:01.507888Z", + "iopub.status.idle": "2023-08-22T06:37:01.511369Z", + "shell.execute_reply": "2023-08-22T06:37:01.511148Z" + } + }, "outputs": [ { "data": { @@ -2140,7 +2391,7 @@ "Total params: 235,146\n", "Trainable params: 235,146\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.MEGABYTES): 60.20\n", + "Total mult-adds (M): 60.20\n", "===================================================================================================================\n", "Input size (MB): 0.80\n", "Forward/backward pass size (MB): 0.81\n", @@ -2178,7 +2429,14 @@ "cell_type": "code", "execution_count": 41, "id": "a0608bd1", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.512793Z", + "iopub.status.busy": "2023-08-22T06:37:01.512716Z", + "iopub.status.idle": "2023-08-22T06:37:01.515484Z", + "shell.execute_reply": "2023-08-22T06:37:01.515264Z" + } + }, "outputs": [], "source": [ "mnist_module = SimpleModule.classification(mnist_model,\n", @@ -2199,6 +2457,12 @@ "execution_count": 42, "id": "cf8e3d9d", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:01.516943Z", + "iopub.status.busy": "2023-08-22T06:37:01.516871Z", + "iopub.status.idle": "2023-08-22T06:37:52.281809Z", + "shell.execute_reply": "2023-08-22T06:37:52.281494Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -2225,7 +2489,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "63df57862e174cfbac1b87dcdce84e5b", "version_major": 2, "version_minor": 0 }, @@ -2239,7 +2503,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2c7fc7b3fc61455b88cf7020ce62d19e", + "model_id": "0c8fa4bf11bc406ca04772133304a80b", "version_major": 2, "version_minor": 0 }, @@ -2253,7 +2517,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "286d40af4ac7465fa859e111186e92a2", "version_major": 2, "version_minor": 0 }, @@ -2267,7 +2531,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b34683237d33463fb3e956721f9e93a0", "version_major": 2, "version_minor": 0 }, @@ -2281,7 +2545,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8f17ac7cff5a42238da4984e05d2d712", "version_major": 2, "version_minor": 0 }, @@ -2295,7 +2559,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "856884c4ba3140fbbb44c8d3860be17d", "version_major": 2, "version_minor": 0 }, @@ -2309,7 +2573,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9ed1badd6c7f42458216610a2bd88f1d", "version_major": 2, "version_minor": 0 }, @@ -2323,7 +2587,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a27211d050d742dda389aaaa17816a49", "version_major": 2, "version_minor": 0 }, @@ -2337,7 +2601,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "dced6bafd5f243d981b97c504f026b7f", "version_major": 2, "version_minor": 0 }, @@ -2351,7 +2615,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "86b5e3b7319948c58d1a0f287a6a4270", "version_major": 2, "version_minor": 0 }, @@ -2365,7 +2629,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ab0715c2a7f1471880888a605ab86282", "version_major": 2, "version_minor": 0 }, @@ -2379,7 +2643,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9464a6e45dfb43738c7874084ac2511e", "version_major": 2, "version_minor": 0 }, @@ -2393,7 +2657,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a5651d6107914f21bc97a9fd2c20b000", "version_major": 2, "version_minor": 0 }, @@ -2407,7 +2671,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b37a8d5ca7304c59a1664ab01623ea38", "version_major": 2, "version_minor": 0 }, @@ -2421,7 +2685,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "52f72ebf2fa746678a69ebd20a2ae421", "version_major": 2, "version_minor": 0 }, @@ -2435,7 +2699,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "574b08674760459b81784861b17f6075", "version_major": 2, "version_minor": 0 }, @@ -2449,7 +2713,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9b79941ecf2d47629bb468627f87304d", "version_major": 2, "version_minor": 0 }, @@ -2463,7 +2727,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "afd5fd2289b14774abfecb664ae8f1f6", "version_major": 2, "version_minor": 0 }, @@ -2477,7 +2741,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c68cb2ae3cb7470c818018e1cbf99c53", "version_major": 2, "version_minor": 0 }, @@ -2491,7 +2755,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "61c8fa4636a644838437c44919302c34", "version_major": 2, "version_minor": 0 }, @@ -2505,7 +2769,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3781e10d43934126bc83e58535033938", "version_major": 2, "version_minor": 0 }, @@ -2519,7 +2783,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2f00c8d3fb2e4ed2945bec5615d85b16", "version_major": 2, "version_minor": 0 }, @@ -2533,7 +2797,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fe5e1fbf55f24dfd995dda102b48815f", "version_major": 2, "version_minor": 0 }, @@ -2547,7 +2811,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "92faf4f20b4f4b648131a1287eb58a68", "version_major": 2, "version_minor": 0 }, @@ -2561,7 +2825,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "35eba2f8bb364320b874de8ffd41778a", "version_major": 2, "version_minor": 0 }, @@ -2575,7 +2839,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "184fd0680a8547a1ad2ce64277a80953", "version_major": 2, "version_minor": 0 }, @@ -2589,7 +2853,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f51d91a802da450ab9dfd5f20617ca01", "version_major": 2, "version_minor": 0 }, @@ -2603,7 +2867,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ca16933a17ff48c8bb1f4f4cff010460", "version_major": 2, "version_minor": 0 }, @@ -2617,7 +2881,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0468b22a642a48cdb877bec15fcca541", "version_major": 2, "version_minor": 0 }, @@ -2631,7 +2895,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0984ca944941484e93e601290273e964", "version_major": 2, "version_minor": 0 }, @@ -2645,7 +2909,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0e31a106652a4d97bcaa03c8bb92d0a3", "version_major": 2, "version_minor": 0 }, @@ -2659,7 +2923,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5f752e49bf3f4e6498a650df67fac555", "version_major": 2, "version_minor": 0 }, @@ -2722,6 +2986,12 @@ "execution_count": 43, "id": "45e03385", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:52.284184Z", + "iopub.status.busy": "2023-08-22T06:37:52.284067Z", + "iopub.status.idle": "2023-08-22T06:37:52.410238Z", + "shell.execute_reply": "2023-08-22T06:37:52.398096Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -2761,12 +3031,19 @@ "cell_type": "code", "execution_count": 44, "id": "3a875b78", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:52.428640Z", + "iopub.status.busy": "2023-08-22T06:37:52.428508Z", + "iopub.status.idle": "2023-08-22T06:37:54.669809Z", + "shell.execute_reply": "2023-08-22T06:37:54.669487Z" + } + }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "759de3284ee24f5c8191c1fc922f3e1d", + "model_id": "7d992d3d2f4c42a19871f4bff88c3af3", "version_major": 2, "version_minor": 0 }, @@ -2778,29 +3055,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│       test_accuracy           0.9656999707221985     │\n",
-       "│         test_loss             0.15191325545310974    │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.9656999707221985 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.15191325545310974 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_accuracy 0.9656999707221985\n", + " test_loss 0.15191325545310974\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -2835,7 +3099,14 @@ "cell_type": "code", "execution_count": 45, "id": "2f035d83", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:54.671428Z", + "iopub.status.busy": "2023-08-22T06:37:54.671322Z", + "iopub.status.idle": "2023-08-22T06:37:54.674968Z", + "shell.execute_reply": "2023-08-22T06:37:54.674733Z" + } + }, "outputs": [], "source": [ "class MNIST_MLR(nn.Module):\n", @@ -2857,6 +3128,12 @@ "execution_count": 46, "id": "2cd67ad8", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:37:54.676335Z", + "iopub.status.busy": "2023-08-22T06:37:54.676230Z", + "iopub.status.idle": "2023-08-22T06:38:31.495310Z", + "shell.execute_reply": "2023-08-22T06:38:31.495001Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -2868,7 +3145,7 @@ "TPU available: False, using: 0 TPU cores\n", "IPU available: False, using: 0 IPUs\n", "HPU available: False, using: 0 HPUs\n", - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/pytorch_lightning/trainer/connectors/logger_connector/logger_connector.py:67: UserWarning: Starting from v1.9.0, `tensorboardX` has been removed as a dependency of the `pytorch_lightning` package, due to potential conflicts with other packages in the ML ecosystem. For this reason, `logger=True` will use `CSVLogger` as the default logger, unless the `tensorboard` or `tensorboardX` packages are found. Please `pip install lightning[extra]` or one of them to enable TensorBoard support by default\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1_Ch10/lib/python3.10/site-packages/pytorch_lightning/trainer/connectors/logger_connector/logger_connector.py:67: UserWarning: Starting from v1.9.0, `tensorboardX` has been removed as a dependency of the `pytorch_lightning` package, due to potential conflicts with other packages in the ML ecosystem. For this reason, `logger=True` will use `CSVLogger` as the default logger, unless the `tensorboard` or `tensorboardX` packages are found. Please `pip install lightning[extra]` or one of them to enable TensorBoard support by default\n", " warning_cache.warn(\n", "\n", " | Name | Type | Params\n", @@ -2885,7 +3162,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "bfb904663981447bb712602e62891de1", "version_major": 2, "version_minor": 0 }, @@ -2899,7 +3176,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c932821add0e4296a5ff2122a94b6090", + "model_id": "e3364eae3d824a26aaf19ba7738f28b9", "version_major": 2, "version_minor": 0 }, @@ -2913,7 +3190,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e1dc3c094ca54b96ae09ea1c3f81cc96", "version_major": 2, "version_minor": 0 }, @@ -2927,7 +3204,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4a3e74d53cf140a29a4d1b01260bf530", "version_major": 2, "version_minor": 0 }, @@ -2941,7 +3218,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b4cf599c02a7410c9ec4e05329db6df0", "version_major": 2, "version_minor": 0 }, @@ -2955,7 +3232,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "814cedc37fdf494a8f37ae75f786a488", "version_major": 2, "version_minor": 0 }, @@ -2969,7 +3246,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3387c62a7ae04f9eac1b602a233201bb", "version_major": 2, "version_minor": 0 }, @@ -2983,7 +3260,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a12cb53f2cc14211ab3c12fd13a94f46", "version_major": 2, "version_minor": 0 }, @@ -2997,7 +3274,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e469c5cba17041f48b01fcaeaed1d040", "version_major": 2, "version_minor": 0 }, @@ -3011,7 +3288,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "db53f47adf33437cb639826826a4f742", "version_major": 2, "version_minor": 0 }, @@ -3025,7 +3302,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4cd1385e29684a879108d2763d2e4cd3", "version_major": 2, "version_minor": 0 }, @@ -3039,7 +3316,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3dacf3d615594a9884ef59a89ed0c1e9", "version_major": 2, "version_minor": 0 }, @@ -3053,7 +3330,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a6b06fd536944ae3971183f35ba1e45a", "version_major": 2, "version_minor": 0 }, @@ -3067,7 +3344,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4543fecdfd1346e88f199d9c6107b5a8", "version_major": 2, "version_minor": 0 }, @@ -3081,7 +3358,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c07a0d1af5b34ca790851b9b6c3cc1fb", "version_major": 2, "version_minor": 0 }, @@ -3095,7 +3372,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c821f02c7ee74661b26608f1fc1983fc", "version_major": 2, "version_minor": 0 }, @@ -3109,7 +3386,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2ca69f57ca64402cbac17a0cc41251bd", "version_major": 2, "version_minor": 0 }, @@ -3123,7 +3400,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9bec18d959e04b09a24e45eb4358a781", "version_major": 2, "version_minor": 0 }, @@ -3137,7 +3414,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8a79c0a468e74ea8a111599eec165c69", "version_major": 2, "version_minor": 0 }, @@ -3151,7 +3428,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fb3603a207e740248be768607e63761d", "version_major": 2, "version_minor": 0 }, @@ -3165,7 +3442,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7130f188d1924868b718bcb91afba8cd", "version_major": 2, "version_minor": 0 }, @@ -3179,7 +3456,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0af30b215570490d8397e96f7e67e169", "version_major": 2, "version_minor": 0 }, @@ -3193,7 +3470,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "11829c6266c34b16bcf2bc14770ec616", "version_major": 2, "version_minor": 0 }, @@ -3207,7 +3484,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "644d1658d5fc4487bc96ba4ea27931f9", "version_major": 2, "version_minor": 0 }, @@ -3221,7 +3498,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8a87440cc465478c95e06513e60a91ea", "version_major": 2, "version_minor": 0 }, @@ -3235,7 +3512,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ab35b9b6a5c94baf8d53bad7bd150b37", "version_major": 2, "version_minor": 0 }, @@ -3249,7 +3526,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2a15168b71a84a63bf66428210d3b7ee", "version_major": 2, "version_minor": 0 }, @@ -3263,7 +3540,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "86c59ce412d244228a3efe65e7a200ab", "version_major": 2, "version_minor": 0 }, @@ -3277,7 +3554,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e8e0a846378540089bfb6423c50d17dc", "version_major": 2, "version_minor": 0 }, @@ -3291,7 +3568,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "30feb3e8cfce44259a8100b7b8b24a25", "version_major": 2, "version_minor": 0 }, @@ -3305,7 +3582,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e656ee1c23a14c0fbdda369b9ee1af88", "version_major": 2, "version_minor": 0 }, @@ -3319,7 +3596,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "22c7db100b94443bb460b48280327587", "version_major": 2, "version_minor": 0 }, @@ -3358,13 +3635,19 @@ "execution_count": 47, "id": "3900d16e", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:31.497398Z", + "iopub.status.busy": "2023-08-22T06:38:31.497283Z", + "iopub.status.idle": "2023-08-22T06:38:33.741306Z", + "shell.execute_reply": "2023-08-22T06:38:33.740988Z" + }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "63d666ec843544bf804c3fc6fc5fd6ab", + "model_id": "c57bc8ba68d144729b19ba47f0d2c05d", "version_major": 2, "version_minor": 0 }, @@ -3376,29 +3659,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│       test_accuracy           0.9235000014305115     │\n",
-       "│         test_loss             0.3271547853946686     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.9235000014305115 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.3271547853946686 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_accuracy 0.9235000014305115\n", + " test_loss 0.3271547853946686\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -3432,6 +3702,12 @@ "execution_count": 48, "id": "679f2ea5", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:33.742928Z", + "iopub.status.busy": "2023-08-22T06:38:33.742820Z", + "iopub.status.idle": "2023-08-22T06:38:33.744700Z", + "shell.execute_reply": "2023-08-22T06:38:33.744472Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -3462,7 +3738,14 @@ "cell_type": "code", "execution_count": 49, "id": "e4af6604", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:33.746175Z", + "iopub.status.busy": "2023-08-22T06:38:33.746084Z", + "iopub.status.idle": "2023-08-22T06:38:35.260793Z", + "shell.execute_reply": "2023-08-22T06:38:35.260496Z" + } + }, "outputs": [ { "name": "stdout", @@ -3485,7 +3768,14 @@ "cell_type": "code", "execution_count": 50, "id": "2b613ecc", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:35.262479Z", + "iopub.status.busy": "2023-08-22T06:38:35.262391Z", + "iopub.status.idle": "2023-08-22T06:38:36.005488Z", + "shell.execute_reply": "2023-08-22T06:38:36.005166Z" + } + }, "outputs": [], "source": [ "transform = ToTensor()\n", @@ -3517,6 +3807,12 @@ "execution_count": 51, "id": "4b325cb4", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:36.007353Z", + "iopub.status.busy": "2023-08-22T06:38:36.007234Z", + "iopub.status.idle": "2023-08-22T06:38:36.010064Z", + "shell.execute_reply": "2023-08-22T06:38:36.009819Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -3541,6 +3837,12 @@ "execution_count": 52, "id": "cb3d00cb", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:36.011610Z", + "iopub.status.busy": "2023-08-22T06:38:36.011502Z", + "iopub.status.idle": "2023-08-22T06:38:38.616192Z", + "shell.execute_reply": "2023-08-22T06:38:38.615836Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -3580,6 +3882,12 @@ "execution_count": 53, "id": "60d09656", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:38.618165Z", + "iopub.status.busy": "2023-08-22T06:38:38.618040Z", + "iopub.status.idle": "2023-08-22T06:38:38.959064Z", + "shell.execute_reply": "2023-08-22T06:38:38.950625Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -3629,7 +3937,14 @@ "cell_type": "code", "execution_count": 54, "id": "f823da11", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:38.970097Z", + "iopub.status.busy": "2023-08-22T06:38:38.969929Z", + "iopub.status.idle": "2023-08-22T06:38:38.990599Z", + "shell.execute_reply": "2023-08-22T06:38:38.982099Z" + } + }, "outputs": [], "source": [ "class BuildingBlock(nn.Module):\n", @@ -3674,7 +3989,14 @@ "cell_type": "code", "execution_count": 55, "id": "1a172f7e", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:39.009337Z", + "iopub.status.busy": "2023-08-22T06:38:39.007564Z", + "iopub.status.idle": "2023-08-22T06:38:39.027768Z", + "shell.execute_reply": "2023-08-22T06:38:39.017688Z" + } + }, "outputs": [], "source": [ "class CIFARModel(nn.Module):\n", @@ -3711,6 +4033,12 @@ "execution_count": 56, "id": "651e62b4", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:39.041161Z", + "iopub.status.busy": "2023-08-22T06:38:39.040974Z", + "iopub.status.idle": "2023-08-22T06:38:39.147687Z", + "shell.execute_reply": "2023-08-22T06:38:39.147402Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -3747,7 +4075,7 @@ "Total params: 964,516\n", "Trainable params: 964,516\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.GIGABYTES): 2.01\n", + "Total mult-adds (G): 2.01\n", "===================================================================================================================\n", "Input size (MB): 1.57\n", "Forward/backward pass size (MB): 63.54\n", @@ -3807,7 +4135,14 @@ "cell_type": "code", "execution_count": 57, "id": "63f2650e", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:39.149388Z", + "iopub.status.busy": "2023-08-22T06:38:39.149267Z", + "iopub.status.idle": "2023-08-22T06:38:39.152471Z", + "shell.execute_reply": "2023-08-22T06:38:39.152156Z" + } + }, "outputs": [], "source": [ "cifar_optimizer = RMSprop(cifar_model.parameters(), lr=0.001)\n", @@ -3821,7 +4156,14 @@ "cell_type": "code", "execution_count": 58, "id": "a3e4bc28", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:38:39.153978Z", + "iopub.status.busy": "2023-08-22T06:38:39.153895Z", + "iopub.status.idle": "2023-08-22T06:41:13.243974Z", + "shell.execute_reply": "2023-08-22T06:41:13.243600Z" + } + }, "outputs": [ { "name": "stderr", @@ -3846,7 +4188,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "cf75ac2267f9488babf1c88067185953", "version_major": 2, "version_minor": 0 }, @@ -3860,7 +4202,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "40c811fa26da4690a95838e6ab0a8a98", + "model_id": "30da5d15249f473bb2e55004a4fbc6fc", "version_major": 2, "version_minor": 0 }, @@ -3874,7 +4216,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "75f26bea217748b1b0bfb0b97b06be25", "version_major": 2, "version_minor": 0 }, @@ -3888,7 +4230,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "abca09d01792423dbe50d4e71ea8bb2b", "version_major": 2, "version_minor": 0 }, @@ -3902,7 +4244,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "063695dad311441ebcfa6408148a54f2", "version_major": 2, "version_minor": 0 }, @@ -3916,7 +4258,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e0b1014a1bf24b4aa0a0062a215ecf06", "version_major": 2, "version_minor": 0 }, @@ -3930,7 +4272,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c06e825534814c1f8942b2fd0e719833", "version_major": 2, "version_minor": 0 }, @@ -3944,7 +4286,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4d3a2c2b34ce4cdba5387b4066c33bc1", "version_major": 2, "version_minor": 0 }, @@ -3958,7 +4300,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ca1c1a95c02f46588c9603928ad2c8eb", "version_major": 2, "version_minor": 0 }, @@ -3972,7 +4314,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "242fa898b94a40579e6a9331a5039240", "version_major": 2, "version_minor": 0 }, @@ -3986,7 +4328,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7ad231ef819943fea0f68783c6e0ed4d", "version_major": 2, "version_minor": 0 }, @@ -4000,7 +4342,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9b786b6275fd4693b006ef6e529e3227", "version_major": 2, "version_minor": 0 }, @@ -4014,7 +4356,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5e42a316520f44ada04f9ce2978daa8a", "version_major": 2, "version_minor": 0 }, @@ -4028,7 +4370,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e9e3bd085ffd4dd68056e252d761edde", "version_major": 2, "version_minor": 0 }, @@ -4042,7 +4384,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4c7702499c474ebe887d17f110b136f7", "version_major": 2, "version_minor": 0 }, @@ -4056,7 +4398,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3e38f9ac5d644c8b914fcda42d71fd30", "version_major": 2, "version_minor": 0 }, @@ -4070,7 +4412,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "12159193294842879e2abf2a6a57542c", "version_major": 2, "version_minor": 0 }, @@ -4084,7 +4426,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "d71292277b484c9ebcf31c730a7aece1", "version_major": 2, "version_minor": 0 }, @@ -4098,7 +4440,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0016c30eadbe49ababf5b92c7fcf2f2b", "version_major": 2, "version_minor": 0 }, @@ -4112,7 +4454,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "feef8645a1134646b9ecde5310876ae1", "version_major": 2, "version_minor": 0 }, @@ -4126,7 +4468,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e30a991ac871447e98466cea30cc1e9b", "version_major": 2, "version_minor": 0 }, @@ -4140,7 +4482,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2ecaf65a04ee4b0698d666dcfdad463a", "version_major": 2, "version_minor": 0 }, @@ -4154,7 +4496,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8ca015472e6e49d5bf04f6eb6c147da4", "version_major": 2, "version_minor": 0 }, @@ -4168,7 +4510,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7c265e3e36c94d0196236e5ef3aa587f", "version_major": 2, "version_minor": 0 }, @@ -4182,7 +4524,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "161a3af371ca4d60a28dcafe05d27e64", "version_major": 2, "version_minor": 0 }, @@ -4196,7 +4538,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e928c858bece4168a70610230c811c85", "version_major": 2, "version_minor": 0 }, @@ -4210,7 +4552,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2f8a344b80b14c0bbeca2fbafc3c7b8c", "version_major": 2, "version_minor": 0 }, @@ -4224,7 +4566,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0a46cdb4c1b3476f9a6805a44088fed3", "version_major": 2, "version_minor": 0 }, @@ -4238,7 +4580,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "150df772fdeb468c8ae3dd482aba37d4", "version_major": 2, "version_minor": 0 }, @@ -4252,7 +4594,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0d23b1967cfb439eaf23fd1c7d80aa58", "version_major": 2, "version_minor": 0 }, @@ -4266,7 +4608,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fd4a4f6be2084d2dabad62591601d0ef", "version_major": 2, "version_minor": 0 }, @@ -4280,7 +4622,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4fa594c69b7e4fb485f6c5ef8b4468f1", "version_major": 2, "version_minor": 0 }, @@ -4328,6 +4670,12 @@ "execution_count": 59, "id": "6b161d93", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:41:13.246757Z", + "iopub.status.busy": "2023-08-22T06:41:13.246644Z", + "iopub.status.idle": "2023-08-22T06:41:13.338213Z", + "shell.execute_reply": "2023-08-22T06:41:13.337367Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -4368,13 +4716,19 @@ "execution_count": 60, "id": "ab8a91dc", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:41:13.343721Z", + "iopub.status.busy": "2023-08-22T06:41:13.343026Z", + "iopub.status.idle": "2023-08-22T06:41:15.701168Z", + "shell.execute_reply": "2023-08-22T06:41:15.700777Z" + }, "lines_to_next_cell": 2 }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6dced9ab160c4c30b094a877f330efba", + "model_id": "72fa41a873654201bbc2bbb922da9bc2", "version_major": 2, "version_minor": 0 }, @@ -4386,29 +4740,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│       test_accuracy           0.42969998717308044    │\n",
-       "│         test_loss             2.4235761165618896     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.42969998717308044 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 2.4235761165618896 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_accuracy 0.42969998717308044\n", + " test_loss 2.4235761165618896\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -4451,6 +4792,12 @@ "execution_count": 61, "id": "6d9962ae", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:41:15.702808Z", + "iopub.status.busy": "2023-08-22T06:41:15.702702Z", + "iopub.status.idle": "2023-08-22T06:44:01.467525Z", + "shell.execute_reply": "2023-08-22T06:44:01.467145Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -4477,7 +4824,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8561f251621b4b4bb80996645ee21113", "version_major": 2, "version_minor": 0 }, @@ -4491,7 +4838,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6409051044c94ad9af785a42df78d36e", + "model_id": "6ec66d48c6cb4c3d946961e005a8a479", "version_major": 2, "version_minor": 0 }, @@ -4506,14 +4853,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/torchmetrics/functional/classification/accuracy.py:77: UserWarning: MPS: no support for int64 reduction ops, casting it to int32 (Triggered internally at /Users/runner/work/pytorch/pytorch/pytorch/aten/src/ATen/native/mps/operations/ReduceOps.mm:144.)\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1_Ch10/lib/python3.10/site-packages/torchmetrics/functional/classification/accuracy.py:77: UserWarning: MPS: no support for int64 reduction ops, casting it to int32 (Triggered internally at /Users/runner/work/pytorch/pytorch/pytorch/aten/src/ATen/native/mps/operations/ReduceOps.mm:144.)\n", " tp = tp.sum(dim=0 if multidim_average == \"global\" else 1)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4d4700f8a59d48909fab4b18101147f7", "version_major": 2, "version_minor": 0 }, @@ -4527,7 +4874,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3818f316eaca4ba495994364785ace29", "version_major": 2, "version_minor": 0 }, @@ -4541,7 +4888,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "733bcce394364359a4f1377471a556f3", "version_major": 2, "version_minor": 0 }, @@ -4555,7 +4902,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "741fbb3b9bb34571acfbe63d2cfc83b1", "version_major": 2, "version_minor": 0 }, @@ -4569,7 +4916,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "058f545200134cddb98ab49116a4b5b6", "version_major": 2, "version_minor": 0 }, @@ -4583,7 +4930,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2ef3ac0704564c54a5f010a467cb17b8", "version_major": 2, "version_minor": 0 }, @@ -4597,7 +4944,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6813b7f3eeab473ea3232bcb1a8b805e", "version_major": 2, "version_minor": 0 }, @@ -4611,7 +4958,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8fd851ce512b410b8a7c90b1ca2d4d88", "version_major": 2, "version_minor": 0 }, @@ -4625,7 +4972,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b07cf4aa47a84e4186a0184c774f1b62", "version_major": 2, "version_minor": 0 }, @@ -4639,7 +4986,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "74c3c3d036394b729679bb50be07979f", "version_major": 2, "version_minor": 0 }, @@ -4653,7 +5000,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4d9b17ce0c264604ad78cca0b4a95c83", "version_major": 2, "version_minor": 0 }, @@ -4667,7 +5014,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c169f02b4204490bb077558716d3774e", "version_major": 2, "version_minor": 0 }, @@ -4681,7 +5028,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "18a31aba978d4a8692111fb6c55fe85d", "version_major": 2, "version_minor": 0 }, @@ -4695,7 +5042,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c520605694ca49158bca1679e5987432", "version_major": 2, "version_minor": 0 }, @@ -4709,7 +5056,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "59894643e27a46a091c3c42ffd1e9797", "version_major": 2, "version_minor": 0 }, @@ -4723,7 +5070,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5adba0c8771a46e9a4b64c5492134377", "version_major": 2, "version_minor": 0 }, @@ -4737,7 +5084,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "05cc7d17519247d4bed8d0260fd8c9c6", "version_major": 2, "version_minor": 0 }, @@ -4751,7 +5098,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "48808854ac234c8ca63b5e5b273f17bd", "version_major": 2, "version_minor": 0 }, @@ -4765,7 +5112,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "92cf213e529d4e34be6d8473a8ca6b23", "version_major": 2, "version_minor": 0 }, @@ -4779,7 +5126,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ec82fcb270004491a95123102e13a852", "version_major": 2, "version_minor": 0 }, @@ -4793,7 +5140,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5abf5e8af169412a9ceef746437ccaf4", "version_major": 2, "version_minor": 0 }, @@ -4807,7 +5154,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "978f680372c846dabc500b9ccb9b80d8", "version_major": 2, "version_minor": 0 }, @@ -4821,7 +5168,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ac9a9c30854f4607a35ddb6623a312b6", "version_major": 2, "version_minor": 0 }, @@ -4835,7 +5182,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ad5df9b2fa754520af1210fe3e8e8406", "version_major": 2, "version_minor": 0 }, @@ -4849,7 +5196,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "27ff88a097934fecb6d5897713435267", "version_major": 2, "version_minor": 0 }, @@ -4863,7 +5210,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "243e06349f03454cbcab5ecd2d67f896", "version_major": 2, "version_minor": 0 }, @@ -4877,7 +5224,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9443d9fd5d7b45649a37e5cc1f52c58d", "version_major": 2, "version_minor": 0 }, @@ -4891,7 +5238,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c531fb2f7d5244ad8d0c0e4a4ee028c7", "version_major": 2, "version_minor": 0 }, @@ -4905,7 +5252,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b5460433203542fea838b387894252c0", "version_major": 2, "version_minor": 0 }, @@ -4919,7 +5266,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c7c5e5f98571429b8dd82815442cd626", "version_major": 2, "version_minor": 0 }, @@ -4940,7 +5287,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4f37d3b614314b6fbf9dfb3df1775948", + "model_id": "486106ba7b134b3682fc506c03ebce5e", "version_major": 2, "version_minor": 0 }, @@ -5003,6 +5350,12 @@ "execution_count": 62, "id": "a71c9acb", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:01.469991Z", + "iopub.status.busy": "2023-08-22T06:44:01.469875Z", + "iopub.status.idle": "2023-08-22T06:44:01.935872Z", + "shell.execute_reply": "2023-08-22T06:44:01.935582Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -5042,6 +5395,12 @@ "execution_count": 63, "id": "4f890244", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:01.937487Z", + "iopub.status.busy": "2023-08-22T06:44:01.937384Z", + "iopub.status.idle": "2023-08-22T06:44:02.437287Z", + "shell.execute_reply": "2023-08-22T06:44:02.436974Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -5230,7 +5589,7 @@ "Total params: 25,557,032\n", "Trainable params: 25,557,032\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.GIGABYTES): 24.54\n", + "Total mult-adds (G): 24.54\n", "===================================================================================================================\n", "Input size (MB): 3.61\n", "Forward/backward pass size (MB): 1066.99\n", @@ -5266,6 +5625,12 @@ "execution_count": 64, "id": "c4be9922", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.438850Z", + "iopub.status.busy": "2023-08-22T06:44:02.438741Z", + "iopub.status.idle": "2023-08-22T06:44:02.441925Z", + "shell.execute_reply": "2023-08-22T06:44:02.441612Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -5475,7 +5840,14 @@ "cell_type": "code", "execution_count": 65, "id": "2dc63d85", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.443425Z", + "iopub.status.busy": "2023-08-22T06:44:02.443344Z", + "iopub.status.idle": "2023-08-22T06:44:02.567717Z", + "shell.execute_reply": "2023-08-22T06:44:02.567412Z" + } + }, "outputs": [], "source": [ "img_preds = resnet_model(imgs)\n" @@ -5496,7 +5868,14 @@ "cell_type": "code", "execution_count": 66, "id": "711d5ba7", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.569455Z", + "iopub.status.busy": "2023-08-22T06:44:02.569371Z", + "iopub.status.idle": "2023-08-22T06:44:02.571608Z", + "shell.execute_reply": "2023-08-22T06:44:02.571356Z" + } + }, "outputs": [], "source": [ "img_probs = np.exp(np.asarray(img_preds.detach()))\n", @@ -5515,7 +5894,14 @@ "cell_type": "code", "execution_count": 67, "id": "b22f70d8", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.573175Z", + "iopub.status.busy": "2023-08-22T06:44:02.573082Z", + "iopub.status.idle": "2023-08-22T06:44:02.580482Z", + "shell.execute_reply": "2023-08-22T06:44:02.580237Z" + } + }, "outputs": [], "source": [ "labs = json.load(open('imagenet_class_index.json'))\n", @@ -5541,6 +5927,12 @@ "execution_count": 68, "id": "b19c6bd1", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.581982Z", + "iopub.status.busy": "2023-08-22T06:44:02.581889Z", + "iopub.status.idle": "2023-08-22T06:44:02.593476Z", + "shell.execute_reply": "2023-08-22T06:44:02.593210Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -5607,6 +5999,12 @@ "execution_count": 69, "id": "ba80b615", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.594912Z", + "iopub.status.busy": "2023-08-22T06:44:02.594816Z", + "iopub.status.idle": "2023-08-22T06:44:02.596527Z", + "shell.execute_reply": "2023-08-22T06:44:02.596344Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -5651,6 +6049,12 @@ "execution_count": 70, "id": "ba6d2d2c", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.597905Z", + "iopub.status.busy": "2023-08-22T06:44:02.597817Z", + "iopub.status.idle": "2023-08-22T06:44:02.626372Z", + "shell.execute_reply": "2023-08-22T06:44:02.626104Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -5695,7 +6099,14 @@ "cell_type": "code", "execution_count": 71, "id": "93bda908", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.627866Z", + "iopub.status.busy": "2023-08-22T06:44:02.627766Z", + "iopub.status.idle": "2023-08-22T06:44:02.638183Z", + "shell.execute_reply": "2023-08-22T06:44:02.637892Z" + } + }, "outputs": [ { "data": { @@ -5730,6 +6141,12 @@ "execution_count": 72, "id": "40943b7d", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:02.639670Z", + "iopub.status.busy": "2023-08-22T06:44:02.639577Z", + "iopub.status.idle": "2023-08-22T06:44:03.265220Z", + "shell.execute_reply": "2023-08-22T06:44:03.264917Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -5757,6 +6174,12 @@ "execution_count": 73, "id": "2117fd9f", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:03.267054Z", + "iopub.status.busy": "2023-08-22T06:44:03.266963Z", + "iopub.status.idle": "2023-08-22T06:44:03.269380Z", + "shell.execute_reply": "2023-08-22T06:44:03.269155Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -5793,7 +6216,14 @@ "cell_type": "code", "execution_count": 74, "id": "66d0b710", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:03.270876Z", + "iopub.status.busy": "2023-08-22T06:44:03.270774Z", + "iopub.status.idle": "2023-08-22T06:44:04.097412Z", + "shell.execute_reply": "2023-08-22T06:44:04.097126Z" + } + }, "outputs": [ { "data": { @@ -5811,7 +6241,7 @@ "Total params: 160,353\n", "Trainable params: 160,353\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.GIGABYTES): 4.01\n", + "Total mult-adds (G): 4.01\n", "===================================================================================================================\n", "Input size (MB): 1000.30\n", "Forward/backward pass size (MB): 6.60\n", @@ -5855,7 +6285,14 @@ "cell_type": "code", "execution_count": 75, "id": "9df8b4cf", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:04.101984Z", + "iopub.status.busy": "2023-08-22T06:44:04.101529Z", + "iopub.status.idle": "2023-08-22T06:44:04.111524Z", + "shell.execute_reply": "2023-08-22T06:44:04.110929Z" + } + }, "outputs": [], "source": [ "imdb_optimizer = RMSprop(imdb_model.parameters(), lr=0.001)\n", @@ -5878,7 +6315,14 @@ "cell_type": "code", "execution_count": 76, "id": "73684c66", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:04.113582Z", + "iopub.status.busy": "2023-08-22T06:44:04.113437Z", + "iopub.status.idle": "2023-08-22T06:44:22.590794Z", + "shell.execute_reply": "2023-08-22T06:44:22.590448Z" + } + }, "outputs": [ { "name": "stderr", @@ -5903,7 +6347,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "795333e5d7b84fc6812fcf3dd6391bfa", "version_major": 2, "version_minor": 0 }, @@ -5918,14 +6362,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jonathantaylor/anaconda3/envs/islp_freeze_311/lib/python3.11/site-packages/pytorch_lightning/loops/fit_loop.py:280: PossibleUserWarning: The number of training batches (45) is smaller than the logging interval Trainer(log_every_n_steps=50). Set a lower value for log_every_n_steps if you want to see logs for the training epoch.\n", + "/Users/jonathantaylor/anaconda3/envs/isolated_env_1eb44da1_Ch10/lib/python3.10/site-packages/pytorch_lightning/loops/fit_loop.py:280: PossibleUserWarning: The number of training batches (45) is smaller than the logging interval Trainer(log_every_n_steps=50). Set a lower value for log_every_n_steps if you want to see logs for the training epoch.\n", " rank_zero_warn(\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "253cf3e077d845569cdc459ef74902b6", + "model_id": "7c1ce82c29a644f68f5706783e08927a", "version_major": 2, "version_minor": 0 }, @@ -5939,7 +6383,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b1ac59bc49094a708bfa29f4fc194a71", "version_major": 2, "version_minor": 0 }, @@ -5953,7 +6397,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "21a870683e2a4e0ebb2b86c8c9afeb53", "version_major": 2, "version_minor": 0 }, @@ -5967,7 +6411,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8bae27914733459abdb5e8df79747137", "version_major": 2, "version_minor": 0 }, @@ -5981,7 +6425,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8804e3a20d1c49958518a664bd63f369", "version_major": 2, "version_minor": 0 }, @@ -5995,7 +6439,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "06686ccf9eea46a498c78fc6ed739fc2", "version_major": 2, "version_minor": 0 }, @@ -6009,7 +6453,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4054f655d9a048e380f86adadf5b1312", "version_major": 2, "version_minor": 0 }, @@ -6023,7 +6467,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f5f469b4c14a4a6687acd450b5c0ad69", "version_major": 2, "version_minor": 0 }, @@ -6037,7 +6481,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "feccfd4b4d3b4bc8835c5e0e332f18ff", "version_major": 2, "version_minor": 0 }, @@ -6051,7 +6495,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "db31f3721f9d4bb68940c4b68363ae91", "version_major": 2, "version_minor": 0 }, @@ -6065,7 +6509,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3f3cfeef6c994126bb25ef544e10d3e2", "version_major": 2, "version_minor": 0 }, @@ -6079,7 +6523,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "77450f9684cd42ac9ebc992dd86590b7", "version_major": 2, "version_minor": 0 }, @@ -6093,7 +6537,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0d41009181074ffcbc2b81fd23a5e486", "version_major": 2, "version_minor": 0 }, @@ -6107,7 +6551,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "86ad33abbff742d3a66014271d575da4", "version_major": 2, "version_minor": 0 }, @@ -6121,7 +6565,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "170aa9e0a58c449f97cc5d210cba04a9", "version_major": 2, "version_minor": 0 }, @@ -6135,7 +6579,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6357463ea1464043b3aaa481d08ec4dc", "version_major": 2, "version_minor": 0 }, @@ -6149,7 +6593,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "c67de6d754454a28a4eb9da14cfb9b45", "version_major": 2, "version_minor": 0 }, @@ -6163,7 +6607,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "226a8c4a25194a5597a56915a9a203e6", "version_major": 2, "version_minor": 0 }, @@ -6177,7 +6621,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ab01bdbc450a426b8766f783bb71eb17", "version_major": 2, "version_minor": 0 }, @@ -6191,7 +6635,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2e7f5f09bce94cdd808251b783ff7195", "version_major": 2, "version_minor": 0 }, @@ -6205,7 +6649,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "077790461d6a43db8c785be6c6f2f71b", "version_major": 2, "version_minor": 0 }, @@ -6219,7 +6663,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7782347a868a4cb09ad084e0593fc921", "version_major": 2, "version_minor": 0 }, @@ -6233,7 +6677,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "46a12e5ee12547f5864399e6f3cdd08b", "version_major": 2, "version_minor": 0 }, @@ -6247,7 +6691,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6cc156f0ca724500b25ebd9e8f9e11df", "version_major": 2, "version_minor": 0 }, @@ -6261,7 +6705,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "02c4f52ca3784311886f0616648ece3f", "version_major": 2, "version_minor": 0 }, @@ -6275,7 +6719,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9ef5b02f482344818b2aeb04cc8ff5bf", "version_major": 2, "version_minor": 0 }, @@ -6289,7 +6733,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2ed0de87ff334b7396d54733b8cb942c", "version_major": 2, "version_minor": 0 }, @@ -6303,7 +6747,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "710efb8aace342a48ef6148920857667", "version_major": 2, "version_minor": 0 }, @@ -6317,7 +6761,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "491665fa6ec546cc87dfe5f3ad1858f5", "version_major": 2, "version_minor": 0 }, @@ -6331,7 +6775,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7c2c49de7df44192b0085998f4ba1162", "version_major": 2, "version_minor": 0 }, @@ -6345,7 +6789,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ba942bfe8b80418290e2a2d43417cfbf", "version_major": 2, "version_minor": 0 }, @@ -6387,13 +6831,19 @@ "execution_count": 77, "id": "01c6e5ff", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:22.593099Z", + "iopub.status.busy": "2023-08-22T06:44:22.592980Z", + "iopub.status.idle": "2023-08-22T06:44:24.381045Z", + "shell.execute_reply": "2023-08-22T06:44:24.380564Z" + }, "lines_to_next_cell": 2 }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f2b40a42021f4a9183c3d7d2d545e83b", + "model_id": "e7e77fe03abe4f2bbc3e182d32ec5074", "version_major": 2, "version_minor": 0 }, @@ -6405,29 +6855,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│       test_accuracy           0.8492799997329712     │\n",
-       "│         test_loss             1.2849037647247314     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.8492799997329712 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 1.2849037647247314 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_accuracy 0.8492799997329712\n", + " test_loss 1.2849037647247314\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -6461,7 +6898,14 @@ "cell_type": "code", "execution_count": 78, "id": "4d5b9d1d", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:24.382775Z", + "iopub.status.busy": "2023-08-22T06:44:24.382660Z", + "iopub.status.idle": "2023-08-22T06:44:24.491042Z", + "shell.execute_reply": "2023-08-22T06:44:24.490723Z" + } + }, "outputs": [], "source": [ "((X_train, Y_train),\n", @@ -6486,6 +6930,12 @@ "execution_count": 79, "id": "e2a88e57", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:24.492855Z", + "iopub.status.busy": "2023-08-22T06:44:24.492752Z", + "iopub.status.idle": "2023-08-22T06:44:24.497193Z", + "shell.execute_reply": "2023-08-22T06:44:24.496916Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -6511,6 +6961,12 @@ "execution_count": 80, "id": "9a3cf7a3", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:24.498888Z", + "iopub.status.busy": "2023-08-22T06:44:24.498790Z", + "iopub.status.idle": "2023-08-22T06:44:24.500775Z", + "shell.execute_reply": "2023-08-22T06:44:24.500516Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -6534,7 +6990,14 @@ "cell_type": "code", "execution_count": 81, "id": "b46f02c2", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:24.502208Z", + "iopub.status.busy": "2023-08-22T06:44:24.502114Z", + "iopub.status.idle": "2023-08-22T06:44:43.491232Z", + "shell.execute_reply": "2023-08-22T06:44:43.490911Z" + } + }, "outputs": [], "source": [ "coefs = []\n", @@ -6561,6 +7024,12 @@ "execution_count": 82, "id": "e5fb6afa", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.492990Z", + "iopub.status.busy": "2023-08-22T06:44:43.492881Z", + "iopub.status.idle": "2023-08-22T06:44:43.495136Z", + "shell.execute_reply": "2023-08-22T06:44:43.494898Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -6583,6 +7052,12 @@ "execution_count": 83, "id": "cad28f1a", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.496615Z", + "iopub.status.busy": "2023-08-22T06:44:43.496512Z", + "iopub.status.idle": "2023-08-22T06:44:43.817649Z", + "shell.execute_reply": "2023-08-22T06:44:43.804167Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -6626,6 +7101,12 @@ "execution_count": 84, "id": "a66ecdd8", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.829522Z", + "iopub.status.busy": "2023-08-22T06:44:43.829394Z", + "iopub.status.idle": "2023-08-22T06:44:43.970259Z", + "shell.execute_reply": "2023-08-22T06:44:43.969880Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -6673,6 +7154,12 @@ "execution_count": 85, "id": "62440c1c", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.972104Z", + "iopub.status.busy": "2023-08-22T06:44:43.971981Z", + "iopub.status.idle": "2023-08-22T06:44:43.973750Z", + "shell.execute_reply": "2023-08-22T06:44:43.973468Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -6718,7 +7205,14 @@ "cell_type": "code", "execution_count": 86, "id": "c73d6e28", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.975482Z", + "iopub.status.busy": "2023-08-22T06:44:43.975361Z", + "iopub.status.idle": "2023-08-22T06:44:43.977735Z", + "shell.execute_reply": "2023-08-22T06:44:43.977461Z" + } + }, "outputs": [], "source": [ "imdb_seq_dm = SimpleDataModule(imdb_seq_train,\n", @@ -6762,6 +7256,12 @@ "execution_count": 87, "id": "cc9bbd00", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.979333Z", + "iopub.status.busy": "2023-08-22T06:44:43.979219Z", + "iopub.status.idle": "2023-08-22T06:44:43.981720Z", + "shell.execute_reply": "2023-08-22T06:44:43.981436Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -6792,7 +7292,14 @@ "cell_type": "code", "execution_count": 88, "id": "5c9ffb46", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:43.983706Z", + "iopub.status.busy": "2023-08-22T06:44:43.983605Z", + "iopub.status.idle": "2023-08-22T06:44:44.006133Z", + "shell.execute_reply": "2023-08-22T06:44:44.005857Z" + } + }, "outputs": [ { "data": { @@ -6808,7 +7315,7 @@ "Total params: 328,577\n", "Trainable params: 328,577\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.MEGABYTES): 45.44\n", + "Total mult-adds (M): 45.44\n", "===================================================================================================================\n", "Input size (MB): 50.00\n", "Forward/backward pass size (MB): 2.56\n", @@ -6844,7 +7351,14 @@ "cell_type": "code", "execution_count": 89, "id": "a2d6ddfd", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:44.007842Z", + "iopub.status.busy": "2023-08-22T06:44:44.007718Z", + "iopub.status.idle": "2023-08-22T06:44:44.010586Z", + "shell.execute_reply": "2023-08-22T06:44:44.010323Z" + } + }, "outputs": [], "source": [ "lstm_module = SimpleModule.binary_classification(lstm_model)\n", @@ -6856,6 +7370,12 @@ "execution_count": 90, "id": "1d76f970", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:44:44.012129Z", + "iopub.status.busy": "2023-08-22T06:44:44.012007Z", + "iopub.status.idle": "2023-08-22T06:57:52.592058Z", + "shell.execute_reply": "2023-08-22T06:57:52.591679Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -6882,7 +7402,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "378b19c7eac744308f7e66510ed91e53", "version_major": 2, "version_minor": 0 }, @@ -6896,7 +7416,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e24a4171456b412db47d6577cb336c37", + "model_id": "ef5ef897fb0f445d8bdbb9603ab9fe1f", "version_major": 2, "version_minor": 0 }, @@ -6910,7 +7430,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a366613bbed148f99faf7c3048fd5342", "version_major": 2, "version_minor": 0 }, @@ -6924,7 +7444,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "33c8cd8f47a44e5a86e58f83612915ab", "version_major": 2, "version_minor": 0 }, @@ -6938,7 +7458,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "44ba1553a3f54642b05ce7524df82025", "version_major": 2, "version_minor": 0 }, @@ -6952,7 +7472,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fe4ad23d277b45bd9ac5e6b01e8a755a", "version_major": 2, "version_minor": 0 }, @@ -6966,7 +7486,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5d76d21f617146b19033d03068811bae", "version_major": 2, "version_minor": 0 }, @@ -6980,7 +7500,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1a61a4d5b3f64c85b9d36656ab359beb", "version_major": 2, "version_minor": 0 }, @@ -6994,7 +7514,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e25cb2f8f14c4b6099c1a1b37e89ed54", "version_major": 2, "version_minor": 0 }, @@ -7008,7 +7528,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a74e862dfa64467ca538e1decb34ebd6", "version_major": 2, "version_minor": 0 }, @@ -7022,7 +7542,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6d3dd1f4233a4e779585e1be6aee8943", "version_major": 2, "version_minor": 0 }, @@ -7036,7 +7556,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6c69d1606f5e43d399996acdd4b275fe", "version_major": 2, "version_minor": 0 }, @@ -7050,7 +7570,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "652b9712efa04ab2a0444464fb7aef43", "version_major": 2, "version_minor": 0 }, @@ -7064,7 +7584,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8a69f0865eec43b5bab4d01c62ccc2dc", "version_major": 2, "version_minor": 0 }, @@ -7078,7 +7598,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "56fd72140fdf48fe87011e828715d038", "version_major": 2, "version_minor": 0 }, @@ -7092,7 +7612,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "aaad6e2fd6ff44aa9e7842830f2c31c5", "version_major": 2, "version_minor": 0 }, @@ -7106,7 +7626,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3eee2abff98b4e1080d1ade699034ec0", "version_major": 2, "version_minor": 0 }, @@ -7120,7 +7640,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1d18c86360cd4e32b69f20bb667f41ad", "version_major": 2, "version_minor": 0 }, @@ -7134,7 +7654,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e100cb13de18446f85a7d9864b04fbbf", "version_major": 2, "version_minor": 0 }, @@ -7148,7 +7668,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b22c18caa3c945ec9b5ea2427c8b76ad", "version_major": 2, "version_minor": 0 }, @@ -7162,7 +7682,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "a3282157e73a4b6ba710cd530f2911e6", "version_major": 2, "version_minor": 0 }, @@ -7176,7 +7696,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "56a98588414e4d21a98f337a9121e943", "version_major": 2, "version_minor": 0 }, @@ -7217,12 +7737,19 @@ "cell_type": "code", "execution_count": 91, "id": "d8a60d35", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:52.595337Z", + "iopub.status.busy": "2023-08-22T06:57:52.595214Z", + "iopub.status.idle": "2023-08-22T06:57:55.788029Z", + "shell.execute_reply": "2023-08-22T06:57:55.787703Z" + } + }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4e512ef8a7d348eea7f423a9ed96c86e", + "model_id": "295ea7acd6904c2bac76f95a99e0e77e", "version_major": 2, "version_minor": 0 }, @@ -7234,34 +7761,21 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│       test_accuracy           0.8480799794197083     │\n",
-       "│         test_loss             0.7677657604217529     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_accuracy \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.8480799794197083 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.7677657604217529 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_accuracy 0.8549200296401978\n", + " test_loss 0.7031683325767517\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { "text/plain": [ - "[{'test_loss': 0.7677657604217529, 'test_accuracy': 0.8480799794197083}]" + "[{'test_loss': 0.7031683325767517, 'test_accuracy': 0.8549200296401978}]" ] }, "execution_count": 91, @@ -7286,6 +7800,12 @@ "execution_count": 92, "id": "65d7276c", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.789720Z", + "iopub.status.busy": "2023-08-22T06:57:55.789606Z", + "iopub.status.idle": "2023-08-22T06:57:55.884354Z", + "shell.execute_reply": "2023-08-22T06:57:55.882420Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -7301,7 +7821,7 @@ }, { "data": { - "image/png": "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T6SFswghNmto3LP2V4QTE6VO/uCuWbNGDzzwgHbv3u1t69Spk/e/LcuSx+NRu3Znfut79uzpVx2hoaGKiYnx6z5Aa2L3D4iUlBTFx8efce5GSkpKk2u280gIf3os/HnMQJ1IC+cxHHMGlmWpoqKiUZeysjLdddddpx33zMzMVFlZWaP219g5wzExMd5LVFSUXC6X9/qnn36qzp0767XXXtOwYcMUFhamt99+W59//rkmTJig6OhoderUSSNGjNAbb7zhs99Th2NcLpf+93//V5MmTVJERIT69++vl19+2Xv7qcMxK1euVJcuXfT6669r4MCB6tSpk8aOHesTmk6cOKG77rpLXbp0Uffu3TV37lxlZGRo4sSJjXyHAHs4MQzh9NwNuznVY1EbxhrqtXW5XEpISGhWGENgIoScwdGjR9WpU6dGXaKiolRYWNjgvizL0oEDBxQVFdWo/dm5aut9992n//mf/9GuXbs0ePBglZeXa9y4ccrNzdWHH36osWPHavz48d6TBzZk8eLFuu666/TRRx9p3LhxuuGGG3T48OEGtz969Kgef/xxvfDCC9q0aZP27dune+65x3v7r371K/35z3/WihUr9M4776isrEzr16+362kjSNk958rJiZOBdAipUz0WgRbG0IJsOQNNADndyXeOHTtmffLJJ9axY8e8beXl5Y062ZATl/Lycr+f34oVK6yoqCjv9dqTJa1fv/6M973gggusp556ynu9T58+1pNPPum9LslasGBBndfmtdde83msf//7395aJFl79uzx3mfZsmVWdHS093p0dLT12GOPea+fOHHCOuuss6wJEyY09ik3Sn3vLQKTEydtc/JEaLVOnDhh5eXlWatWrbLy8vKafSIxJzh9ErT63ruEhIQ2c8K9YGD3CeyYE3IGERERKi8vb9S2mzZt0rhx48643auvvqof/vCHjXpsuwwfPtznenl5uR588EG98sorKioq0okTJ3Ts2LEz9oQMHjzY+98dO3ZUZGSkDh482OD2EREROvvss73XY2NjvduXlpaqpKREI0eO9N7udrs1bNgwVVdX+/X80DY4NeeqJSZOBsIqlk6vQOrkKqEITISQM3C5XI0+QuTqq69u1CS0q6++usU/dKc+h3vuuUcbN27U448/rnPOOUfh4eFKT09XVVXVaffTvn17n+sul+u0gaG+7et7bYAzcerIDYmJkyerHT6qb4KuHec1CYQwhpbDnBAbBdK45zvvvKObb75ZkyZN0qBBgxQTE6Mvv/yyRWuIiopSdHS0PvjgA2+bx+PRtm3bWrQOBAYn15pg4qSvtLQ0ffnll8rLy9OqVauUl5envXv3tqr5KwgOhBCbBcoktP79+ysnJ0fbt2/Xjh07NHXqVCNDILNmzdKSJUv017/+Vbt371ZmZqb+/e9/c/Zi1OHkkEkg/YBoKaxAipZACHFAIPyKeOKJJ9S1a1ddeumlGj9+vFJTU3XxxRe3eB1z587VlClTNG3aNCUnJ6tTp05KTU3l/C6ooyUW/gqEHxBAMOEEdifhJGfmVVdXa+DAgbruuuv08MMP27Zf3tvA1xInbat9HCZOAvWz+wR2TEyFUV999ZX+/ve/6/LLL1dlZaWefvpp7d27V1OnTjVdGloZp4/cOPlxmDgJtAyGY2BUSEiIVq5cqREjRuiyyy7Tzp079cYbb2jgwIGmS0MrxJAJEFzoCYFRCQkJeuedd0yXAYc4MbTBWhNA8CCEAHCEk2eTZsgECA4MxwCwnRMngwMQfAghAGzl5MngAAQXQggAWzm5simA4EIIAWCrljgZHIDgQAgBYCtOBgegsQghTvF4pPx8afXqmn9b+fj3qFGjNHv2bO/1xMREZWVlnfY+LpdL69evb/Zj27UfNJ3H41F+fr5Wr16t/Pz8Zs3X4GRwABqLEOKEnBwpMVEaPVqaOrXm38TEmnYHjB8/XmPHjq33toKCArlcLn300Ud+7fODDz7Q7bffbkd5Xg8++KCGDh1ap72oqEjXXHONrY+FxsvJyVFiYqJGjx6tqVOnavTo0UpMTGzyESycDA5AYxFC7JaTI6WnS6dOzCssrGl3IIjccsst2rhxY72TAVesWKHhw4dr8ODBfu2zZ8+eioiIsKvE04qJiVFYWFiLPBZ8OXUoLSubAmgMQsiZWJZUUdG4S1mZdNddNfepbz+SlJlZs11j9tfIcwv++Mc/Vs+ePbVy5Uqf9vLycq1du1YTJ07UlClTFBcXp4iICA0aNEirV68+7T5PHY757LPP9MMf/lAdOnTQ+eefr40bN9a5z9y5c3XuuecqIiJC/fr108KFC3X8+HFJ0sqVK7V48WLt2LFDLpdLLpfLW++pwzE7d+7UFVdcofDwcHXv3l233367ysvLvbfffPPNmjhxoh5//HHFxsaqe/fumjFjhvexgpmdwyZOH0obCGeTBmAWK6aeydGjUqdO9uzLsmp6SKKiGrd9ebnUseMZN2vXrp2mTZumlStXav78+d4u77Vr18rj8ejGG2/U2rVrNXfuXEVGRuqVV17RTTfdpLPPPlsjR4484/6rq6uVlpam6Ohovf/++yotLfWZP1Krc+fOWrlypXr37q2dO3fqtttuU+fOnXXvvfdq8uTJ+vjjj7Vhwwa98cYbkqSoel6HiooKpaamKjk5WR988IEOHjyoW2+9VTNnzvQJWXl5eYqNjVVeXp727NmjyZMna+jQobrtttvO+HwCld0rkPpzKG1TVydlZVMAp2W1MaWlpZYkq7S0tM5tx44dsz755BPr2LFj/2ksL7esmvjQ8pfy8kY/r127dlmSrLy8PG9bSkqKdeONN9a7/Y9+9CPrv//7v73XL7/8ciszM9N7vU+fPtaTTz5pWZZlvf7661a7du2swsJC7+2vvfaaJclat25dgzU99thj1rBhw7zXFy1aZA0ZMqTOdifv57nnnrO6du1qlZ/03F955RUrJCTEKi4utizLsjIyMqw+ffpYJ06c8G7z05/+1Jo8eXKDtdT73gaQl156yXK5XJYkn4vL5bJcLpf10ksv+b3PVatW1dlffZdVq1Y58IwABKLTfYc2BcMxZxIRUdMj0ZjLq682bp+vvtq4/fkxJ+O8887TpZdequeff16StGfPHhUUFOiWW26Rx+PRww8/rEGDBqlbt27q1KmTXn/9de3bt69R+961a5cSEhLUu3dvb1tycnKd7dasWaPLLrtMMTEx6tSpkxYsWNDoxzj5sYYMGaKOJ/UAXXbZZaqurtbu3bu9bRdccIHPxMbY2FgdPHjQr8cKFE4Nm3AoLQDTCCFn4nLVDIk05nL11VJ8fM19GtpXQkLNdo3ZX0P7acAtt9yil156Sd9++61WrFihs88+W5dffrkee+wxLV26VHPnzlVeXp62b9+u1NRUVVVV2fAC1di8ebNuuOEGjRs3Tn/729/04Ycfav78+bY+xsnat2/vc93lcqm6utqRxzLNqRVIOZQWgGmEEDu53dL3hybWCRC117OyarZzwHXXXaeQkBCtWrVKf/zjH/Vf//VfcrlceueddzRhwgTdeOONGjJkiPr166d//vOfjd7vwIEDtX//fp8VLt977z2fbd5991316dNH8+fP1/Dhw9W/f3999dVXPtuEhoae8df6wIEDtWPHDlVUVHjb3nnnHYWEhGjAgAGNrjmYOLUCKYfSAjCNEGK3tDQpO1s65dBExcfXtDt4ZECnTp00efJkzZs3T0VFRbr55pslSf3799fGjRv17rvvateuXfrZz36mkpKSRu93zJgxOvfcc5WRkaEdO3aooKBA8+fP99mmf//+2rdvn1588UV9/vnn+s1vfqN169b5bJOYmKi9e/dq+/btOnTokCorK+s81g033KAOHTooIyNDH3/8sfLy8jRr1izddNNNio6O9v9FCQJODptwKC0AkwghTkhLk778UsrLk1atqvl3715HA0itW265Rf/+97+VmprqncOxYMECXXzxxUpNTdWoUaMUExOjiRMnNnqfISEhWrdunY4dO6aRI0fq1ltv1S9/+UufbX7yk5/o7rvv1syZMzV06FC9++67Wrhwoc821157rcaOHavRo0erZ8+e9R4mHBERoddff12HDx/WiBEjlJ6eriuvvFJPP/20/y9GkHB62IRDaQGY4rLqm+0WxMrKyhQVFaXS0lJFRkb63Pbdd99p79696tu3rzp06GCoQjgh0N/b2kXFJPlMUK0NJvRaAGgJp/sObQp6QoAAwLAJgGDEYmVAgEhLS9OECRNUUFCgoqIixcbGKiUlhYmjAAIWIQQIIKxACiCYMBwDAACMIITUo43N1W0TeE8BoPVhOOYktatwHj16VOHh4YargZ2OHj0qqe5Kq07xeDzM3QCAMyCEnMTtdqtLly7ec5BEREQ0uDYDAoNlWTp69KgOHjyoLl26tEgQsPtstwAQrAghp4iJiZGkoD0ZWlvVpUsX73vrpNr1PE4d/iksLFR6ejqH0wLASVisrAEej0fHjx9vwcrglPbt27dID4jH41FiYmKDJ5tzuVyKj4/X3r17GZoBEJDsXqyMnpAGuN1uvijgF3/OdsthtgDA0TGAbZw62y0ABCtCCGATJ892CwDBiBAC2MTps90CQLAhhAA2cbvdWrp0qSTVCSK117OysphrBADfI4SgzfJ4PMrPz9fq1auVn58vj8fT7H1ytlsAaDwO0UWb5PSCYqyYCiAY2f0dSghBm9PQgmK1Qyb0WABA/ez+DmU4Bm2Kx+NRZmZmvSe0q22bPXu2LUMzAIDTI4SgTfFnQTEAgLMIIWhT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JJzBgw8+KJfL5XM577zzTJeFemzatEnjx49X79695XK5tH79ep/bLcvSAw88oNjYWIWHh2vMmDH67LPPzBQLH2d6726++eY6n8OxY8eaKRY+lixZohEjRqhz587q1auXJk6cqN27d/ts891332nGjBnq3r27OnXqpGuvvbbO4qNnQghppjVr1mjOnDlatGiRtm3bpiFDhig1NVUHDx40XRrO4IILLlBRUZH38vbbb5suCfWoqKjQkCFDtGzZsnpvf/TRR/Wb3/xGzz77rN5//3117NhRqamp+u6771q4UpzqTO+dJI0dO9bnc7h69eoWrBANeeuttzRjxgy999572rhxo44fP66rr75aFRUV3m3uvvtu/d///Z/Wrl2rt956S19//bXS0tL8eyALzTJy5EhrxowZ3usej8fq3bu3tWTJEoNV4UwWLVpkDRkyxHQZ8JMka926dd7r1dXVVkxMjPXYY495244cOWKFhYVZq1evNlAhGnLqe2dZlpWRkWFNmDDBSD3wz8GDBy1J1ltvvWVZVs3nrH379tbatWu92+zatcuSZG3evLnR+6UnpBmqqqq0detWjRkzxtsWEhKiMWPGaPPmzQYrQ2N89tln6t27t/r166cbbrhB+/btM10S/LR3714VFxf7fAajoqKUlJTEZzBA5Ofnq1evXhowYIDuvPNO/etf/zJdEupRWloqSd4T123dulXHjx/3+eydd955Ouuss/z67BFCmuHQoUPyeDze1V1rRUdHq7i42FBVaIykpCStXLlSGzZs0DPPPKO9e/cqJSVF3377renS4IfazxmfwcA0duxY/fGPf1Rubq5+9atf6a233tI111wjj8djujScpLq6WrNnz9Zll12mCy+8UFLNZy80NLTOCWH9/ewZX7YdMOGaa67x/vfgwYOVlJSkPn366C9/+YtuueUWg5UBbcf111/v/e9BgwZp8ODBOvvss5Wfn68rr7zSYGU42YwZM/Txxx87Mm+OnpBm6NGjh9xud53ZwCUlJYqJiTFUFZqiS5cuOvfcc7Vnzx7TpcAPtZ8zPoPBoV+/furRowefw1Zk5syZ+tvf/qa8vDzFx8d722NiYlRVVaUjR474bO/vZ48Q0gyhoaEaNmyYcnNzvW3V1dXKzc1VcnKywcrgr/Lycn3++eeKjY01XQr80LdvX8XExPh8BsvKyvT+++/zGQxABw4c0L/+9S8+h62AZVmaOXOm1q1bpzfffFN9+/b1uX3YsGFq3769z2dv9+7d2rdvn1+fPYZjmmnOnDnKyMjQ8OHDNXLkSGVlZamiokLTp083XRpO45577tH48ePVp08fff3111q0aJHcbremTJliujScory83OeX8d69e7V9+3Z169ZNZ511lmbPnq1f/OIX6t+/v/r27auFCxeqd+/emjhxormiIen07123bt20ePFiXXvttYqJidHnn3+ue++9V+ecc45SU1MNVg2pZghm1apV+utf/6rOnTt753lERUUpPDxcUVFRuuWWWzRnzhx169ZNkZGRmjVrlpKTk3XJJZc0/oHsPoynLXrqqaess846ywoNDbVGjhxpvffee6ZLwhlMnjzZio2NtUJDQ624uDhr8uTJ1p49e0yXhXrk5eVZkupcMjIyLMuqOUx34cKFVnR0tBUWFmZdeeWV1u7du80WDcuyTv/eHT161Lr66qutnj17Wu3bt7f69Olj3XbbbVZxcbHpsmFZ9b5vkqwVK1Z4tzl27Jj185//3OratasVERFhTZo0ySoqKvLrcVzfPxgAAECLYk4IAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCICg4HK5tH79etNlAPADIQRAs918881yuVx1LmPHjjVdGoBWjBPYAbDF2LFjtWLFCp+2sLAwQ9UACAT0hACwRVhYmGJiYnwuXbt2lVQzVPLMM8/ommuuUXh4uPr166fs7Gyf++/cuVNXXHGFwsPD1b17d91+++0qLy/32eb555/XBRdcoLCwMMXGxmrmzJk+tx86dEiTJk1SRESE+vfvr5dfftnZJw2gWQghAFrEwoULde2112rHjh264YYbdP3112vXrl2SpIqKCqWmpqpr16764IMPtHbtWr3xxhs+IeOZZ57RjBkzdPvtt2vnzp16+eWXdc455/g8xuLFi3Xdddfpo48+0rhx43TDDTfo8OHDLfo8AfjB1nP/AmiTMjIyLLfbbXXs2NHn8stf/tKyrJrTgt9xxx0+90lKSrLuvPNOy7Is67nnnrO6du1qlZeXe29/5ZVXrJCQEO+p3Xv37m3Nnz+/wRokWQsWLPBeLy8vtyRZr732mm3PE4C9mBMCwBajR4/WM88849PWrVs3738nJyf73JacnKzt27dLknbt2qUhQ4aoY8eO3tsvu+wyVVdXa/fu3XK5XPr666915ZVXnraGwYMHe/+7Y8eOioyM1MGDB5v6lAA4jBACwBYdO3asMzxil/Dw8EZt1759e5/rLpdL1dXVTpQEwAbMCQHQIt5777061wcOHChJGjhwoHbs2KGKigrv7e+8845CQkI0YMAAde7cWYmJicrNzW3RmgE4i54QALaorKxUcXGxT1u7du3Uo0cPSdLatWs1fPhw/eAHP9Cf//xnbdmyRcuXL5ck3XDDDVq0aJEyMjL04IMP6ptvvtGsWbN00003KTo6WpL04IMP6o477lCvXr10zTXX6Ntvv9U777yjWbNmtewTBWAbQggAW2zYsEGxsbE+bQMGDNCnn34qqebIlRdffFE///nPFRsbq9WrV+v888+XJEVEROj1119XZmamRowYoYiICF177bV64oknvPvKyMjQd999pyeffFL33HOPevToofT09JZ7ggBs57IsyzJdBIDg5nK5tG7dOk2cONF0KQBaEeaEAAAAIwghAADACOaEAHAco74A6kNPCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMCI/w+qg7/ja0Jp/AAAAABJRU5ErkJggg==", + "image/png": "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UVE+yw4fPuxdt6amxjp69KjtNbR1hBA0hd0HELm5uU3aqefm5jar1rr/V+z6vybY6sV/BSrwnsjuEEJ3zClYlqXKysom3crLy3X77beftD81LS1N5eXlTdpeQ9tpSGxsrPcWHR0th8Phvf/JJ5+oW7dueuWVVzRixAhFRETozTff1Oeff67JkycrJiZGXbt21ahRo/Taa6/5bPfE7hiHw6E//elPuuKKKxQZGamBAwfqpZde8j5+YnfMihUr1L17d7366qsaPHiwunbtqgkTJvj0+x47dky33367unfvrl69emnevHmaMWOGpkyZ0sRPCLBHILpNAjkWIhDjCgJ5vZRAj4MIdcE6+JcQcgrfffedunbt2qRbdHS0ioqKGt2WZVnat2+foqOjm7Q9O2dtvfvuu/W///u/2rlzp4YOHaqKigpNnDhROTk5ev/99zVhwgRNmjTJ51o9DVm8eLGuuuoqffDBB5o4caKuvfZaHTx4sNH1v/vuOz366KN6/vnntWnTJu3du1d33nmn9/Hf/va3+tvf/qbly5frrbfeUnl5udatW2fX2waaJFADMgM9FsLucQWBPnMjUOMgEMSDf21pTwki/nbHVFRUNKl5MhC3iooKv9/f8uXLrejoaO/9uubVdevWnfK55557rvXkk0967/fr1896/PHHvfclWQsWLKj3u3nllVd8Xuvbb7/11iLJ2r17t/c5S5cutWJiYrz3Y2JirEceecR7/9ixY9bpp59uTZ48ualvuUnojmlf7By3YVmB64YI1rEQDXVLxcfH02XShgWyK+14dnfHMGPqKURGRqqioqJJ627atEkTJ0485Xovv/yyfvSjHzXpte0ycuRIn/sVFRW6//77tX79ehUXF+vYsWM6cuTIKVtChg4d6v13ly5dFBUVpf379ze6fmRkpM444wzvfZfL5V2/rKxMpaWlGj16tPdxp9OpESNGqKamxq/3h9ARiKm/A3UUWdeykJqaKofD0eC1TdrinBDBNAMpatV1pZ1qErTmdKUFEiHkFBwOh7p06dKkdS+77LIm/RFcdtllrf5lPvE93Hnnndq4caMeffRRnXnmmercubNSU1NVXV190u107NjR577D4ThpYGho/YZ+N0BTBGrq70B2m7TGtU0Cwc7rpSDwgjXwMibERsE0E95bb72lG264QVdccYWGDBmi2NhYffnl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kC699FK99NJLdtZnO07RBQCgedrMKbqSNGjQID388MPat2+fVq1a1eJiAABA6GjxZGXBhpYQAACap021hAAAADQXIQQAABhBCAEAAEYQQgAAgBGEEAAAYAQhBAAAGEEIAQAARhBCAACAEW0ihCxdulQJCQnq1KmTEhMTtWXLlkbXHTt2rBwOR73bT37yk1asGAAAtJTxELJ69Wqlp6dr0aJF2rZtm4YNG6bk5GTt37+/wfWzs7NVXFzsvX300UdyOp36+c9/3sqVAwCAljAeQh577DHdfPPNmjlzps455xw988wzioyM1HPPPdfg+j179lRsbKz3tnHjRkVGRhJCAAAIMkZDSHV1tbZu3arx48d7l4WFhWn8+PHavHlzk7axbNkyXX311erSpUuDj1dVVam8vNznBgAAzDMaQg4cOCCPx6OYmBif5TExMSopKTnl87ds2aKPPvpIN910U6PrLFmyRNHR0d5bfHx8i+sGAAAtZ7w7piWWLVumIUOGaPTo0Y2uM3/+fJWVlXlvhYWFrVghAABoTAeTL967d285nU6Vlpb6LC8tLVVsbOxJn1tZWakXXnhBDzzwwEnXi4iIUERERItrBQAA9jLaEhIeHq4RI0YoJyfHu6ympkY5OTkaM2bMSZ+7Zs0aVVVV6brrrgt0mQAAIACMtoRIUnp6umbMmKGRI0dq9OjRysjIUGVlpWbOnClJmj59uuLi4rRkyRKf5y1btkxTpkxRr169TJQNAABayHgImTp1qr7++mvdd999Kikp0fDhw7VhwwbvYNW9e/cqLMy3wWbXrl1688039a9//ctEyQAAwAYOy7Is00W0pvLyckVHR6usrExRUVGmywEAIGjYvQ8N6rNjAABA8CKEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMCIDqYLCHYej0f5+fkqLi6Wy+VSUlKSnE6n6bIAAGjzCCEtkJ2drbS0NO3bt8+7zO12KzMzUykpKQYrAwCg7aM7ppmys7OVmprqE0AkqaioSKmpqcrOzjZUGQAAwYEQ0gwej0dpaWmyLKveY3XL5s6dK4/H09qlAQAQNAghzZCfn1+vBeR4lmWpsLBQ+fn5rVgVAADBhRDSDMXFxbauBwBAKCKENIPL5bJ1PQAAQhEhpBmSkpLkdrvlcDgafNzhcCg+Pl5JSUmtXBkAAMGDENIMTqdTmZmZklQviNTdz8jIYL4QAABOghDSTCkpKcrKylJcXJzPcrfbraysLOYJAQDgFBxWQ+eZtmPl5eWKjo5WWVmZoqKiWrw9ZkwFAIQKu/ehzJjaQk6nU2PHjjVdBgAAQYfuGAAAYAQhBAAAGEEIAQAARhBCAACAEYQQAABgBCEEAAAYQQgBAABGEEIAAIARhBAAAGAEIQQAABhBCAEAAEYQQgAAgBGEEAAAYAQhBAAAGEEIAQAARhBCAACAEYQQAABgBCEEAAAYQQgBAABGEEIAAIARhBAAAGAEIQQAABhBCAEAAEYQQgAAgBGEEAAAYAQhBAAAGEEIAQAARhBCAACAEYQQAABgBCEEAAAYQQgBAABGEEIAAIARhBAAAGAEIQQAABhBCAEAAEYQQgAAgBGEEAAAYAQhBAAAGEEIAQAARhgPIUuXLlVCQoI6deqkxMREbdmy5aTrHzp0SLNmzZLL5VJERITOOussvfzyy61ULQAAsEsHky++evVqpaen65lnnlFiYqIyMjKUnJysXbt2qU+fPvXWr66u1qWXXqo+ffooKytLcXFx2rNnj7p37976xQMAgBZxWJZlmXrxxMREjRo1Sk899ZQkqaamRvHx8ZozZ47uvvvueus/88wzeuSRR/TJJ5+oY8eOTXqNqqoqVVVVee+Xl5crPj5eZWVlioqKsueNAAAQAsrLyxUdHW3bPtRYd0x1dbW2bt2q8ePH/7eYsDCNHz9emzdvbvA5L730ksaMGaNZs2YpJiZGP/jBD/TQQw/J4/E0+jpLlixRdHS09xYfH2/7ewEAAP4zFkIOHDggj8ejmJgYn+UxMTEqKSlp8DlffPGFsrKy5PF49PLLL2vhwoX63e9+p1//+teNvs78+fNVVlbmvRUWFtr6PgAAQPMYHRPir5qaGvXp00fPPvusnE6nRowYoaKiIj3yyCNatGhRg8+JiIhQREREK1cKAABOxVgI6d27t5xOp0pLS32Wl5aWKjY2tsHnuFwudezYUU6n07ts8ODBKikpUXV1tcLDwwNaMwAAsI+x7pjw8HCNGDFCOTk53mU1NTXKycnRmDFjGnzORRddpN27d6umpsa77NNPP5XL5SKAAAAQZIzOE5Kenq4//vGP+vOf/6ydO3fqtttuU2VlpWbOnClJmj59uubPn+9d/7bbbtPBgweVlpamTz/9VOvXr9dDDz2kWbNmmXoLAACgmYyOCZk6daq+/vpr3XfffSopKdHw4cO1YcMG72DVvXv3KizsvzkpPj5er776qu644w4NHTpUcXFxSktL07x580y9BQAA0ExG5wkxwe5znAEACBXtZp4QAAAQ2gghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACMIIQAAAAjCCEAAMAIQggAADCCEAIAAIwghAAAACPaRAhZunSpEhIS1KlTJyUmJmrLli2NrrtixQo5HA6fW6dOnVqxWgAAYAfjIWT16tVKT0/XokWLtG3bNg0bNkzJycnav39/o8+JiopScXGx97Znz55WrBgAANjBeAh57LHHdPPNN2vmzJk655xz9MwzzygyMlLPPfdco89xOByKjY313mJiYlqxYgAAYIcOJl+8urpaW7du1fz5873LwsLCNH78eG3evLnR51VUVKhfv36qqanR+eefr4ceekjnnntug+tWVVWpqqrKe7+srEySVF5ebtO7AAAgNNTtOy3LsmV7RkPIgQMH5PF46rVkxMTE6JNPPmnwOYMGDdJzzz2noUOHqqysTI8++qguvPBC/fvf/5bb7a63/pIlS7R48eJ6y+Pj4+15EwAAhJhvvvlG0dHRLd6O0RDSHGPGjNGYMWO89y+88EINHjxYf/jDH/Tggw/WW3/+/PlKT0/33q+pqdHBgwfVq1cvORwOW2oqLy9XfHy8CgsLFRUVZcs20Tr47IIXn13w4rMLXmVlZTr99NPVs2dPW7ZnNIT07t1bTqdTpaWlPstLS0sVGxvbpG107NhR5513nnbv3t3g4xEREYqIiPBZ1r1792bVeypRUVF8oYIUn13w4rMLXnx2wSsszJ4hpUYHpoaHh2vEiBHKycnxLqupqVFOTo5Pa8fJeDweffjhh3K5XIEqEwAABIDx7pj09HTNmDFDI0eO1OjRo5WRkaHKykrNnDlTkjR9+nTFxcVpyZIlkqQHHnhAF1xwgc4880wdOnRIjzzyiPbs2aObbrrJ5NsAAAB+Mh5Cpk6dqq+//lr33XefSkpKNHz4cG3YsME7WHXv3r0+zT7ffvutbr75ZpWUlKhHjx4aMWKE3n77bZ1zzjmm3oIiIiK0aNGiet0+aPv47IIXn13w4rMLXnZ/dg7LrvNsAAAA/GB8sjIAABCaCCEAAMAIQggAADCCEAIAAIwghNhg6dKlSkhIUKdOnZSYmKgtW7aYLgmncP/998vhcPjczj77bNNloQGbNm3SpEmT1LdvXzkcDq1bt87nccuydN9998nlcqlz584aP368PvvsMzPFwsepPrsbbrih3vdwwoQJZoqFjyVLlmjUqFHq1q2b+vTpoylTpmjXrl0+63z//feaNWuWevXqpa5du+rKK6+sN/noqRBCWmj16tVKT0/XokWLtG3bNg0bNkzJycnav3+/6dJwCueee66Ki4u9tzfffNN0SWhAZWWlhg0bpqVLlzb4+MMPP6wnnnhCzzzzjN5991116dJFycnJ+v7771u5UpzoVJ+dJE2YMMHne7hq1apWrBCNeeONNzRr1iy988472rhxo44eParLLrtMlZWV3nXuuOMO/d///Z/WrFmjN954Q1999ZVSUlL8eyELLTJ69Ghr1qxZ3vsej8fq27evtWTJEoNV4VQWLVpkDRs2zHQZ8JMka+3atd77NTU1VmxsrPXII494lx06dMiKiIiwVq1aZaBCNObEz86yLGvGjBnW5MmTjdQD/+zfv9+SZL3xxhuWZdV+zzp27GitWbPGu87OnTstSdbmzZubvF1aQlqgurpaW7du1fjx473LwsLCNH78eG3evNlgZWiKzz77TH379tWAAQN07bXXau/evaZLgp8KCgpUUlLi8x2Mjo5WYmIi38EgkZeXpz59+mjQoEG67bbb9M0335guCQ0oKyuTJO+F67Zu3aqjR4/6fPfOPvtsnX766X599wghLXDgwAF5PB7v7K51YmJiVFJSYqgqNEViYqJWrFihDRs26Omnn1ZBQYGSkpJ0+PBh06XBD3XfM76DwWnChAn6y1/+opycHP32t7/VG2+8ocsvv1wej8d0aThOTU2N5s6dq4suukg/+MEPJNV+98LDw+tdENbf757xadsBEy6//HLvv4cOHarExET169dPf//733XjjTcarAwIHVdffbX330OGDNHQoUN1xhlnKC8vT5dcconBynC8WbNm6aOPPgrIuDlaQlqgd+/ecjqd9UYDl5aWKjY21lBVaI7u3bvrrLPO0u7du02XAj/Ufc/4DrYPAwYMUO/evfketiGzZ8/WP//5T+Xm5srtdnuXx8bGqrq6WocOHfJZ39/vHiGkBcLDwzVixAjl5OR4l9XU1CgnJ0djxowxWBn8VVFRoc8//1wul8t0KfBD//79FRsb6/MdLC8v17vvvst3MAjt27dP33zzDd/DNsCyLM2ePVtr167V66+/rv79+/s8PmLECHXs2NHnu7dr1y7t3bvXr+8e3TEtlJ6erhkzZmjkyJEaPXq0MjIyVFlZqZkzZ5ouDSdx5513atKkSerXr5+++uorLVq0SE6nU9OmTTNdGk5QUVHhc2RcUFCg7du3q2fPnjr99NM1d+5c/frXv9bAgQPVv39/LVy4UH379tWUKVPMFQ1JJ//sevbsqcWLF+vKK69UbGysPv/8c911110688wzlZycbLBqSLVdMCtXrtQ//vEPdevWzTvOIzo6Wp07d1Z0dLRuvPFGpaenq2fPnoqKitKcOXM0ZswYXXDBBU1/IbtP4wlFTz75pHX66adb4eHh1ujRo6133nnHdEk4halTp1oul8sKDw+34uLirKlTp1q7d+82XRYakJuba0mqd5sxY4ZlWbWn6S5cuNCKiYmxIiIirEsuucTatWuX2aJhWdbJP7vvvvvOuuyyy6zTTjvN6tixo9WvXz/r5ptvtkpKSkyXDctq8HOTZC1fvty7zpEjR6xf/epXVo8ePazIyEjriiuusIqLi/16Hcd/XgwAAKBVMSYEAAAYQQgBAABGEEIAAIARhBAAAGAEIQQAABhBCAEAAEYQQgAAgBGEEAAAYAQhBEC74HA4tG7dOtNlAPADIQRAi91www1yOBz1bhMmTDBdGoA2jAvYAbDFhAkTtHz5cp9lERERhqoBEAxoCQFgi4iICMXGxvrcevToIam2q+Tpp5/W5Zdfrs6dO2vAgAHKysryef6HH36oiy++WJ07d1avXr10yy23qKKiwmed5557Tueee64iIiLkcrk0e/Zsn8cPHDigK664QpGRkRo4cKBeeumlwL5pAC1CCAHQKhYuXKgrr7xSO3bs0LXXXqurr75aO3fulCRVVlYqOTlZPXr00Hvvvac1a9botdde8wkZTz/9tGbNmqVbbrlFH374oV566SWdeeaZPq+xePFiXXXVVfrggw80ceJEXXvttTp48GCrvk8AfrD12r8AQtKMGTMsp9NpdenSxef2m9/8xrKs2suC33rrrT7PSUxMtG677TbLsizr2WeftXr06GFVVFR4H1+/fr0VFhbmvbR73759rXvvvbfRGiRZCxYs8N6vqKiwJFmvvPKKbe8TgL0YEwLAFuPGjdPTTz/ts6xnz57ef48ZM8bnsTFjxmj79u2SpJ07d2rYsGHq0qWL9/GLLrpINTU12rVrlxwOh7766itdcsklJ61h6NCh3n936dJFUVFR2r9/f3PfEoAAI4QAsEWXLl3qdY/YpXPnzk1ar2PHjj73HQ6HampqAlESABswJgRAq3jnnXfq3R88eLAkafDgwdqxY4cqKyu9j7/11lsKCwvToEGD1K1bNyUkJCgnJ6dVawYQWLSEALBFVVWVSkpKfJZ16NBBvXv3liStWbNGI0eO1A9/+EP97W9/05YtW7Rs2TJJ0rXXXqtFixZpxowZuv/++/X1119rzpw5uv766xUTEyNJuv/++3XrrbeqT58+uvzyy3X48GG99dZbmjNnTuu+UQC2IYQAsMWGDRvkcrl8lg0aNEiffPKJpNozV1544QX96le/ksvl0qpVq3TOOedIkiIjI/Xqq68qLS1No0aNUmRkpK688ko99thj3m3NmDFD33//vR5//HHdeeed6t27t1JTU1vvDQKwncOyLMt0EQDaN4fDobVr12rKlCmmSwHQhjAmBAAAGEEIAQAARjAmBEDA0esLoCG0hAAAACMIIQAAwAhCCAAAMIIQAgAAjCCEAAAAIwghAADACEIIAAAwghACAACM+P/gHTuhPpGbdgAAAABJRU5ErkJggg==", "text/plain": [ "
" ] @@ -7327,6 +7847,12 @@ "execution_count": 93, "id": "c6f2d6c4", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.889361Z", + "iopub.status.busy": "2023-08-22T06:57:55.889040Z", + "iopub.status.idle": "2023-08-22T06:57:55.894226Z", + "shell.execute_reply": "2023-08-22T06:57:55.893514Z" + }, "lines_to_next_cell": 2 }, "outputs": [], @@ -7354,7 +7880,14 @@ "cell_type": "code", "execution_count": 94, "id": "f3e17682", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.899236Z", + "iopub.status.busy": "2023-08-22T06:57:55.898584Z", + "iopub.status.idle": "2023-08-22T06:57:55.919645Z", + "shell.execute_reply": "2023-08-22T06:57:55.918698Z" + } + }, "outputs": [], "source": [ "NYSE = load_data('NYSE')\n", @@ -7379,7 +7912,14 @@ "cell_type": "code", "execution_count": 95, "id": "78707eda", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.924653Z", + "iopub.status.busy": "2023-08-22T06:57:55.924212Z", + "iopub.status.idle": "2023-08-22T06:57:55.941488Z", + "shell.execute_reply": "2023-08-22T06:57:55.940914Z" + } + }, "outputs": [], "source": [ "for lag in range(1, 6):\n", @@ -7405,6 +7945,12 @@ "execution_count": 96, "id": "4d894824", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.946619Z", + "iopub.status.busy": "2023-08-22T06:57:55.946232Z", + "iopub.status.idle": "2023-08-22T06:57:55.957091Z", + "shell.execute_reply": "2023-08-22T06:57:55.956345Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -7442,7 +7988,14 @@ "cell_type": "code", "execution_count": 97, "id": "4d7f5ce0", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:55.961811Z", + "iopub.status.busy": "2023-08-22T06:57:55.961399Z", + "iopub.status.idle": "2023-08-22T06:57:56.102250Z", + "shell.execute_reply": "2023-08-22T06:57:56.100744Z" + } + }, "outputs": [ { "data": { @@ -7476,6 +8029,12 @@ "execution_count": 98, "id": "a6b371bb", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.107157Z", + "iopub.status.busy": "2023-08-22T06:57:56.106829Z", + "iopub.status.idle": "2023-08-22T06:57:56.120860Z", + "shell.execute_reply": "2023-08-22T06:57:56.120304Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -7500,6 +8059,12 @@ "execution_count": 99, "id": "a2a8cc85", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.124686Z", + "iopub.status.busy": "2023-08-22T06:57:56.124536Z", + "iopub.status.idle": "2023-08-22T06:57:56.148874Z", + "shell.execute_reply": "2023-08-22T06:57:56.148350Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -7552,6 +8117,12 @@ "execution_count": 100, "id": "8ee6e6a3", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.154237Z", + "iopub.status.busy": "2023-08-22T06:57:56.153271Z", + "iopub.status.idle": "2023-08-22T06:57:56.164612Z", + "shell.execute_reply": "2023-08-22T06:57:56.162355Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -7592,6 +8163,12 @@ "execution_count": 101, "id": "d35ceb54", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.168885Z", + "iopub.status.busy": "2023-08-22T06:57:56.168313Z", + "iopub.status.idle": "2023-08-22T06:57:56.177028Z", + "shell.execute_reply": "2023-08-22T06:57:56.174770Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -7629,7 +8206,14 @@ "cell_type": "code", "execution_count": 102, "id": "9e3dc6d5", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.180875Z", + "iopub.status.busy": "2023-08-22T06:57:56.180571Z", + "iopub.status.idle": "2023-08-22T06:57:56.188877Z", + "shell.execute_reply": "2023-08-22T06:57:56.188074Z" + } + }, "outputs": [], "source": [ "class NYSEModel(nn.Module):\n", @@ -7666,7 +8250,14 @@ "cell_type": "code", "execution_count": 103, "id": "df5e5ab6", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.192921Z", + "iopub.status.busy": "2023-08-22T06:57:56.192198Z", + "iopub.status.idle": "2023-08-22T06:57:56.205860Z", + "shell.execute_reply": "2023-08-22T06:57:56.203593Z" + } + }, "outputs": [], "source": [ "datasets = []\n", @@ -7690,6 +8281,12 @@ "execution_count": 104, "id": "d7f49bec", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.209732Z", + "iopub.status.busy": "2023-08-22T06:57:56.209439Z", + "iopub.status.idle": "2023-08-22T06:57:56.224094Z", + "shell.execute_reply": "2023-08-22T06:57:56.221572Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -7707,7 +8304,7 @@ "Total params: 217\n", "Trainable params: 217\n", "Non-trainable params: 0\n", - "Total mult-adds (Units.MEGABYTES): 1.83\n", + "Total mult-adds (M): 1.83\n", "===================================================================================================================\n", "Input size (MB): 0.11\n", "Forward/backward pass size (MB): 0.86\n", @@ -7743,6 +8340,12 @@ "execution_count": 105, "id": "ea7ce0f4", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.228022Z", + "iopub.status.busy": "2023-08-22T06:57:56.227434Z", + "iopub.status.idle": "2023-08-22T06:57:56.236333Z", + "shell.execute_reply": "2023-08-22T06:57:56.234101Z" + }, "lines_to_next_cell": 0 }, "outputs": [], @@ -7766,7 +8369,14 @@ "cell_type": "code", "execution_count": 106, "id": "ccd77738", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:56.242815Z", + "iopub.status.busy": "2023-08-22T06:57:56.242259Z", + "iopub.status.idle": "2023-08-22T06:57:57.426177Z", + "shell.execute_reply": "2023-08-22T06:57:57.425792Z" + } + }, "outputs": [ { "name": "stdout", @@ -7800,7 +8410,14 @@ "cell_type": "code", "execution_count": 107, "id": "96e04e3f", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:57.428165Z", + "iopub.status.busy": "2023-08-22T06:57:57.428026Z", + "iopub.status.idle": "2023-08-22T06:57:57.431868Z", + "shell.execute_reply": "2023-08-22T06:57:57.431594Z" + } + }, "outputs": [], "source": [ "nyse_optimizer = RMSprop(nyse_model.parameters(),\n", @@ -7824,6 +8441,12 @@ "execution_count": 108, "id": "fc6ba2ca", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T06:57:57.433417Z", + "iopub.status.busy": "2023-08-22T06:57:57.433307Z", + "iopub.status.idle": "2023-08-22T07:00:40.275665Z", + "shell.execute_reply": "2023-08-22T07:00:40.275338Z" + }, "lines_to_next_cell": 2 }, "outputs": [ @@ -7850,7 +8473,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "95b6a3cd420043e6b2a2ee4b5c581226", "version_major": 2, "version_minor": 0 }, @@ -7864,7 +8487,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cd881313814b4b319883de36a456b21e", + "model_id": "bbdc8300574e444f84013f84c05e6988", "version_major": 2, "version_minor": 0 }, @@ -7878,7 +8501,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "310d1d9245d04c4a9a45cad917a0582f", "version_major": 2, "version_minor": 0 }, @@ -7892,7 +8515,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "eef0f6560d954d5ea16e60990738e2cc", "version_major": 2, "version_minor": 0 }, @@ -7906,7 +8529,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e1a4ab6a7ea14a1793a74d845fba2120", "version_major": 2, "version_minor": 0 }, @@ -7920,7 +8543,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b4dadf7144e840bba44919c5819762c8", "version_major": 2, "version_minor": 0 }, @@ -7934,7 +8557,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "5b635df0124948c68f032a75096fb0ab", "version_major": 2, "version_minor": 0 }, @@ -7948,7 +8571,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "b26841e7fff54ca3b1261b59e1139ff7", "version_major": 2, "version_minor": 0 }, @@ -7962,7 +8585,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "abdcc9fbc9c24b7c98816ed97227cf2c", "version_major": 2, "version_minor": 0 }, @@ -7976,7 +8599,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f3fea9d8fc9d4fa18a59858639aa59ed", "version_major": 2, "version_minor": 0 }, @@ -7990,7 +8613,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "bd79b3e38b3f474ea8bf5593feac2c10", "version_major": 2, "version_minor": 0 }, @@ -8004,7 +8627,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0af290cfb7094c79bfd2e7f8365acf36", "version_major": 2, "version_minor": 0 }, @@ -8018,7 +8641,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "10c21e600539445aab5c84fc6dfbf177", "version_major": 2, "version_minor": 0 }, @@ -8032,7 +8655,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "0973c4b48d194877949fb1b7c774da1e", "version_major": 2, "version_minor": 0 }, @@ -8046,7 +8669,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "37125429788142babf17d20959d22937", "version_major": 2, "version_minor": 0 }, @@ -8060,7 +8683,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "abde3ff2c46049b083b8c09a02050944", "version_major": 2, "version_minor": 0 }, @@ -8074,7 +8697,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e1c72805efd34bfbb0123b6c7e817932", "version_major": 2, "version_minor": 0 }, @@ -8088,7 +8711,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "89b5501d0f4e4e229245ef7383a072a6", "version_major": 2, "version_minor": 0 }, @@ -8102,7 +8725,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "90e48643b3a643afbd59b13a19ddeec7", "version_major": 2, "version_minor": 0 }, @@ -8116,7 +8739,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6de9074e60d645f3828bb4c95cf5302a", "version_major": 2, "version_minor": 0 }, @@ -8130,7 +8753,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f79aa43f386c40c483d63f880085c74d", "version_major": 2, "version_minor": 0 }, @@ -8144,7 +8767,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "6f34c24168bd45b2affd155b51b705e6", "version_major": 2, "version_minor": 0 }, @@ -8158,7 +8781,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7875d07614a44573a176a0f743f1fcd0", "version_major": 2, "version_minor": 0 }, @@ -8172,7 +8795,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1a18871f189b4ee5b9132a64b8283f05", "version_major": 2, "version_minor": 0 }, @@ -8186,7 +8809,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8f0b1b4c52a145cdb20061ff3fc177b9", "version_major": 2, "version_minor": 0 }, @@ -8200,7 +8823,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "82bac11afbcb42fd9a1c3dcd6eb820e2", "version_major": 2, "version_minor": 0 }, @@ -8214,7 +8837,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "fe1a0d0664ca4fd5bf5cbf3d16d930cf", "version_major": 2, "version_minor": 0 }, @@ -8228,7 +8851,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "45fcd0f75d8e48399ec84af25eae168a", "version_major": 2, "version_minor": 0 }, @@ -8242,7 +8865,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "89786bf5f5294be8b8d27e014d737a96", "version_major": 2, "version_minor": 0 }, @@ -8256,7 +8879,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "563b43a747874d2594ce3ee4225a77d9", "version_major": 2, "version_minor": 0 }, @@ -8270,7 +8893,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "525877bb73a749e887171278fff23f1f", "version_major": 2, "version_minor": 0 }, @@ -8284,7 +8907,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3a20929e7e28465b9e3ca911e1b396de", "version_major": 2, "version_minor": 0 }, @@ -8298,7 +8921,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "49fbc35b3eb544b4b8b9671f3016b763", "version_major": 2, "version_minor": 0 }, @@ -8312,7 +8935,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "e1879cb9b60b4bc4b5146f8e79bb69d9", "version_major": 2, "version_minor": 0 }, @@ -8326,7 +8949,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1105b2712dba48ef871bf04a7f18fe59", "version_major": 2, "version_minor": 0 }, @@ -8340,7 +8963,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "25fc948b148e4869ac670d7b23ce9c65", "version_major": 2, "version_minor": 0 }, @@ -8354,7 +8977,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1dfa13d9878a4cf6b77483c08505788b", "version_major": 2, "version_minor": 0 }, @@ -8368,7 +8991,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9593d38c7ed8435caa1d9404e9762bad", "version_major": 2, "version_minor": 0 }, @@ -8382,7 +9005,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "06ee2f237ba04517abd23a452312dea3", "version_major": 2, "version_minor": 0 }, @@ -8396,7 +9019,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "cf20cc660d70484490f6d80bb1b6fe0a", "version_major": 2, "version_minor": 0 }, @@ -8410,7 +9033,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "edb52ef5142e49acb1560262a71867ad", "version_major": 2, "version_minor": 0 }, @@ -8424,7 +9047,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "d2a4b7ba01cf4eae8d787128d171d42f", "version_major": 2, "version_minor": 0 }, @@ -8438,7 +9061,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "bc77a8b02c574130a6ad1ab4196d1a54", "version_major": 2, "version_minor": 0 }, @@ -8452,7 +9075,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "878e121dd7ad496a818210ad627543c5", "version_major": 2, "version_minor": 0 }, @@ -8466,7 +9089,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "3f120172c05946d88ae1c9377f34efaa", "version_major": 2, "version_minor": 0 }, @@ -8480,7 +9103,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "8632bcc4d11448eb81475b54a787493e", "version_major": 2, "version_minor": 0 }, @@ -8494,7 +9117,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7f204210db3f40adbf7aaad5fec4703a", "version_major": 2, "version_minor": 0 }, @@ -8508,7 +9131,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "9184fe0c710a4857a4eec55b045b302d", "version_major": 2, "version_minor": 0 }, @@ -8522,7 +9145,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "1121e4e9fc494b208e8955e354da84b4", "version_major": 2, "version_minor": 0 }, @@ -8536,7 +9159,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c0851768dd544162913f87e0e0cb118e", + "model_id": "362aef7988714324856a1a1e016f24aa", "version_major": 2, "version_minor": 0 }, @@ -8550,7 +9173,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6cb1dc51cbad4e1f829a074e29d3a47e", + "model_id": "57cc005303c341f8aa341dbf37aa5fe6", "version_major": 2, "version_minor": 0 }, @@ -8564,7 +9187,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "608984e04fc847d7860dfb48bbcdda9f", + "model_id": "c66ebc1c27dd473d8fd43f5fbd5d174c", "version_major": 2, "version_minor": 0 }, @@ -8578,7 +9201,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bef4bc23212c41c497e518473db55672", + "model_id": "a1c7810cabe64d17bc172b57db7ec331", "version_major": 2, "version_minor": 0 }, @@ -8592,7 +9215,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "890d82c78d59444ea97f6000b0d17fec", + "model_id": "fef9d04d4c804603a58c6b99953fe15b", "version_major": 2, "version_minor": 0 }, @@ -8606,7 +9229,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "84f285e1262e448186175b5f6ea8a100", + "model_id": "c5912f206112487eae4aa2a112779a75", "version_major": 2, "version_minor": 0 }, @@ -8620,7 +9243,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6bcddf29e018487ab3cbd65b9360a31c", + "model_id": "5d742666716a4b15b47107d1a0309abb", "version_major": 2, "version_minor": 0 }, @@ -8634,7 +9257,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0f5f0bf0e3094d359222a40cfb883e67", + "model_id": "36c55aac31e5412c816e437863adf597", "version_major": 2, "version_minor": 0 }, @@ -8648,7 +9271,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "436f0a6e3a7a4457b6b54fb1c19a9fc1", + "model_id": "63216f9e7ca841d1b77b9390db1a01dc", "version_major": 2, "version_minor": 0 }, @@ -8662,7 +9285,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "153517df5e244608a4df90e6d5b3f2fb", + "model_id": "0b0544163989426286d824c09f6f839b", "version_major": 2, "version_minor": 0 }, @@ -8676,7 +9299,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "966bf641ff264d9ba465a989337d24c8", + "model_id": "24dc247902e7499fa83cb7eae6d39c8d", "version_major": 2, "version_minor": 0 }, @@ -8690,7 +9313,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "232ec0a0183e462f92422b1991162466", + "model_id": "c09e2e692442447d801be649af33f5fa", "version_major": 2, "version_minor": 0 }, @@ -8704,7 +9327,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "94eebdb823b9416abdb1454fa8b713a1", + "model_id": "20941b59c0dc491eafe96ffb9c818ecc", "version_major": 2, "version_minor": 0 }, @@ -8718,7 +9341,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "63e68c7095d74639a33c6b422dde8e6b", + "model_id": "992d4f2d368c498b943615c115629aad", "version_major": 2, "version_minor": 0 }, @@ -8732,7 +9355,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "858b9ede991d4db5a65f3738145661b0", + "model_id": "4e416b0bdb9c4c8aa5a6f892e56db3c5", "version_major": 2, "version_minor": 0 }, @@ -8746,7 +9369,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1320a563fa1141f48ec1121a4da566dd", + "model_id": "77de1a41dac14d039c8c1d02ae02f3db", "version_major": 2, "version_minor": 0 }, @@ -8760,7 +9383,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c258eee32312493f820b0be1001b702d", + "model_id": "d3a09a93e8424c71b15ac85901a9a410", "version_major": 2, "version_minor": 0 }, @@ -8774,7 +9397,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cfe59e5c336b483595b2c2f3e5002fe5", + "model_id": "1615ae33936b4bfd9634c6bb3ac39471", "version_major": 2, "version_minor": 0 }, @@ -8788,7 +9411,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "da49b9baca8d43deb73852ac22411b59", + "model_id": "d2c6d6b719ab4a6486f4064876be0c08", "version_major": 2, "version_minor": 0 }, @@ -8802,7 +9425,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2edefd368841420799756fdeb9eb350e", + "model_id": "ce7492730b7e4f548694a1f23c9a6450", "version_major": 2, "version_minor": 0 }, @@ -8816,7 +9439,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb1ab9dd650c4327b9e08083ea6f855e", + "model_id": "88422685b66a438cae7d1d34ca697517", "version_major": 2, "version_minor": 0 }, @@ -8830,7 +9453,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "337548c8b3a649b3bbb2aa022d0bc33c", + "model_id": "8ba599ae00814aafad77024e7568e778", "version_major": 2, "version_minor": 0 }, @@ -8844,7 +9467,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "469f0f8eaf84468689dc81a6866590c6", + "model_id": "d5860d03fb274897a1c9a5cb40fd3a20", "version_major": 2, "version_minor": 0 }, @@ -8858,7 +9481,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5a3d2d6c73104569b2431592878a0680", + "model_id": "f52ca3eb65704fafa3505600b4991ee5", "version_major": 2, "version_minor": 0 }, @@ -8872,7 +9495,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0a4f360d5a1c4e688c806475aa15e2aa", + "model_id": "d1923daf2db74301b340148ee2bc1b61", "version_major": 2, "version_minor": 0 }, @@ -8886,7 +9509,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "32861129effb47cdb392fa0a20b636c3", + "model_id": "346c10712b804be5bcd25e79f086949d", "version_major": 2, "version_minor": 0 }, @@ -8900,7 +9523,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0713f563c1fc4d6292be6340e83f6417", + "model_id": "1bce2d648032437987c976643d489ba4", "version_major": 2, "version_minor": 0 }, @@ -8914,7 +9537,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1364d3ae21274234a26921be5a610c57", + "model_id": "9fdf19ac27b145209736e8c9f182d9ec", "version_major": 2, "version_minor": 0 }, @@ -8928,7 +9551,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c5e4630ea30945fd862bce8a68c9eaff", + "model_id": "24f5acb596fa40cbb05e03fc2ecfa7da", "version_major": 2, "version_minor": 0 }, @@ -8942,7 +9565,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb014ea654fa49c6b29fda1c42a4239b", + "model_id": "0c618ac6b95548a9af4a07a9a6156aed", "version_major": 2, "version_minor": 0 }, @@ -8956,7 +9579,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fc9065e42c5946f88aa84da055bf968e", + "model_id": "6529dd19179b45919462c447413d8679", "version_major": 2, "version_minor": 0 }, @@ -8970,7 +9593,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b33c56819c07474596c522b66e69d8e0", + "model_id": "b1ea52fd69d14eb286458bccc1c7ead6", "version_major": 2, "version_minor": 0 }, @@ -8984,7 +9607,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e227733b97fd411fa91be941aa0826f3", + "model_id": "9bbd36213ef445618c259309ab109577", "version_major": 2, "version_minor": 0 }, @@ -8998,7 +9621,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b0de6788585a43d387ee192d3e919582", + "model_id": "f5cc1c30c70649c6b372e687ad908d56", "version_major": 2, "version_minor": 0 }, @@ -9012,7 +9635,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "95f701a89b174f96a7121b1741fcb9fe", + "model_id": "28f1d935250c418fb5f43e4498f1c22c", "version_major": 2, "version_minor": 0 }, @@ -9026,7 +9649,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d138f67a0d8d44b69b94c79290ab60fa", + "model_id": "8e2bb89ba44f4d6aba94eae9506d0e76", "version_major": 2, "version_minor": 0 }, @@ -9040,7 +9663,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "472095f2f7de47dca63bb953593f60a9", + "model_id": "1375d6c108e64f938209d70cac1afaa5", "version_major": 2, "version_minor": 0 }, @@ -9054,7 +9677,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d696f828b464421c95874bae379a6fa0", + "model_id": "343227abde4b4eb68eefbf1687da1eb1", "version_major": 2, "version_minor": 0 }, @@ -9068,7 +9691,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a92efff5798b4681b9d9de929e5f6336", + "model_id": "bb81a24c1224462db69e6ff10f3f087a", "version_major": 2, "version_minor": 0 }, @@ -9082,7 +9705,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "289e5bce5f284ce99e064521ce0e05a9", + "model_id": "4488130e828d4d78904d5950498f67b0", "version_major": 2, "version_minor": 0 }, @@ -9096,7 +9719,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fdd3f827c9c34a3190aba38b1b13c21f", + "model_id": "9cf55c11573c49fa964f79035a5d3c0d", "version_major": 2, "version_minor": 0 }, @@ -9110,7 +9733,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d99ecb21f9e54c9fb262b29adde16bd0", + "model_id": "35d20c69fdb94bd7b9be6d849e9210ed", "version_major": 2, "version_minor": 0 }, @@ -9124,7 +9747,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "725a40f03b734c21b8b8e67b3212718f", + "model_id": "18050ac655af49d7ab7b0c82476492da", "version_major": 2, "version_minor": 0 }, @@ -9138,7 +9761,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "640019ee89d047fd8725565835db0eaf", + "model_id": "b0df9537442a481492141bd3fa9f7739", "version_major": 2, "version_minor": 0 }, @@ -9152,7 +9775,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1580c64b5a874e6aad7a89abacd5cb60", + "model_id": "ff530b9d2e984dff8b9bb9f1eede00b0", "version_major": 2, "version_minor": 0 }, @@ -9166,7 +9789,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "75eddb18a4c546b1a364977b91a38001", + "model_id": "988fc0e04c964d5099fca9df22760e57", "version_major": 2, "version_minor": 0 }, @@ -9180,7 +9803,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "96302a61558d40549b7802f4c44263eb", + "model_id": "38755c7422b34a949cc732c06b1e682e", "version_major": 2, "version_minor": 0 }, @@ -9194,7 +9817,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb7dd989673a4223b66345ef77406828", + "model_id": "0ac4cea1d60b4f79bc3b45b07c38ade8", "version_major": 2, "version_minor": 0 }, @@ -9208,7 +9831,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6e74c6d1b7c64e4596a655a0fbaf1bfb", + "model_id": "758f258102814532b42dda1f53b094a5", "version_major": 2, "version_minor": 0 }, @@ -9222,7 +9845,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d716d0b7820d475ca7653959b52d5450", + "model_id": "8e85659e3769441bae9ba746d0e525ad", "version_major": 2, "version_minor": 0 }, @@ -9236,7 +9859,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "137da5f57ba84efdb51aff612b72db01", + "model_id": "486ae51d02924739bc6a5ca3b3e6d509", "version_major": 2, "version_minor": 0 }, @@ -9250,7 +9873,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bd227089abe34ebda36b2d18df87a86a", + "model_id": "8354aab430d94e518cd1d3e94911337f", "version_major": 2, "version_minor": 0 }, @@ -9264,7 +9887,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "044b5721d12d4dadbc68f2e1ef6db71a", + "model_id": "511a0ae8aad344a69d9e566c023fa35e", "version_major": 2, "version_minor": 0 }, @@ -9278,7 +9901,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc86818b06a740479b3157b29a1cb18e", + "model_id": "13c285c6471046cbac5ff81f93657c26", "version_major": 2, "version_minor": 0 }, @@ -9292,7 +9915,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "dd634e6fc883498cadcb00911c514371", + "model_id": "977ae5e76c5d44b5b41e8afa239a643d", "version_major": 2, "version_minor": 0 }, @@ -9306,7 +9929,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3a52574849754ad5b349a2ef52a33722", + "model_id": "bf792c29044d4c38b76f2ad756e03da7", "version_major": 2, "version_minor": 0 }, @@ -9320,7 +9943,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "35f1a57c0f6147ce81b036c866a17275", + "model_id": "ce92f452f9314a93afafc2032d615c2d", "version_major": 2, "version_minor": 0 }, @@ -9334,7 +9957,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3cb251ea1f6a4ae7a87fb959e362d392", + "model_id": "279186f508234c3dbbcc710426a1c29e", "version_major": 2, "version_minor": 0 }, @@ -9348,7 +9971,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4e12dfd333064cf5a1fffa8ab56f67a6", + "model_id": "2a4e6adc03ec43bdbca612265317da94", "version_major": 2, "version_minor": 0 }, @@ -9362,7 +9985,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "73e3283065a94da9b0de1b38f87eb801", + "model_id": "cc23610a2bff44898bccc8b2b32ba273", "version_major": 2, "version_minor": 0 }, @@ -9376,7 +9999,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d2755e57697a4a01b6514fdba5578bec", + "model_id": "04dda1d230f74d89a3ee7a5b5d98e726", "version_major": 2, "version_minor": 0 }, @@ -9390,7 +10013,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f8f3787f489f46959322dac484b7ed93", + "model_id": "a654c1113f08483b812944094977a640", "version_major": 2, "version_minor": 0 }, @@ -9404,7 +10027,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f24824825bf644ae831c0e922e16a6c7", + "model_id": "27e31a821ce443eb9009167b3c80f4d8", "version_major": 2, "version_minor": 0 }, @@ -9418,7 +10041,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9abde42fb6564285aef92cdc78ac08a4", + "model_id": "d6aa53936e6544fa81fc40477ff0eb36", "version_major": 2, "version_minor": 0 }, @@ -9432,7 +10055,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "18ab584d1482478b9b7d34e90db79dd1", + "model_id": "74754a163a0248289e40025c911edda2", "version_major": 2, "version_minor": 0 }, @@ -9446,7 +10069,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7b030704b1b545fcad5ee48c27c6b90c", + "model_id": "8c5a887f0b6849038b79dd085b72acf8", "version_major": 2, "version_minor": 0 }, @@ -9460,7 +10083,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c47f07fcd58847b1b24f383546eb653c", + "model_id": "3b02d7e8b4f643c3b4e80b92be4df5a9", "version_major": 2, "version_minor": 0 }, @@ -9474,7 +10097,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f99c0e8c4b65436dafa5c2a9a5452e06", + "model_id": "246618accc3e4cf781e83c608fe100ee", "version_major": 2, "version_minor": 0 }, @@ -9488,7 +10111,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "24f347e1c972488ab6d64bcb07757238", + "model_id": "155223107da644d2b0f7e8d7345de660", "version_major": 2, "version_minor": 0 }, @@ -9502,7 +10125,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc6b7ff2a86c41cca3a9b423c0297b69", + "model_id": "7d395c5566d740b5b86b9b59bd34deaf", "version_major": 2, "version_minor": 0 }, @@ -9516,7 +10139,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eeff56e6de874ca3bbacdf08fbcead78", + "model_id": "300178e2115441d5a86263fac06833fb", "version_major": 2, "version_minor": 0 }, @@ -9530,7 +10153,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2253d5fd390a4ba1b32e8fd8639187bc", + "model_id": "085a6c772bde4ff98639f728f8e86455", "version_major": 2, "version_minor": 0 }, @@ -9544,7 +10167,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "dc58353b22e14f9bb332e8a38b77a717", + "model_id": "e7155e108f1d49a5ab2ea8884e9113c0", "version_major": 2, "version_minor": 0 }, @@ -9558,7 +10181,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "caac960a2e374b8fb4bfd726a3b20235", + "model_id": "5b880620a1044692b60fd0788753db8c", "version_major": 2, "version_minor": 0 }, @@ -9572,7 +10195,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "debee1aed4cc40d5b303d02eedbdfc41", + "model_id": "4618479a353241dfbbe175e6bd992690", "version_major": 2, "version_minor": 0 }, @@ -9586,7 +10209,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "49af03e929d149319965f79777b874d7", + "model_id": "05716b1163b34b6cad922e94883db0bf", "version_major": 2, "version_minor": 0 }, @@ -9600,7 +10223,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "518f016e8418473fa5c367ba4782ea70", + "model_id": "af6e9338419b4d03b841a34ef0f546fd", "version_major": 2, "version_minor": 0 }, @@ -9614,7 +10237,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d5d84c78937e4e86809c6752d2ab9b34", + "model_id": "b96621d846f14a31ac1ffe0c636d01a5", "version_major": 2, "version_minor": 0 }, @@ -9628,7 +10251,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d0e7561ad6254c608e8ccbe9419bf13d", + "model_id": "e504f18c324c476dac7f4b0877ed12c1", "version_major": 2, "version_minor": 0 }, @@ -9642,7 +10265,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "62bf8c5f5e884276b3423cb35af947cc", + "model_id": "486052b58c414f6d996ee68669b675b9", "version_major": 2, "version_minor": 0 }, @@ -9656,7 +10279,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "09fbe3b2afb844e087c8b8131940f52f", + "model_id": "ceadae97a639412daf3b8398fefb931d", "version_major": 2, "version_minor": 0 }, @@ -9670,7 +10293,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "248d1480e07844f5aae809b8d75f6f05", + "model_id": "5219244691624a5cbd1f625955f9e54e", "version_major": 2, "version_minor": 0 }, @@ -9684,7 +10307,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b16a871746b7454fa6dbf640904fba60", + "model_id": "160d6938017c49b0af2108e617650458", "version_major": 2, "version_minor": 0 }, @@ -9698,7 +10321,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3080997668ed41d9ab15a00e2e56022a", + "model_id": "2d303fcde5e041ee9299c05f991534d2", "version_major": 2, "version_minor": 0 }, @@ -9712,7 +10335,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4788ab535ba14e80a1f6847da6310b78", + "model_id": "1feee114d010494893c166277e3af3e6", "version_major": 2, "version_minor": 0 }, @@ -9726,7 +10349,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f8c7af5af17445b7a9af29dcf422e74f", + "model_id": "9afb731d4546448cbda176990e25424c", "version_major": 2, "version_minor": 0 }, @@ -9740,7 +10363,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c5e43276790a42fda94871a6b05d611a", + "model_id": "545066be7a644eb1b781a98c8815d46d", "version_major": 2, "version_minor": 0 }, @@ -9754,7 +10377,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "801b75b2e42742d6bd8680b776df8e35", + "model_id": "053b833a9d5145cc9d813a5c06c1c793", "version_major": 2, "version_minor": 0 }, @@ -9768,7 +10391,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a00c72e3f166473a876f02fec7326ff9", + "model_id": "87ad1c890b204989ae6bfcb7ff3fd1e1", "version_major": 2, "version_minor": 0 }, @@ -9782,7 +10405,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "66c4ce98f5ba4957b673c1969ac1ec6b", + "model_id": "b4f7c0fc3e6f4481bc20f15c3be37155", "version_major": 2, "version_minor": 0 }, @@ -9796,7 +10419,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "65829521a0704628ad14ef78741bbfc8", + "model_id": "dcc2213e021747a980179e706540fddd", "version_major": 2, "version_minor": 0 }, @@ -9810,7 +10433,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fab5d683ba714ad58a9aab8de4df7b4f", + "model_id": "c241336a4cc04e2d90181b13b3ee292b", "version_major": 2, "version_minor": 0 }, @@ -9824,7 +10447,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e042dbbd1baa44fa9f73d06426c862ef", + "model_id": "3d68dd9016864f5d973ff48ee1554321", "version_major": 2, "version_minor": 0 }, @@ -9838,7 +10461,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9b23da050f7e4d928362df6059d09c58", + "model_id": "ea8f997f442945f38cbf12f09c6b0459", "version_major": 2, "version_minor": 0 }, @@ -9852,7 +10475,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b1f1ad4e73bf410497c46c1e3d4ef017", + "model_id": "1d98ebf2b1bf43299ae95e759ed34269", "version_major": 2, "version_minor": 0 }, @@ -9866,7 +10489,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "95951bcd163a48a083e71524e3c8c80f", + "model_id": "d5edf4594c904239979c898c96770017", "version_major": 2, "version_minor": 0 }, @@ -9880,7 +10503,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bfd23af6b76b4c66bb24b6c0af0151db", + "model_id": "6b489374390d46c8bea4b2f83f489f1d", "version_major": 2, "version_minor": 0 }, @@ -9894,7 +10517,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a620323d378841ffa3fb4e8af6b7b677", + "model_id": "a87b8c03c368440f9816fa9237dbbf70", "version_major": 2, "version_minor": 0 }, @@ -9908,7 +10531,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5c140c009d62482faf2bb955304ddfb5", + "model_id": "2236e136d4fe4a7b916f37175d90fdab", "version_major": 2, "version_minor": 0 }, @@ -9922,7 +10545,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eec96bca2672471fa10edafc612715f9", + "model_id": "34cb5553d81842f092cfe98ad9520eac", "version_major": 2, "version_minor": 0 }, @@ -9936,7 +10559,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "13d227699d96405e9672968a117dd835", + "model_id": "95417aa13be94e0ebd44247dd1a108d5", "version_major": 2, "version_minor": 0 }, @@ -9950,7 +10573,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bdf0d51cecf64b6b88b2189e61e2697d", + "model_id": "d91a8979aa8e4372881dfa4c1d2d0fb8", "version_major": 2, "version_minor": 0 }, @@ -9964,7 +10587,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3663a9cc5dd6492c838b8856ee3db172", + "model_id": "776e0ceb423947fab047fa0a36f1a649", "version_major": 2, "version_minor": 0 }, @@ -9978,7 +10601,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5b8a90932c5c43449baddb012d3f8d2f", + "model_id": "a5939de5d6e2412bba3a5378ff52098f", "version_major": 2, "version_minor": 0 }, @@ -9992,7 +10615,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "acfe2fcbcbeb40b689a942d4a384e81e", + "model_id": "1cb2ef792e7246e78aca5c23ad00754c", "version_major": 2, "version_minor": 0 }, @@ -10006,7 +10629,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a41e9df7b5be41f680c2486bb036eac0", + "model_id": "8577b08dfb83408daa431ebe138d0803", "version_major": 2, "version_minor": 0 }, @@ -10020,7 +10643,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "70cfd7e68ad546fca7b8b4fcb5fe112a", + "model_id": "081e3021531141e48f1cde90a2e60671", "version_major": 2, "version_minor": 0 }, @@ -10034,7 +10657,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc6d28f7b6674cc78526f2a04a232f87", + "model_id": "04da4e8a94b8485f9d4f5c355005935f", "version_major": 2, "version_minor": 0 }, @@ -10048,7 +10671,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ae26f55dfe5d44cd9fae433fb8a3ed46", + "model_id": "f4615440ddf24df0a05fc9ff41997f68", "version_major": 2, "version_minor": 0 }, @@ -10062,7 +10685,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b61738f2417244b6b7df1ebb3b3f24d7", + "model_id": "9752977f30eb4c12b2ac52db90ffe806", "version_major": 2, "version_minor": 0 }, @@ -10076,7 +10699,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fdbf1b51bbd54898b58a2de9f695d5ba", + "model_id": "dfa59627c528419aae74ac648e4699c2", "version_major": 2, "version_minor": 0 }, @@ -10090,7 +10713,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d438be1b459e4f0f90e1a26704baa0f1", + "model_id": "626f5be4b8a34439893f6a6bc8045c2c", "version_major": 2, "version_minor": 0 }, @@ -10104,7 +10727,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "164a559d88cd48c58bb43f99cf5819fb", + "model_id": "78123190b7e2489f89d7e56af80f09ca", "version_major": 2, "version_minor": 0 }, @@ -10118,7 +10741,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e142ec45c48e400bbf4cf7dbc8b94e39", + "model_id": "f5d88208fe1f40d79db43eeb3703df18", "version_major": 2, "version_minor": 0 }, @@ -10132,7 +10755,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b98239d615c44f9280cd53bf430b38ef", + "model_id": "74f80b2748054370947e20aef204d640", "version_major": 2, "version_minor": 0 }, @@ -10146,7 +10769,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ee3012ec548c4468ab19394fcc61dfe1", + "model_id": "276324d347834f9fbf90e8acf87776e2", "version_major": 2, "version_minor": 0 }, @@ -10160,7 +10783,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "59abff92475945148512c124b31620ae", + "model_id": "202c78ca5dfc4456adc95c21f0868eee", "version_major": 2, "version_minor": 0 }, @@ -10174,7 +10797,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "10742df4535742c8acdcdbea8d8d6a02", + "model_id": "e9ae73c46ec4448a91b1a66a6212c0c1", "version_major": 2, "version_minor": 0 }, @@ -10188,7 +10811,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7e3d33d2a59f4e2c8413b43cfaee41d1", + "model_id": "fe1f482f4b1b4f47a56a4e97439842b9", "version_major": 2, "version_minor": 0 }, @@ -10202,7 +10825,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1fd03ae4594b4574a55f06d248d8b61a", + "model_id": "7a4b6820418b41faa3d24c135b7fe5ca", "version_major": 2, "version_minor": 0 }, @@ -10216,7 +10839,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "976c6fee189c41b4b5445895fb180c8d", + "model_id": "274c8f91da714f279b9995aa22fc656d", "version_major": 2, "version_minor": 0 }, @@ -10230,7 +10853,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "198e1fa4f5124895bc0ee188984ea726", + "model_id": "1fd9417afaaf423fb91abd1bc89e082c", "version_major": 2, "version_minor": 0 }, @@ -10244,7 +10867,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c78ca1847595417aa71358a1c1b1a4b0", + "model_id": "69162f7af7d446e9892f3865f6f3c204", "version_major": 2, "version_minor": 0 }, @@ -10258,7 +10881,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "af7a5a5a341348f2a0be2f3e77656549", + "model_id": "ce52107f794845beb559296b8df3ca4c", "version_major": 2, "version_minor": 0 }, @@ -10272,7 +10895,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b5ab2cc2a47b42828c7a6780a6db2e00", + "model_id": "039eb58619a04a919785b454d4e75d97", "version_major": 2, "version_minor": 0 }, @@ -10286,7 +10909,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f972c01912c545948b56ea640af2c5b0", + "model_id": "09fd8d108d384f8a81c39661d780d169", "version_major": 2, "version_minor": 0 }, @@ -10300,7 +10923,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "213b3d4ee66d42e1b57a82d35b720112", + "model_id": "25d997f386cf40abb7e1cb6d3ccc492d", "version_major": 2, "version_minor": 0 }, @@ -10314,7 +10937,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ddfc7dcdd1c94636929318d51a61e048", + "model_id": "576f1dfdbc12467ebe290351d695c9bb", "version_major": 2, "version_minor": 0 }, @@ -10328,7 +10951,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3fdce7be7f074ec589421caa0319862f", + "model_id": "f3fb45ebffc4481b98ed10f50a0d45e9", "version_major": 2, "version_minor": 0 }, @@ -10342,7 +10965,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "180334cb0f4c4cc6a5f2eeedc55a986b", + "model_id": "864efaae9ebb4a2cb140e89fb49c4b1a", "version_major": 2, "version_minor": 0 }, @@ -10356,7 +10979,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d2e9e0572d4c48bd9dcf25960be64cde", + "model_id": "ca0d6a01341a41cc84ffacaa43f9ab29", "version_major": 2, "version_minor": 0 }, @@ -10370,7 +10993,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0e26b9ff0a7642e0b8400f0a937eeb30", + "model_id": "cb072b8b7e7f4823acd69e8090be31cf", "version_major": 2, "version_minor": 0 }, @@ -10384,7 +11007,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bf9537d5986b4aacad134c66a4242b0e", + "model_id": "777feac25bc24e619ecbc60c835c124a", "version_major": 2, "version_minor": 0 }, @@ -10398,7 +11021,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e4ab38c6e45d4628b56bbe5dac9458d7", + "model_id": "f89f565d1e07430d97c568d3185a3fcf", "version_major": 2, "version_minor": 0 }, @@ -10412,7 +11035,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "18e800771f6f439bb9f15de7edaf8274", + "model_id": "740d69a62cef481eae149694f26e2d7d", "version_major": 2, "version_minor": 0 }, @@ -10426,7 +11049,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ee30326da017481f94e780628f0ec74d", + "model_id": "781a1d7dd346434cb361755233d1c625", "version_major": 2, "version_minor": 0 }, @@ -10440,7 +11063,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ebaaaf47fecb406facb8804280ed88e2", + "model_id": "671743e2735b4f13ba44ab2b637d5ac5", "version_major": 2, "version_minor": 0 }, @@ -10454,7 +11077,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ac274611a2704a2ab1468b205859dfc1", + "model_id": "befc8c1b6e984dc5a2bf52c49d059ddc", "version_major": 2, "version_minor": 0 }, @@ -10468,7 +11091,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "41be5520b1964125872189d604272dc4", + "model_id": "644566f59f51470b956fd341349c5e88", "version_major": 2, "version_minor": 0 }, @@ -10482,7 +11105,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "666d79b38fcd49c79cac956f8b2f7677", + "model_id": "1835eb9fa98743a9ac344d20c2ed5594", "version_major": 2, "version_minor": 0 }, @@ -10496,7 +11119,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2253e50224c642a7a56858b1c135213e", + "model_id": "c0fdcb4fc2c0411bb7ae833ca060abca", "version_major": 2, "version_minor": 0 }, @@ -10510,7 +11133,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f01094a315c4420e9aba161bd526a1e0", + "model_id": "994179ad8f7f4d65adedba46549b8b8f", "version_major": 2, "version_minor": 0 }, @@ -10524,7 +11147,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "652fb20eb89245a8ac16173eeb553633", + "model_id": "a867c1a31814435b985a017541c07a85", "version_major": 2, "version_minor": 0 }, @@ -10538,7 +11161,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "92757d397a9944e9bf89a627d34d670a", + "model_id": "6e404ac3b2ae4a98b97e1029acf9efc9", "version_major": 2, "version_minor": 0 }, @@ -10552,7 +11175,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d4b73d5c186347d9a05f2486c5baafee", + "model_id": "9b55e6ee243d4823bd15fb8f2f495158", "version_major": 2, "version_minor": 0 }, @@ -10566,7 +11189,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4daeb823d61246a0aa572689807c117d", + "model_id": "e2e7bb6a1da84590b41f8ea9ffb59da6", "version_major": 2, "version_minor": 0 }, @@ -10580,7 +11203,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4da85fb13a6241efa01e2e144209cd5f", + "model_id": "af546f5012484bc5a061a81469ad52b8", "version_major": 2, "version_minor": 0 }, @@ -10594,7 +11217,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6f4c663a0b6449828fcacf1d77b0fad1", + "model_id": "20887ceec3994c03ae2c5c2e3e1a02d6", "version_major": 2, "version_minor": 0 }, @@ -10608,7 +11231,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ada51e9d1ee84f7c8d7cda87a9fed382", + "model_id": "fd444c98f6e74543803b4bbec3706c9d", "version_major": 2, "version_minor": 0 }, @@ -10622,7 +11245,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "035517fa34c84edb8520548a6a6f5f2f", + "model_id": "acab03215fc748008c9ddf873de20a5b", "version_major": 2, "version_minor": 0 }, @@ -10636,7 +11259,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ddc0d23180304537a5d5a408daed4159", + "model_id": "6c01327034f34540830e0810fc97d553", "version_major": 2, "version_minor": 0 }, @@ -10650,7 +11273,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c4c0bccb88c34e5da862f7bf33948498", + "model_id": "58392e9f8c6b437b925f7acf02a8b4ba", "version_major": 2, "version_minor": 0 }, @@ -10664,7 +11287,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "27c5c425ce414190aae3c840ca8df1e0", + "model_id": "7c68f2790a23436883f1bc3a3fbd8fb1", "version_major": 2, "version_minor": 0 }, @@ -10685,7 +11308,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "23414392e3a74a4b8dff5fe1a30f6eec", + "model_id": "dbce6d3c66cf4a2d8af9b9322087d697", "version_major": 2, "version_minor": 0 }, @@ -10697,29 +11320,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│         test_loss             0.6186699867248535     │\n",
-       "│          test_r2              0.4128519892692566     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.6186699867248535 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_r2 \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.4128519892692566 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_loss 0.6186699867248535\n", + " test_r2 0.4128519892692566\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -10762,7 +11372,14 @@ "cell_type": "code", "execution_count": 109, "id": "c60876d7", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T07:00:40.277902Z", + "iopub.status.busy": "2023-08-22T07:00:40.277770Z", + "iopub.status.idle": "2023-08-22T07:00:40.284106Z", + "shell.execute_reply": "2023-08-22T07:00:40.283818Z" + } + }, "outputs": [], "source": [ "datasets = []\n", @@ -10786,7 +11403,14 @@ "cell_type": "code", "execution_count": 110, "id": "282f7e1c", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T07:00:40.285727Z", + "iopub.status.busy": "2023-08-22T07:00:40.285637Z", + "iopub.status.idle": "2023-08-22T07:00:40.287708Z", + "shell.execute_reply": "2023-08-22T07:00:40.287434Z" + } + }, "outputs": [], "source": [ "day_dm = SimpleDataModule(day_train,\n", @@ -10808,7 +11432,14 @@ "cell_type": "code", "execution_count": 111, "id": "038fea74", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T07:00:40.289256Z", + "iopub.status.busy": "2023-08-22T07:00:40.289169Z", + "iopub.status.idle": "2023-08-22T07:00:40.291814Z", + "shell.execute_reply": "2023-08-22T07:00:40.291551Z" + } + }, "outputs": [], "source": [ "class NonLinearARModel(nn.Module):\n", @@ -10827,7 +11458,14 @@ "cell_type": "code", "execution_count": 112, "id": "68d309b2", - "metadata": {}, + "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T07:00:40.293426Z", + "iopub.status.busy": "2023-08-22T07:00:40.293319Z", + "iopub.status.idle": "2023-08-22T07:00:40.296658Z", + "shell.execute_reply": "2023-08-22T07:00:40.296393Z" + } + }, "outputs": [], "source": [ "nl_model = NonLinearARModel()\n", @@ -10852,6 +11490,12 @@ "execution_count": 113, "id": "9fc113a1", "metadata": { + "execution": { + "iopub.execute_input": "2023-08-22T07:00:40.298197Z", + "iopub.status.busy": "2023-08-22T07:00:40.298117Z", + "iopub.status.idle": "2023-08-22T07:00:54.837234Z", + "shell.execute_reply": "2023-08-22T07:00:54.836928Z" + }, "lines_to_next_cell": 0 }, "outputs": [ @@ -10878,7 +11522,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "60ce6a3ddb494c16a8b3681ec8a1a4b4", "version_major": 2, "version_minor": 0 }, @@ -10892,7 +11536,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6327380ca56a49628cb311d7382fe96d", + "model_id": "3bda25cffd7d41ac8d2636e841039865", "version_major": 2, "version_minor": 0 }, @@ -10906,7 +11550,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "33d02d3a5379479d929e9d7a50c4d2af", "version_major": 2, "version_minor": 0 }, @@ -10920,7 +11564,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "56fd0181af294cc0a53e92a856da5d57", "version_major": 2, "version_minor": 0 }, @@ -10934,7 +11578,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "54c228e9587f429d9728425ee4b2a1bf", "version_major": 2, "version_minor": 0 }, @@ -10948,7 +11592,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "7c7a980c38e44862a20b8d370770e2df", "version_major": 2, "version_minor": 0 }, @@ -10962,7 +11606,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "def4b308937543f8942312149cf7ee38", "version_major": 2, "version_minor": 0 }, @@ -10976,7 +11620,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "90857d8bd6ac4a349c3a3160febd1431", "version_major": 2, "version_minor": 0 }, @@ -10990,7 +11634,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "348a36a6e37a4a4a9c77ad5fbf609f3f", "version_major": 2, "version_minor": 0 }, @@ -11004,7 +11648,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "00987e9dca964db9b4c24a2db1c8cb2a", "version_major": 2, "version_minor": 0 }, @@ -11018,7 +11662,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "481106dffde44f51bd45bda751f64e22", "version_major": 2, "version_minor": 0 }, @@ -11032,7 +11676,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "2e8505f45fd54b418ad4c4d572f28bce", "version_major": 2, "version_minor": 0 }, @@ -11046,7 +11690,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "229edbda39554b909c2c8b34fd0234e1", "version_major": 2, "version_minor": 0 }, @@ -11060,7 +11704,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "963c93fda8c8480aa514aa5d90665cda", "version_major": 2, "version_minor": 0 }, @@ -11074,7 +11718,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "d9694d6cefc7493ebe585430f7f8a8a7", "version_major": 2, "version_minor": 0 }, @@ -11088,7 +11732,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "33ad19cb92444eb48b2e8f36e1bfe69e", "version_major": 2, "version_minor": 0 }, @@ -11102,7 +11746,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "ecddf788db7548e29069f6f1c6e97600", "version_major": 2, "version_minor": 0 }, @@ -11116,7 +11760,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "179d5dd2e8b84e7f82a1bf06494897b3", "version_major": 2, "version_minor": 0 }, @@ -11130,7 +11774,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "24ac534b8efc41c19ab5e41ab6c91a72", "version_major": 2, "version_minor": 0 }, @@ -11144,7 +11788,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "4cf4111144984e76b38bb6f5cb43d93d", "version_major": 2, "version_minor": 0 }, @@ -11158,7 +11802,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "f830b91b63f24ab3be85466aa1fe5427", "version_major": 2, "version_minor": 0 }, @@ -11172,7 +11816,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "", + "model_id": "09850396bc044f9b89e24f4da4a7f0f6", "version_major": 2, "version_minor": 0 }, @@ -11193,7 +11837,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e9c0c0840a4e4fe3bd9aa771a035ec2a", + "model_id": "19633f220ade46598d673a1b88547bf3", "version_major": 2, "version_minor": 0 }, @@ -11205,29 +11849,16 @@ "output_type": "display_data" }, { - "data": { - "text/html": [ - "
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n",
-       "┃   Runningstage.testing                               ┃\n",
-       "┃          metric                  DataLoader 0        ┃\n",
-       "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n",
-       "│         test_loss             0.5651810765266418     │\n",
-       "│          test_r2              0.4636155962944031     │\n",
-       "└───────────────────────────┴───────────────────────────┘\n",
-       "
\n" - ], - "text/plain": [ - "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n", - "┃\u001b[1m \u001b[0m\u001b[1m Runningstage.testing \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m┃\n", - "┃\u001b[1m \u001b[0m\u001b[1m metric \u001b[0m\u001b[1m \u001b[0m┃\u001b[1m \u001b[0m\u001b[1m DataLoader 0 \u001b[0m\u001b[1m \u001b[0m┃\n", - "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\n", - "│\u001b[36m \u001b[0m\u001b[36m test_loss \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.5651810765266418 \u001b[0m\u001b[35m \u001b[0m│\n", - "│\u001b[36m \u001b[0m\u001b[36m test_r2 \u001b[0m\u001b[36m \u001b[0m│\u001b[35m \u001b[0m\u001b[35m 0.4636155962944031 \u001b[0m\u001b[35m \u001b[0m│\n", - "└───────────────────────────┴───────────────────────────┘\n" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " Test metric DataLoader 0\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", + " test_loss 0.5651810765266418\n", + " test_r2 0.4636155962944031\n", + "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n" + ] }, { "data": { @@ -11262,8 +11893,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "main_language": "python", - "notebook_metadata_filter": "-all" + "formats": "Rmd,ipynb" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", @@ -11280,7 +11910,168135 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" + }, + "widgets": { + "application/vnd.jupyter.widget-state+json": { + "state": { + "0008428a0c4c48e6b5d70dadbac84f44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_831d29d6782e405a9f06b7a8e9a54e28", + "placeholder": "​", + "style": "IPY_MODEL_f5a4b572fccc4311be102b306c6a183e", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "0016c30eadbe49ababf5b92c7fcf2f2b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c02bbbb2ad634a5796658e5a0188d285", + "IPY_MODEL_665dfa23a0414effb1900bc11198ede4", + "IPY_MODEL_d151ed35a14d4efc845e9deb0357adc6" + ], + "layout": "IPY_MODEL_64b0a67f63834d2d816d50c8f2d65bfd", + "tabbable": null, + "tooltip": null + } + }, + "001ed5bfbd4f4ae3b62c00b3fe313f23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "002d1a0123114b9d87eec28698d55b02": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "002d409ab4574147a4d5ecf7c4821eb2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "004cec3ef55e47c1b99c3809e8e4e61e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "00584209bafb4a899ff1d950a2dc357f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4c3e9c08ff14482484690f647ff084e4", + "placeholder": "​", + "style": "IPY_MODEL_38370b7c9bb84be6a158c3b9052dfa0e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "00597d543e4245f1ae03a30af8feb66d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0076a9d3e25d433c8a126549ee5a0ce5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "007bb91580604959b400d72813d5da45": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "008de6f8b71f4c159f5646f67498ab6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "00903ac2ce064af5982276ec0d8cb90e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5799ec0211e84d29a7821e19b974450b", + "placeholder": "​", + "style": "IPY_MODEL_2ce4b2ce85a941f89255a1b1ba52150e", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 678.54it/s]" + } + }, + "0093612a496042719d67db8dad3d3ab3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "00987e9dca964db9b4c24a2db1c8cb2a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_33261ca476d8475094ee49c8c7a095ce", + "IPY_MODEL_73a20d7c6c5e449bb23ca46b626c0cf9", + "IPY_MODEL_99c2952d97994979bccee09e92924b2e" + ], + "layout": "IPY_MODEL_0b97af6049d34103bbb3b452d37eca08", + "tabbable": null, + "tooltip": null + } + }, + "00b1f0e3a1f94a85a4396b613e3f1623": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "00bf8343e26a4a47b436ff0f06677110": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_89db7a7e1f1c4fa6a327e4cee908de62", + "placeholder": "​", + "style": "IPY_MODEL_51c60c44778c4352acab75d052bcd2b9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "00cb869130a743aab15d1f118827588a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "00e31d72060947f0ad0b81aaf7681ee1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "00e456541eb746178f1d5c2848af6151": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "00e7dcd1790e43299925a609dd77bcca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "010a133e8eef45928d59947428063af8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "011c674e027b41de9c60cf891bf95283": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0c3420f5f6d54520bda9f42a3f17346e", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4dd5c8580c8742e88f0db2095b998386", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "01440a9ec3a94fbe9700e2fa2a56efe6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0145ba3ae2274d7686a7919ba6efd2e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "01497d57aa4b493ca15a1e29a1b55f74": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a39dede796b0439c8de3ee68cb97be01", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f8fc034bd9754457acf0747a77f476e6", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "014cffbecf454500818e0d4f4cd90e4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0166f7abc34f4a608471a357c5ed3ae6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "01771f5ed9ed4601bece6cb5baef817b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "01829f5f51d44629a8353312d625ffa5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0190ba495b614a40b14aa5a2072d5e6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ca0c728b6d14529b99795e6c03ec76a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_19091626bc7c4fde89e34e43c4e1a6aa", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "019534944fb444039a737655a6a57760": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_49356939697e403ebcb7aa3d5844f5db", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_40a651d95e934ab5978f88da16721b36", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "01a5a2c25bd141dc9d24386b7ef8eab5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "01a80ae4f4ad4c7fa8d14230b3f9f6c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "01acca08e682446b838ef146e893a5ca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "01b5f4673fd54452b957fba9dc7235b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1caa92f22a314f7a826a64bcb4467142", + "placeholder": "​", + "style": "IPY_MODEL_1adae4bc5fe24b0391c46d8645a75598", + "tabbable": null, + "tooltip": null, + "value": " 40/40 [00:00<00:00, 561.81it/s]" + } + }, + "01bfcbcb281448c490267b0366aba276": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9473c71db42c4ccca9143d8836db38ff", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_76fc8abb3a3e4855811ece183935a10e", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "01c49f8c6dcf430e89d0909f0d7104dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b2e91d3e97a643b58fad5e9dfa8f70a0", + "placeholder": "​", + "style": "IPY_MODEL_9b4fed2faf644c4fb2079113f4432c7d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.53it/s]" + } + }, + "01c4e3a4288245e5afebe743601dba02": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "01f83caee43d448e9a30100d94d95747": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "01fe6a57b1684ad189685f07f9dbf7f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f82173dbcf1e4f29a29e3b2201175e41", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3634268f09d34b8ba0780ebfd93835fa", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0205195bbcab4894bd6690fc0870d1ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f02915bc03f6487e96086a47a2af108d", + "placeholder": "​", + "style": "IPY_MODEL_3a6b182a4ff7420383bdea4de554dbd4", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "020fe03f2ead43068199bf2258045bb4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0210e3cd9b124e97b62b2e61141a4cdc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "021612a704f14323b7bee2c329960d3a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0228d530cff34442a86132b89e5b0f50": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0258a4433cd2405089967ca0806d33c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "025a26c204e7480984c48d15c4b95125": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0277ed8c1aa1493ebdb986ab1425e97e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0280e72e259341998480052010d59431": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "028c1a0f7567452fb42676aac9513cb0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_be22d99043a041b98135c66b9eb5596b", + "placeholder": "​", + "style": "IPY_MODEL_9b59ad88149944a98d4cfc21311092b2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "028d87bd2f944ad399401995f512723d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "029490b6d0ca415d959dc4f6920eb3b6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59300e455c224ade8d0a4f260e877c99", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_630e902429a84390949ca50d10ec1e67", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "029538f3323548769d9813c2bc017bce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f856d56a70524d94850d96fc80dcbaa9", + "placeholder": "​", + "style": "IPY_MODEL_2c2c885805f44e1ca85fc4419cb6c578", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "029c33a186b449508726b7219df14418": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_70f8e0174d4446b38d65ffe47e971367", + "placeholder": "​", + "style": "IPY_MODEL_7991a26897f74fc2a7dcf8f8eb5abd27", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "029fb74936844611a3c5a9933679438d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "02a78bea925e460a95604d1c8d4aba51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "02b3a165fe224d18bd48bf8e6f2bc777": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "02bdc545caa046fea46783f8e3a489c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "02bf54b6a5f545d9aed97b0cc7c0655e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "02c4f52ca3784311886f0616648ece3f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d092c6ad229d40418182bff478040280", + "IPY_MODEL_05b92d8f46ab42de9a66849aca4eeb84", + "IPY_MODEL_e05a582bd1ec418583994cc7a9055ce8" + ], + "layout": "IPY_MODEL_90419bd228b14fac9a75aa9480ae2733", + "tabbable": null, + "tooltip": null + } + }, + "02e339fd04d04b1cb37d4a0104ef40a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "02fce716f67c405696b8803e3d3e7aae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "02ff521d545e487cb728ef99f3533f8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0312f5d2a05d4ec285bce3e9dee5d05b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "03209c43e78d4527999263d010052e46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "032fcf91bd8d445bb7c561efca30b6b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8f5b4878600c4df293fae1b748b09908", + "placeholder": "​", + "style": "IPY_MODEL_8e09f9c7c76e4ac0bfd01f666eac19b2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "03582e00a4114d7b993246674f53ded8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "035bc54cb3ae4da5960f67bca3610ddd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "036ed722d25240d89cb81395f4e8686f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "03906eb6aec0463480daa5b1df9520ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0395df3427074a9fbff87e77e73b8437": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "039b73683a1c48e8a22b22f151460c2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_84bfbc520bf445aa8b732d8b0ed63b3c", + "placeholder": "​", + "style": "IPY_MODEL_92d08f220c374120997d93a0eaad6a8f", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 501.31it/s]" + } + }, + "039d80eec92a4d6aaac3c8275a98865d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "039eb58619a04a919785b454d4e75d97": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ed09453939784c90a18eeb9b218e79ee", + "IPY_MODEL_bbd1f22d73044a64ba10955010824276", + "IPY_MODEL_e6a3e649979f4043b8ee3bcd27ea9245" + ], + "layout": "IPY_MODEL_6aee9816d78c4b888de15ec834b39f61", + "tabbable": null, + "tooltip": null + } + }, + "03afbdf64d854be7bc903b893766793e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "03cbced2afaa402f897f5e6f9aaa65e3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "03cf5bc1d2d046e1bc750f8743edd045": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5b9065037a384ee480c230674a6bd852", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4651dbb92c3e41f0ac3f77948a475d5e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "03d934f5b9314a85aafbe01d315c0437": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "03ddcf9610e34719bdcbd90d849a3848": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "03e34bf93cb140e2b0a8a9325683a739": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "03e48354297f4ee4b1f4b98e2293d077": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "03ef513e556047e7b97ffed57050b52e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6e7b3357f8374010af22c4196080f727", + "placeholder": "​", + "style": "IPY_MODEL_d2743c162a48434088b420b1c4b878b0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0402131cc26c4c8fb4bb39c6fbe89e64": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4597917567bd4c3fbcda3599d02f35d7", + "placeholder": "​", + "style": "IPY_MODEL_b98fe66a49714572868c12d3114bbac4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0429bb18f2914ca0a6a381036310b218": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0435482b53cd4ec99e19ee0bd59a5d58": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "044b5c5b456340b08b562cdbd85fbca4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9737b9b366c642ba836875feb7d35222", + "placeholder": "​", + "style": "IPY_MODEL_798708740be24dc8b000b975287015b8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0459ae97166346329caa43805d2b1176": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "045a1d75fa724707a6091fc4bd8714f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b91d30eb54248a9a37d4db78a00394b", + "placeholder": "​", + "style": "IPY_MODEL_8d3bdb36bc924e9ab984488b73cb4e3d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0467b804427f408eb143c70d629b84e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0468b22a642a48cdb877bec15fcca541": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_76cffc769e5345fd958582381593ea61", + "IPY_MODEL_4fe0b3736a894a3dad12ea402235bcce", + "IPY_MODEL_753b5c5b53b1418cb40772b88ac5d0d3" + ], + "layout": "IPY_MODEL_8153bf2e17ce4c8a9eaf548b321b8dc2", + "tabbable": null, + "tooltip": null + } + }, + "047d35de61174080b5292838d343c965": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "048b2e40752b4414a92709c7b3b8bd00": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c5da6bc3631544aabc26a90664c9105b", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_abd0fc1b2ffa4ad88723dcb4bbef2010", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "04a7123f4b3140ba9a0dc9a27e0e0de2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "04b2258f588e442f87268d4eb17434ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_784570d524454a43b58bb300d5f9f7a5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8212a3cc032d4c9ba784d32fa8274845", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "04bf9b1fc9a8455dbab3032af38c5ac6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1bca7e00f94047a3a93bbfbb0082e9f1", + "placeholder": "​", + "style": "IPY_MODEL_81085358139c45fb8470a9b9992cc87c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 532.23it/s]" + } + }, + "04c38ca1dd6849b5bfccd0813de7c54a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "04ca9d47702e40ac9dddf69c0a5ad748": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "04d7237416944b4f9bb03eadbf2f0717": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "04da4e8a94b8485f9d4f5c355005935f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5cc395e427d545f19f8710c09f332ace", + "IPY_MODEL_c036e344e7f24f7da48b3eb961b08cfe", + "IPY_MODEL_1989e39bf2f64de0abd8e9aa739a9e7b" + ], + "layout": "IPY_MODEL_287f0673928e47b2b48bd1da693093df", + "tabbable": null, + "tooltip": null + } + }, + "04dda1d230f74d89a3ee7a5b5d98e726": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cd75de1311ee4f47bbab67ec7bc9f58a", + "IPY_MODEL_7eb56e2ce7684183a4a901f00e2e1b60", + "IPY_MODEL_9a6f4636a752479c90e13ba4b84b0ec3" + ], + "layout": "IPY_MODEL_2c9d07b081ce491c82995db719243d31", + "tabbable": null, + "tooltip": null + } + }, + "04fa15c591da426b853f10fb0f6039b8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0507cae6742746c5aa01d02781b49d83": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "050a72da1590473c889d96a23ab74f22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7085f18b311a444dad809a11cbb292cd", + "placeholder": "​", + "style": "IPY_MODEL_47739c3a4ed743c9b47e3e108c44bad5", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 5.33it/s]" + } + }, + "05147be19f7f4f50afd1d6ad01a46aa1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c35d490bb7fa4db58f22ac0a3d02104e", + "placeholder": "​", + "style": "IPY_MODEL_ee9a81e795594b498f7f85aacbdf7b1e", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1089.34it/s]" + } + }, + "05180a7a19b54221968828aae7ff4e00": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_81e2e91005ec4fddbd2a6a35d0010579", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bc19242a43fb49eb9062d01ff455b822", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "053695cd863f46cdb627c7da26a771ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "053b833a9d5145cc9d813a5c06c1c793": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bcc49348b572446f941bcc5874e9c2fc", + "IPY_MODEL_ecacc241ffa843c299eee02dcb942cba", + "IPY_MODEL_61e935cf2f504e569bb206e15e9234bb" + ], + "layout": "IPY_MODEL_0fab1038b9ca4c0ca0b8f1eb135fea42", + "tabbable": null, + "tooltip": null + } + }, + "053df76bc61b446fac79c2df7ccc3099": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a95bd76ddce48bca5695210d4487f9c", + "placeholder": "​", + "style": "IPY_MODEL_d52220e4a6604a9aa69f98bbe5d660cc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "054992b359394488beecfea585705755": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "054abbe52104430cbcf86e1d814bdfd4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0c2abbd154549e4966d5955f0e2cb91", + "placeholder": "​", + "style": "IPY_MODEL_abccfd94e44e43659aee441f2ca540e6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "05716b1163b34b6cad922e94883db0bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0ed990043c464538837b03a9d0f64d98", + "IPY_MODEL_9d4a053ce1ee4dd695fcc7ba46f924ff", + "IPY_MODEL_4f88464dfad94e2cb70f293b081ab203" + ], + "layout": "IPY_MODEL_809158c3a8ab4a5786ecdbdfd5a74c49", + "tabbable": null, + "tooltip": null + } + }, + "057536dbbbc049f48635dc339afbe196": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "058f545200134cddb98ab49116a4b5b6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_753cdb9cc1864b34a050a7fb0db7bfe7", + "IPY_MODEL_db500cf76a1042848bdd21ed86101741", + "IPY_MODEL_5e7ed3761fca4ed9914d166aabfe7080" + ], + "layout": "IPY_MODEL_36ca674ae1424458b93e9ab4e03adaab", + "tabbable": null, + "tooltip": null + } + }, + "059ef5d196a745758dac962fe0909b02": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "05a5fea83d0748d092b493fe9ca2d852": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "05b92d8f46ab42de9a66849aca4eeb84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_63e1227ae2e746dcbe5620dc841349aa", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6b229e2b97e341cda6086d41b669e0b7", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "05bd892a53ce454ebacd2d950481e05b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "05cb51ac41224059b3877cb683d2c929": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "05cc7d17519247d4bed8d0260fd8c9c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b49ffd23b11e4a90b5c9aed988204dae", + "IPY_MODEL_442dbc266ba6419096c050982d7f5751", + "IPY_MODEL_796ddefdc85c4574a23d4c9bc97c0f22" + ], + "layout": "IPY_MODEL_5473fdc8bb5746bcae2f64d834cd6bc4", + "tabbable": null, + "tooltip": null + } + }, + "05d858db917f4fa3b3b3e59bf9a4800f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "05d8f3a38cb5462fbb7bc196e2fc91ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "05e0c6c024ae48b391c7bab34e93f84c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "05e53170eb5f49599edc0b554c77d1b5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_518684a686194bbaa520f673c575594b", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_84f835fdbf4a47bebef130db31ca9abc", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "05e622ca2aab4d1893523554b067bba4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "05ed2a6e31b7406c86ef3e8ecf256ab3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "05ef8e809b104a59ac1d227b08576d23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "05f7cf31540249eba2ad43142b42951a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0601da5f773b46e887739171edf194cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "06145fcbe21a4637858623354adc8e4c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "061eb20317fb42fa971246c2532590f4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d366d43483654d8fa676d7c1af18b342", + "placeholder": "​", + "style": "IPY_MODEL_119a2d1e43cc4909873de1a6867a7dc7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "06212c691bbf4b719f948ce0ef3e2fb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_73b5fd1007aa4b0cb7bb7d08d3c17aad", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_76cf13fdea3f40a28a863d5233731dc0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "062c7abb036e44919abc2c10e44225e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "063695dad311441ebcfa6408148a54f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5c12355c51a64058a1eeb56a7d27fa96", + "IPY_MODEL_a3480cc440f84450987b0f961ef4be35", + "IPY_MODEL_66cac9a7383a4ea3a51327cc4a617011" + ], + "layout": "IPY_MODEL_73ab40d13fd54b3eb2ced8e08444f82a", + "tabbable": null, + "tooltip": null + } + }, + "0636f4e424c14e3ba969424969fd4c6c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "06384915c48b455da8989d21d1030f82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1a8c4c54d2b541f0bfd628b0e2f732b1", + "placeholder": "​", + "style": "IPY_MODEL_9afa012856d8462886a75e952b3d7617", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0646bdea4aec482aa8a8a25ad0ee96c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_526e237aa4194233a81d4f3c8eb917df", + "placeholder": "​", + "style": "IPY_MODEL_cc87cbc0be3241a0afe73b005a71e124", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 952.02it/s]" + } + }, + "0653ad8e28814160a01770889ef72836": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5df0d252124e4302aacf3ea324ca01e5", + "placeholder": "​", + "style": "IPY_MODEL_9f2ab6d805ef4f0db52ee13ef1f5b660", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "065778144a5c4d96bbff30b38c662dd2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "06686ccf9eea46a498c78fc6ed739fc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7326cfebee474a9894244abcc49f62d1", + "IPY_MODEL_b000563500eb4988aaf2cb4497e41435", + "IPY_MODEL_3ff4863f4fb84e1cb2aa195544c45975" + ], + "layout": "IPY_MODEL_b3a7fb65ac2c4bd596c8e0a50f887883", + "tabbable": null, + "tooltip": null + } + }, + "0669997e19f5451886e03b41412cb43d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0670fd987d934ae891d189e37ac4e371": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4c7ca0163d2740d68211cdb1fa24d2c4", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4aec8b38395f431a870538213beca1f4", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "06725d04c6b14139bb012327ed357d8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a4e17276e48843088c576654c0f3e099", + "placeholder": "​", + "style": "IPY_MODEL_a51b96dc6d4749428f0c8527af80c883", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 517.18it/s]" + } + }, + "06772c47a56043e2b738b66bba624565": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "069c0aee8c3a442cbd5d1597b33a757f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "06b402a8615d4abda1d14094c939baf8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "06ee2f237ba04517abd23a452312dea3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_044b5c5b456340b08b562cdbd85fbca4", + "IPY_MODEL_835ba159bd8844168cc2159a9aff9e76", + "IPY_MODEL_6b92ee1b2d09494d9c8f9f9e4f3be246" + ], + "layout": "IPY_MODEL_b310a7deb2c74befa984634a6fb8ded1", + "tabbable": null, + "tooltip": null + } + }, + "06f7fe8de4404606a09f54bd4c143c03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_07ec7556bd9c4b088b50c89983e4ce0e", + "placeholder": "​", + "style": "IPY_MODEL_072da4ac432b42b791301542838b5c54", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 538.92it/s]" + } + }, + "06f9009e2280472fbccc718a20e930ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4bdbac4dffff489c8c40083131f197c0", + "placeholder": "​", + "style": "IPY_MODEL_683efc8c4867488592eb9541f4081df9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0701a7c656b4442c8f1c6fec0fffdf73": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0702a2c4a6cc43d5964c5e48d39bf971": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0709a74744b24305b321bf1b766e4a42": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "070e3174e2f34195a060b23521a75556": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6cfbda3fc4564ca6a8e678dbad152a7c", + "placeholder": "​", + "style": "IPY_MODEL_55399d774a304ba0b47a123d38d643e4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "07183c80eebd415fad79999117744385": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "071b24457d4c4ced899131c950d7ad09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "071e96e58c094a859219e90487bccf26": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "072da4ac432b42b791301542838b5c54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "07314a42a8be46be9ed5d5ae9caef04e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0737f72afc204dae8890f4b6f9f1804e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "074551e0afdd4bc1b42c9d71f5f8a7d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0749fd473fa641f180928e77bee2db50": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3dcd12c7b8c945b4be2c4f97f01395d7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7cdfa10727174451be575b992ff27e87", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0756ae79668746f094c2db0a4121780f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "076c4db637af46f7bae49987386f83a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_309bcb823ac54d5c929909619de23b41", + "placeholder": "​", + "style": "IPY_MODEL_021612a704f14323b7bee2c329960d3a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 406.54it/s]" + } + }, + "077790461d6a43db8c785be6c6f2f71b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_239010d6e40f456b8c980cee02e7723d", + "IPY_MODEL_c0b06c546bf84f3b8dc646bcfa40f705", + "IPY_MODEL_a82f5d0972a04aac900cc7dc1fc805f8" + ], + "layout": "IPY_MODEL_8593490a582047709aa57b543d1c9023", + "tabbable": null, + "tooltip": null + } + }, + "077cd01442064e34966f2e4970d986ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0793ba3ec9474a2ab18e7080249a3d4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "079476ba1baa4046b9905dec5cd5a503": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "07bc20e1107248948af10684b984207a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4a72aedb4c5e4366a20fd3477f28f1b5", + "placeholder": "​", + "style": "IPY_MODEL_199244c988a94c849459feba90de0319", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "07d90c62482d4d3db11bca5564311de6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "07e022ba9ac74331aa7f333679038051": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "07e945c3ac93466ba6b35f5ddb7171ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "07ec7556bd9c4b088b50c89983e4ce0e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "07fcabccd9674009bfbbc3fa56b4f28f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "080bf20e60984b84ba18c108b338ae33": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8692d67232cb46939bf75dbab9c89972", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9f6a516f227c44dbabb6b83840631904", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "081e3021531141e48f1cde90a2e60671": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_fbc47f657b714787bb14c44433ce8580", + "IPY_MODEL_37ad355f405a41b5a631926c31eec043", + "IPY_MODEL_f65d19882445413da8f20ad21f64a440" + ], + "layout": "IPY_MODEL_4765abebc97544e7ba2c5b6469b40807", + "tabbable": null, + "tooltip": null + } + }, + "082b72a78183446c89919af911a74fc5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3704169f7e94e1fa5c94497637762e4", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b0573e081de7452090be621f711a659c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "083df138646841a8829a90310a7474ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "085a6c772bde4ff98639f728f8e86455": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_21fa1ef06a60475e83c21bfe11b6fac7", + "IPY_MODEL_c05379f7dffb4c08961f53a04a2c1b43", + "IPY_MODEL_b806f8367c4846a29cd0e626181e811f" + ], + "layout": "IPY_MODEL_f5ae33f3ab7c46b2897446bd2b40f3e5", + "tabbable": null, + "tooltip": null + } + }, + "087244a19a7e466ca495e9e79fec3457": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0878b4250bd44ac9831c0dd57c5ea20a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0890264c02444b91aae6e0d591901415": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "08921b0a8e8347c2a8cab20a8e5cef43": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8456dcd0d7b9480a88cf4f888dfa6ce8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2e191ba765824bdab604d68bdb5b57a4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "089616a1f0d8404fbf57a32f69a3f780": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0899b7df751743ccae01c8e6208dfee8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "089b0dd228c341fcb5606ca2a7b12e15": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "08ae8f9728e4423ba794446ed3a1f6f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "08b47dc6f83f49238ba0f01e552503d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "08c556ce8400431593011a6d32aef294": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6aebfed07c2e46cfa293145c0b1d8ed2", + "placeholder": "​", + "style": "IPY_MODEL_db04dae293cf43ebbb6e87606793c7e9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "08d16fe49da241658fe60709e4b9bdfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "08e16c84d03243bb90867987c32be5ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "08e3f6efb48449e3afe08c9adbcb211c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "08ee4984317546c399b83f143443cddf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "090579a1138441cf9380fe3b4c79ab3d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0906994019d84323b2a859cc27274620": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0916fd2ef9054f278968f4b080a017c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23cd573d77e44e64a2afd682c3624d97", + "placeholder": "​", + "style": "IPY_MODEL_e622da1ebf314c5b89aa86d9cb821a3c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 634.23it/s]" + } + }, + "0921535b20e14430a3052658df5f1d66": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0929bcf9aafb412dbba2699ea71a5a48": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7496bbc19d554ecd8c2b16f3c22cd424", + "placeholder": "​", + "style": "IPY_MODEL_cb2dc561a81344e1a64e975be181361e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 378.57it/s]" + } + }, + "092f69c462284acfa5c41f6f68b95a08": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "093f7a8ce1b44a9cb9deb56a6d98e330": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "094629da086d427abcd184426016a230": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "094d2ea284014183bac25cd67154ee4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4cedda60195548d287b0ead8962fe545", + "placeholder": "​", + "style": "IPY_MODEL_f020fbd99d56456aa7598e6c9655a735", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "09580681587f45a7b588887eca68ff2f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "09673204104f4b0ba1866fb13098f9c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c2de20e5a8b14849b934a104b23c2419", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_62680ab2a35145979d22f2ef079cd3fb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "09697239de6849e198edd79634cfcb74": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "096ca919992c4f8eb7ad59cefc5d0b30": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0973c4b48d194877949fb1b7c774da1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_962790e87566478f98d5081b9f2fbd3a", + "IPY_MODEL_5a9183e2273c4b18a0507d7e740be55f", + "IPY_MODEL_7b76756858714090a4195f0c937e5d07" + ], + "layout": "IPY_MODEL_5921b188a7744758a37d2f859b6a607a", + "tabbable": null, + "tooltip": null + } + }, + "0977426f25b44379911da8fef0ba6de4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0984ca944941484e93e601290273e964": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5f04b369194d44bdb00982869171a4ee", + "IPY_MODEL_ad4d6afd28e64f9290fd32d50c08d80d", + "IPY_MODEL_56da9786a417471bb3b8bbf9b9c1f7eb" + ], + "layout": "IPY_MODEL_9ccdb189187b4b05843a0d80db52d2ee", + "tabbable": null, + "tooltip": null + } + }, + "09850396bc044f9b89e24f4da4a7f0f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7800f2b6b0234d4cb2a42046d2976d1f", + "IPY_MODEL_8ab4558240ed43c4857845037dfdf864", + "IPY_MODEL_9251f963e35545be9e7743b5dd3e3974" + ], + "layout": "IPY_MODEL_c803ba64a1e64f8fab05d6de95ba2742", + "tabbable": null, + "tooltip": null + } + }, + "09851dd68bcf4e6ab76d9276adf02339": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0997394806dc4ecb81422bd4a056944f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "099d5a8d51464af082b2927a1689a617": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d10b558264d04830a915d1446dede4d7", + "placeholder": "​", + "style": "IPY_MODEL_f0e7f35a869d4a0a94d2a7e44da093b1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "09b7912fd39f43d7bfdbe5b43534f958": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "09bdeb9289c6444080c9aec7721834e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_91b45a74a59c4120b78b890243990083", + "placeholder": "​", + "style": "IPY_MODEL_422ac819b0f547abad02f4ecb26bdd04", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "09c3a1147fb24dc19c5059aed1fd443f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "09d96489cf274ca6b1887aad8679c311": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "09e213804b1241ed8ded621d4c197211": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "09fc9cca4adf4a3098eecc669b8ae4ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "09fd8d108d384f8a81c39661d780d169": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bcaf57cb355943eea8d3bab98537b15f", + "IPY_MODEL_1bb6afe783ae44148e97c6667fc8882b", + "IPY_MODEL_4927d19d1f4241b2b02eedb77c4d1a78" + ], + "layout": "IPY_MODEL_319584ba14b348628d4c02e6872c322e", + "tabbable": null, + "tooltip": null + } + }, + "0a0ec6b9d5014c2bbb47df85e272bb8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0a196f40a7864503bca013d914afd5fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dc51225200ea4c86894d86b02c69a060", + "placeholder": "​", + "style": "IPY_MODEL_bc42053ed1d34f048c1516be3612e159", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0a1afbddc1204cd8ab8f12cf0c40f808": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0a3bf61aac394a71a7354e72f4e1fe9a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0a46cdb4c1b3476f9a6805a44088fed3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_57cc7d4c061b4b1bb2f64f022483c801", + "IPY_MODEL_6b02933978cb4b3589fedde08ae1b520", + "IPY_MODEL_893235b6a8a14357bdb372f547450d29" + ], + "layout": "IPY_MODEL_87c4dea1e1cb49cd8405fbbe49ee837b", + "tabbable": null, + "tooltip": null + } + }, + "0a4c0c07425842afa1e5381d5a0f71be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0a623ba1eca144968b5c23087851f436": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4b554d39d4584c838a989c7df6944a2c", + "placeholder": "​", + "style": "IPY_MODEL_062c7abb036e44919abc2c10e44225e3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0a64b3d12b4d4dc3ae53b73f8e9907d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0a82005008d245e3969d7cd4cd65ba74": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0a84710a8bf84b319a2b2e72bf2e9fdc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0aa08a78daf14466968215719e471fbe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_df223b1945a54d6fb0f156f085cf998a", + "placeholder": "​", + "style": "IPY_MODEL_b7b14883b441456c9bfd3355c27b9720", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 519.82it/s]" + } + }, + "0aab3abc4c8547cd8d18e70b673ef516": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0aae87e8411a450ab06bf6a183e11d9b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0ab937d124b74cc1a61036c8cd4417cc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0ac4cea1d60b4f79bc3b45b07c38ade8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_185849c1453a40649452281c171db99f", + "IPY_MODEL_5041a553b6cf4f1b950a32f9120edbea", + "IPY_MODEL_f8cde3f34525496c88961f1631a266e6" + ], + "layout": "IPY_MODEL_1149ea92af6f41b2ad4e901ffeb9e8ca", + "tabbable": null, + "tooltip": null + } + }, + "0ace6ea4618c45a880aa9836feaaa596": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ad04a891d5d4d7b8606d7ea063b887e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0d60039c4ba04e94b2b3945a47c85463", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_69d6a8f2dcf246d68b701a220b04bec3", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0ad8e7474ebf4b7494bf6df0a3c9b939": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0737f72afc204dae8890f4b6f9f1804e", + "placeholder": "​", + "style": "IPY_MODEL_82620adbdcd64fa192a67fdc19a71f93", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0ae3b8c0baf04d1fa8156f43558ee9d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0ae46e6375eb48d0b959881e423a2793": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0ae76a3225e44f07b03f260fd88e02f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_af85eec72c1d49b0bc80ee8d48193f2e", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6c1a9365c34d45a0a5207b355e67a50c", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "0af290cfb7094c79bfd2e7f8365acf36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1bbd9b39dd3b4b0ea97cf321c889bdc9", + "IPY_MODEL_c4a2e01d30bd43d9baebb3a5d2fd8dc9", + "IPY_MODEL_c5e80dca6a13474f89a242536eb9a1ab" + ], + "layout": "IPY_MODEL_a1f745e6e47c487b9b019f65deab8f6b", + "tabbable": null, + "tooltip": null + } + }, + "0af30b215570490d8397e96f7e67e169": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_db55affc2aa042099688dd3241c331ac", + "IPY_MODEL_4a7582e7bdd84ba49bbd573f49d77bd5", + "IPY_MODEL_9abda2a572cc4cb0b63afeefd69e0ab4" + ], + "layout": "IPY_MODEL_8b8dbd9b9f5545a99a2006242c829473", + "tabbable": null, + "tooltip": null + } + }, + "0b0544163989426286d824c09f6f839b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_495d484fa73941feb4bdfb18086e3dfd", + "IPY_MODEL_a8290f801571431f990f63ec21acee9c", + "IPY_MODEL_7052ba98d4ea4bcb859035db58a88b88" + ], + "layout": "IPY_MODEL_79203fac042a4e6db3602486c2492376", + "tabbable": null, + "tooltip": null + } + }, + "0b061d8284184b319db03a5f65a3bba3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0b1b0ffb46fe4719a52d077bb941d1cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dd35d8b3269f44caaf9775ea1350632e", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ed0e9be7136649cab5856df521aa4193", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "0b2284c6249645fca1fcd5872c33b7a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0b26bdbd1e9c4b42b42748c5610691ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0b32fff0934642ce832b992cd5a49805": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0b347369d0bf46e484ece090826328f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_806e44019f074e95b02040fa8b9ee1b0", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_caad616a66644153800e5ade86774e12", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0b614f7018a048a9bb971fbfa1a508eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0b62b2433d524ff9b4b5314a384f110b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0b783665bdbc488b8b363fac3e853621": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0b97af6049d34103bbb3b452d37eca08": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0bd46523415e435ca1e97f3a5a9dd853": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0bd88428b3c142e3b4fbb709b25e80b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c0646e5c74148b5ae397b46f1f99664": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0c0d41c4fa8e448fa8ea8ced3b58e2af": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c1e2c96410d4f86a8c41334ac5d52ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0c29171ea7d8495eb219d290d1c3b02a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c3420f5f6d54520bda9f42a3f17346e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c42baad0f584a8881eb1b9625b96ade": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c54618e5405413a91c1ab3a22a9eb7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_916b824b7842449896c226cc121b3d97", + "placeholder": "​", + "style": "IPY_MODEL_90aecb2f460f423cbbba5075eca49aec", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0c5da085a65341a298e5db321219b46f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0c618ac6b95548a9af4a07a9a6156aed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1e04715c914f4dc1a99f0713a8d7922e", + "IPY_MODEL_dcfa82a7c355444d92a5677b8cb1b1fd", + "IPY_MODEL_20d08a801666481cbb5df281bc61f45a" + ], + "layout": "IPY_MODEL_d3a223f392c84299a4674f88a6fb5527", + "tabbable": null, + "tooltip": null + } + }, + "0c63227372b846a29b9f8196c4c21f2a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0c6c13116e6d4713ab821a850eb1c81f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fdb5d614f1174348a88b7a670f21510a", + "placeholder": "​", + "style": "IPY_MODEL_53871bf81734463e973736d84e9617b0", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.79it/s]" + } + }, + "0c7cd112432348f486d99001f0b7cd80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7c53b0d9a2f4481697f5e2143a8c7579", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f203a5afb1814218b49bf7fe11b2d287", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0c8fa4bf11bc406ca04772133304a80b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2d33ee2be0d840babea64276403e3053", + "IPY_MODEL_ecd8a8d382d140b2b797d69bf551492d", + "IPY_MODEL_c39c0dd0683f41bf8686fd8b3d728a7e" + ], + "layout": "IPY_MODEL_76bff136ef1547ce9f6f228326dbba5f", + "tabbable": null, + "tooltip": null + } + }, + "0ca0c728b6d14529b99795e6c03ec76a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0ca7a95b6f3647ce9ff328c70e25f6ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0cde7d1f26234e0ab22ac6b5a43f9c7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ce2eee173e94d6abef77515a0645f9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ce72496a4f845fdb3a25512e0615243": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ce77a46797a41029de40bf8cab3a76d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e33f4f645d10448b94970ccdad5961ba", + "placeholder": "​", + "style": "IPY_MODEL_d6127d0efc3748b588fef3e70d18ea4f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 348.94it/s]" + } + }, + "0ce9a0b2bdbc4e7baf058c6b690cdfb6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0cfe30500a5e451cbdbb374c5588deaf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d022f84189a4ed0ba5a26b6bb6fafe3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d1f83dd1592436fb181ed00f1e3bf40": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b9b66db386cb41cfb1cd64312098fc39", + "placeholder": "​", + "style": "IPY_MODEL_a8e516128e7f4a2fa36f75b561fc9c31", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0d23b1967cfb439eaf23fd1c7d80aa58": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8ac028dd7c5d40cb947f31d2c5bbde76", + "IPY_MODEL_c6596f7cedaa4d8cb0728c21b9dc6cd6", + "IPY_MODEL_de55243872c44022b8846096b793cfed" + ], + "layout": "IPY_MODEL_638cb13aa5de48c7b825dc991a007453", + "tabbable": null, + "tooltip": null + } + }, + "0d276403a3d14eb19674511e677523b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d2db4144ec943e1a7a4cf8f7a798647": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0d3c0e74cd704b14bc4edeffc59ac92f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0d41009181074ffcbc2b81fd23a5e486": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b31e31434237492f931cf3f4c8b2cd38", + "IPY_MODEL_2076303a23d94aeebc1866bfa67f8c3d", + "IPY_MODEL_dd528757b0d14826b426795cae5a10d1" + ], + "layout": "IPY_MODEL_f543a321d7a24d1cab731b3d8777155f", + "tabbable": null, + "tooltip": null + } + }, + "0d60039c4ba04e94b2b3945a47c85463": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d63f1231e794aee8f202c87ab228f01": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d732d2567c94f27bf16e5a03da2c43a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0d7884937cd2402aa7d97aa8c9629be4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0d812fb1f87143eb9543113ac80cffa0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0d93d074468e4a1b803748668c236bcd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0d97409ac14543f98724925ae4ac188f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0da09c6842444c0da7ba3db3004b26ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0dabc833eebf4822867006b5561ce7a7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0dad34cf246c4c7097e376288b042752": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0dc61718a07f4ea9817bcbadc946ecc3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e617aa4ded834c2d98f4594c2d71f3eb", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_783d9f20ee234e10a8661c821fe85a58", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0ddbb45215e64e31b5765c07f3071fe9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0de4d14856db46f1a2bbb7776f579642": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0deb514a74f749a8b67156a77e3b7dbb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0def8383637045ddbc68b280dadc025c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e00c61702fe412397b35171c0736098": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e094eebefae4b7782660b9036fa2a5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0d276403a3d14eb19674511e677523b5", + "placeholder": "​", + "style": "IPY_MODEL_37936aa444e94944af7afad87bb0669f", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 208.61it/s]" + } + }, + "0e0af5d3d96449a4a6f4abdac52d413e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0e11c3824c1049ae977bf3bc233e7400": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0e13329af9f948238f401eae70fe9eb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0e29675d2d15419ca2f41f88d8e86021": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1d995668ad714d98841f0df544942f94", + "placeholder": "​", + "style": "IPY_MODEL_efd5fd4aaa8547f5b7a439f26f0bb11b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 374.32it/s]" + } + }, + "0e2d8b17d37b4c1c945f405e9cb2353b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59cbc6071063458880b538af2ea9e543", + "placeholder": "​", + "style": "IPY_MODEL_35750473f38b4157bb53b354f15ec639", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0e31a106652a4d97bcaa03c8bb92d0a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a286d82e7e0c468a832fe291f631df7e", + "IPY_MODEL_383f2bc74e4746b88b5660a305ef9337", + "IPY_MODEL_6fedc0ad925e421ca10376a678473125" + ], + "layout": "IPY_MODEL_1d22701dee5a4281b09a4f9716fbd7e9", + "tabbable": null, + "tooltip": null + } + }, + "0e3644372f484ea9b6be5ea5cad232c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0e3de4d0269241f6852dfa48b984e819": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0e433b5ff9ce4caf82d49c494c0e2bf3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e4861ec8ec0487cad926e40995a16d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e77bf1e995c45efbb58f7875b3923d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e7e0a8ffd844489b486e43a450dcdb3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d09ec98abbb540dda5f787cdcaa59096", + "placeholder": "​", + "style": "IPY_MODEL_f5e79b3ef811404aa6697b14eb6c67be", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 394.48it/s]" + } + }, + "0e82a6fde7d5496a935687d978af8f4d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0e8d2e56f48e427f8433339dc3f8b7d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ea89c62803c45508647e1fad1937206": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a0b3a96f81cb41be8bab427137a03f66", + "placeholder": "​", + "style": "IPY_MODEL_584bd59fc882430ea193462cd7ae1eea", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 736.39it/s]" + } + }, + "0eb97fd63a00424f90193a0006e21f35": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ec2b3d092f6481b895407c33bc9d2f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2ff62d42e0ff49e9b7f9d9b8fa398187", + "placeholder": "​", + "style": "IPY_MODEL_8041db5bf4f045ffb2daa1eba65c7733", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0ec6733a38834f448ceb2fb4133fb283": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ec6734f91364e10bec261171c43d1d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ec6df35ce4f4c8c84a589a12580e8f4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0ed990043c464538837b03a9d0f64d98": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b025f70774254b02a840cef7d5dbb519", + "placeholder": "​", + "style": "IPY_MODEL_40255b7ec9e7472f9af688365129f68f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0f04bb0d4c4b4cdfb04eb2df10c959cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0f0e1e04e5e24f5b8245be969b3fd692": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f176a2c555f4bfd9e8be774c08f054a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0f1c35d659504133be0b1062f1e0bac1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0f1db306481741febfbcf230b86d262c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0f1ea833192b4afba66457555302b11c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f1f1d9eb76d43e4bc8eaf1a31e3d89c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0f27985d38bc463db8cd1eeb3541ab73": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c59bda451ad14e22a9ea64ba97ee0e6c", + "placeholder": "​", + "style": "IPY_MODEL_289c6082a35a4043bf9a0c9ec93bc8e7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0f2de4386249499aa863bfca3fd67098": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0f3535ccd2c7473da4be43f5d766cd0d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f3a5db2fc80487cbdf435489e3dde7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_70730f1757744379be05e94b7a50ea08", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a481965f528c44d1aaa3d04f2f60e453", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "0f3c689f666d40d3962f118f67109ec2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_27a9273bab8347d7a3309f7304450e7c", + "placeholder": "​", + "style": "IPY_MODEL_9808da88ef194fac8ea3f0b3a4b605a6", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 773.23it/s]" + } + }, + "0f58bd49624747b29c9e5a96aee06262": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f5d53548fdd4a83b510a141a0e5d1f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_939ac2555b2445aeaa64d811bea9d0a0", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3a6cc30c5607455790cafadeee6ca02a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0f622c7b506f4468bab7feaa436bd152": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "0f6bbf84bd484d758e6d758be0c562d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0f6dfcf2d45149b89eff8f8ac4dd2458": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f6f07a46fcc46abbbcc9dffdbe732c4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0f75285100914185b8124d5d03d17dfe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f76074f805348cb9e84cca08ff1b2f0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0f8f2b08a20845199ed0758ac6337cfb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f8c879bc50ca4b42b3701f4a2157ca29", + "placeholder": "​", + "style": "IPY_MODEL_e259c892449a4f559c5003a97c8b0566", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 537.28it/s]" + } + }, + "0f99022216fa4c67a8f11d844608da3e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0f9c057e81f54fa7a00a55f87fd15bad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0fa37978b8f64a96bed5a9a548b05c5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0fab1038b9ca4c0ca0b8f1eb135fea42": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "0fabd6f4b94841269899eeb40ce9b6df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4e553c99ace4fb486c23178007d4f2d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1d42b5bd9f9448ce97d276b2984d5018", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "0fcff9a1587f4cc8879a44797b3597aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0feb9879f6b64a9387c6051ff5a5ef4c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "0fef1008b21e4bdbb8064c84a2800c6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "0ffb05dd196d48f19230fbfe7d33b68a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3dcd242109e144d7b500aecfc28987f6", + "placeholder": "​", + "style": "IPY_MODEL_855da357641641debaa6e387c0a21b47", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "0ffbb0a802484b2ba27f52e3e2ab9d08": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1009fede830f4c60a606f5ddf95ee118": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "100cea0b4ad342f29846a218c463f55d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "103c9caf34bf48afa2428bde4d7d8b5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "10673b1295a5469dacb1bbe1496582e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1e9301c90f934dcf8aea89f65dc04321", + "placeholder": "​", + "style": "IPY_MODEL_1390353f6f0c483e9837c83a7fdadda5", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.46it/s]" + } + }, + "1083217e256241909c738347f7ede8a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "10bc5b936e404960badada559a510b26": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "10c11779e52149a8a4b8f1aa66745a9e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed634f0913434ba6a1cf6080fe663188", + "placeholder": "​", + "style": "IPY_MODEL_b4097b378ba040438723763ea426126e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "10c21e600539445aab5c84fc6dfbf177": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a9b67cc7d06f4ab0a5a5be19fb28f0c5", + "IPY_MODEL_aa16362bb4fa484aa4aac42d2dd80e42", + "IPY_MODEL_63acc5fa9da64a398e6d18f925f96bd5" + ], + "layout": "IPY_MODEL_f62b445a7ec44427a159d932fe20a9d7", + "tabbable": null, + "tooltip": null + } + }, + "10c69fd4c76a43bd9b331d67c6203e73": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "10d90e94a1cb48cda4fa0ef82d7f6362": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "10e2a944739e4170a7fa9dc580235148": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a4823d045974499e9f037311e226adfd", + "placeholder": "​", + "style": "IPY_MODEL_ef64f5794d524e31b516cbf57f4fc05e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1105b2712dba48ef871bf04a7f18fe59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2021c40aa11943a0a3b62fab50cd4823", + "IPY_MODEL_082b72a78183446c89919af911a74fc5", + "IPY_MODEL_3bdb5ca050a848618b0966a9240d4c74" + ], + "layout": "IPY_MODEL_6b32451c766f493099cf87076747b3e8", + "tabbable": null, + "tooltip": null + } + }, + "11095f13657147dd84f0901883b6deee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c5e62ef036ba491497ca22be3b1072a1", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ec00296dc71547eead71a2aa5e742d86", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1121e4e9fc494b208e8955e354da84b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_271528a99050441b88b6ad8e96ad49a7", + "IPY_MODEL_b9edf481486346648ccce2ee26429112", + "IPY_MODEL_0ce77a46797a41029de40bf8cab3a76d" + ], + "layout": "IPY_MODEL_1fb098f087a84b3fbda408c8192f0d75", + "tabbable": null, + "tooltip": null + } + }, + "1149ea92af6f41b2ad4e901ffeb9e8ca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "11829c6266c34b16bcf2bc14770ec616": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_25f8dcee284f43a298bb5af3586f7256", + "IPY_MODEL_876fe8a3d09544aab227104e53e85f00", + "IPY_MODEL_0916fd2ef9054f278968f4b080a017c1" + ], + "layout": "IPY_MODEL_5ffd9b88dcc8462c9fecd8f87c0807b3", + "tabbable": null, + "tooltip": null + } + }, + "1193398513e84ea7b093e88972d226a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23191890ccc144138859909cb9f1ec37", + "placeholder": "​", + "style": "IPY_MODEL_f26f087b8d7a47129ec116b2ad826be3", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.82it/s]" + } + }, + "119346cc89bd4b7d9a97d019993d5bb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "11956932bd8b48cc9aaca1e686afa3f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c223a39f85fc4256b165b1a33d078b70", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_002d1a0123114b9d87eec28698d55b02", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "119848ba1c1a4c1297c3c2066d9a743b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "119a2d1e43cc4909873de1a6867a7dc7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "11b202437a514f85a76823198526b78b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "11c809d48e6d42bba7c0d6d9edf06087": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_348ec1142a854f70a2b82906cb440a61", + "placeholder": "​", + "style": "IPY_MODEL_d2d128b0c0804c2db93941614dcf51b7", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.25it/s]" + } + }, + "11e4dc1684af43b892da8f30a1a32d2a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "11eabcc6699d4e3b997ff97e4f3bce68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3f03e43bfaf41088d29e8dcf2d63a51", + "placeholder": "​", + "style": "IPY_MODEL_73aab1d17e3a4b5da42e95943cc9db9d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "11ee154c0d3d4927a7aa41f7f576dbd3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2ebf94420cee4bf09a23f57ff4a64836", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d7f040482c424a7183cb0dbed32abdfe", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "11feddf9f696466f9780a34c5efe260d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "12056b595c6748c0b3b5c8a180a24c5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_943d6e0805d34d7c9be66cbe50d787b0", + "placeholder": "​", + "style": "IPY_MODEL_5f29d1d96b4d4ec798cd0868372ac526", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "12159193294842879e2abf2a6a57542c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_338f72aee3ea4cf380e3db029b924904", + "IPY_MODEL_7ee4e4d9ff5741e8af75dd4eb598d0c3", + "IPY_MODEL_1d7eeacd63074ec0b1c7b4f9caca80a8" + ], + "layout": "IPY_MODEL_4053e76f0cbe4bbc93a1c0972b961a8c", + "tabbable": null, + "tooltip": null + } + }, + "1216ea6accf545b9994bb678dcd813f2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1228dc50059d477c985e9b36d4549502": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1232f30e41a041d38fe7f3e2e7e42dda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "123334a5cb50490ab8dfeb82340d235c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "123d59eb82854e1dbd6a930da90ce8cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1281ec7e7733422cb6c97b417031d925": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fd89a456c9df4b23977e4e712399805a", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_593fcd23df0d43a69af4d7bb63a850f0", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "12b1d8ed5cb84477ade0220d7469be08": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_25e335de96194ac99a8561874eda4a85", + "placeholder": "​", + "style": "IPY_MODEL_c64a39778c074f2e815f91d7f1e870ec", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "12b65e066a0d429b9feedb9b7736bce9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "12cdf3dbde244322abc1215577a9fa2f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "12d3248201b64ce896bc4f25b5c83227": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "12e0088b8c044a6481429089780610df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "12e6cdc82c1b47a09f4958bb88aaed9c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1308dade434d430f99882936db6349dd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1313ad2a9c18470ba1c9cd5a5907a69b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1b15489fe3a040578fc32266d07cf973", + "placeholder": "​", + "style": "IPY_MODEL_d8f03bebdfaa457ab763303e2e4bc806", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "131c47feba5d46a48678bb7e3773fa7a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fd47f7832a3d4793b285265e5f2c6473", + "placeholder": "​", + "style": "IPY_MODEL_14df766761184f0289440a574b8a5cd8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "13224578e9824f0bb9e638077bf0faf8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8fae262f574a4544a3dd1553a9f0c6f7", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4800b824a6b64af5a1cccfeecd6dc57e", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "13273e83374d4bbc8ceb608e69ec76df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_08e3f6efb48449e3afe08c9adbcb211c", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d53f7bda228d48e5aac93a394cf27b7a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "134b722a55d845b28dfb570927ea129b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1350f24061264a8dba50d53352724a16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e6727d01974f47b9bdeea8e358041342", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dd89dcccf2eb4535970ce8e1c225c687", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1372d0fa72ac4f3b9df25d95772d277a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_87c8b532e10148e1b341886c8f751880", + "placeholder": "​", + "style": "IPY_MODEL_bcf18544ad2d4d3f9237bc1c76381743", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "137452fdaba24243b7b6741038017a47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1375d6c108e64f938209d70cac1afaa5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e671a77deb124c88a0a0d98f2c6f53f5", + "IPY_MODEL_f9bb7d06ac59443c854523b580ca2e4b", + "IPY_MODEL_89fc6da235ef4f6a8bb93a80464c2886" + ], + "layout": "IPY_MODEL_0e0af5d3d96449a4a6f4abdac52d413e", + "tabbable": null, + "tooltip": null + } + }, + "137a4927bced465c842faec9726ef278": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "137f764c9fd946a5a873f46c7c2007fd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1390353f6f0c483e9837c83a7fdadda5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "13928056c29346079a8405d6a4a00f6d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_56e8e604b8424fc2bd87a5ffbbedbf3d", + "placeholder": "​", + "style": "IPY_MODEL_a42ee57f445f484f944b8e766236e30e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "13a08366c86f4c8ca19ddd8668200c2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8280777b706346f0b755d4127fd03376", + "placeholder": "​", + "style": "IPY_MODEL_1a2774204c0c49dd9b90825f07531ba3", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 66.41it/s]" + } + }, + "13aea5c58b904280818c569dace7fe24": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_36b0d8d508864e418a3b63ff0f74f9cf", + "placeholder": "​", + "style": "IPY_MODEL_f965a2b4c07b4601bad8ed66a3761b23", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1151.12it/s]" + } + }, + "13b72a8cb85c4d07a4461faee204368e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b5dd18c305c94704942beaac2e3998aa", + "placeholder": "​", + "style": "IPY_MODEL_8c9af19c88714e828da6baa53762f5f6", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1134.21it/s]" + } + }, + "13c285c6471046cbac5ff81f93657c26": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2c7c9e3bc3044f5bb4d7089e2a15f67c", + "IPY_MODEL_08921b0a8e8347c2a8cab20a8e5cef43", + "IPY_MODEL_10673b1295a5469dacb1bbe1496582e9" + ], + "layout": "IPY_MODEL_77f66b2d01864d219ac5412129098de7", + "tabbable": null, + "tooltip": null + } + }, + "13cbd387d2344418bc13470f66458aa4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_91096c3df74a4389850274a2bd81f04d", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_59a15e2979e04ce5b12ad0d6a9a2d87f", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "13d2e09282464ad68aaef9b8ae4db24b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "13deb3ecf7c449d596cb3124f440eb7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ca7a95b6f3647ce9ff328c70e25f6ff", + "placeholder": "​", + "style": "IPY_MODEL_4461f0920c504033884ded604bfb0b04", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 371.96it/s]" + } + }, + "13df1ac621cf4016bc32e033aceda028": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "13f09f8d0e334fd6870adbb414a39de4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1425bf0ac9f34c8a9b8857d7e920a481": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "14453db639fa4134969987d5f1e6c5de": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "14555186e3c545e484a93c17e99a0ce4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "146c69cb04ba4337ad44eeacf6bc9c82": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "147c99d30c564a85ad42412d92d4007c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "149174a193694eba88cbce388ef36552": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0bd46523415e435ca1e97f3a5a9dd853", + "placeholder": "​", + "style": "IPY_MODEL_4a1719ebdef1493a9e30edc82c482525", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 648.99it/s]" + } + }, + "14c4804e068f42a282fa1334bb4b0756": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fc25bad722fc461b856d691ef5c61180", + "placeholder": "​", + "style": "IPY_MODEL_8d2ec7e20ac5450a8ac29f96ba880da6", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 673.43it/s]" + } + }, + "14cebe8a7d7a4ee990ab1dda4f7d3bee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c90fb1074d61496cac6bc440eb88eb56", + "placeholder": "​", + "style": "IPY_MODEL_a426da4b528645fbafce9a9d5a3e5a7f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 353.71it/s]" + } + }, + "14d201feee3841fd9d8a6db3aa02b436": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "14da40498a8249dd96f868ffcdca2d4f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "14df766761184f0289440a574b8a5cd8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "14e999762b88440e8d5694ee4daf08ea": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "14f3a2dd95f549a6bef5ccff56efc464": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "14f3e15952fc44209d11a8e45a248cfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ff845db394454f44991d796ff1f9c966", + "placeholder": "​", + "style": "IPY_MODEL_0e8d2e56f48e427f8433339dc3f8b7d0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 378.34it/s]" + } + }, + "14f86049632c402eba7c4d617ff4b1e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fb6072d95f504abeaa5ca6b9c7eadf38", + "placeholder": "​", + "style": "IPY_MODEL_2d6f248fa8a64851acf894b437113de8", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 627.43it/s]" + } + }, + "150428aad7064182845f34ac99497c35": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "150df772fdeb468c8ae3dd482aba37d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_70221c4c6ce74f50bcae74a4c2bf216e", + "IPY_MODEL_36050c7e93f64c9cab6e8e40ba0c13a0", + "IPY_MODEL_b5bc5844b266495185e7e788a1fba337" + ], + "layout": "IPY_MODEL_b46ead57da9646829ac19f4b41858d14", + "tabbable": null, + "tooltip": null + } + }, + "151749764b424b2e89e895c563edeb60": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1533565239a74701823302f09bf1bc44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2b4f351d26e645788d331f93fddc6fc4", + "IPY_MODEL_3c88f9930094444d8a84e97e2deaa5a5", + "IPY_MODEL_abf5be15ac4745d88cbc66222ec9f4c0" + ], + "layout": "IPY_MODEL_c7d942ad2d7c447eb68fead583666038", + "tabbable": null, + "tooltip": null + } + }, + "15435cab2dad4d6087e28e4bd73b34b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1db1acc7974a4144a27c64f1c6a87c54", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ea274a2abcb84b5a933fc08401a8bd62", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1547d590dc054e1c97172a19683c6140": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "154e4193673b4512807a64f0f55f99fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_713ccd7e3bc648b9bdc038a92701acf3", + "placeholder": "​", + "style": "IPY_MODEL_a9aa89154bb94a6e9693d31e04060bd9", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 219.54it/s]" + } + }, + "155223107da644d2b0f7e8d7345de660": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8521b296077d4f0c90128299742073f6", + "IPY_MODEL_048b2e40752b4414a92709c7b3b8bd00", + "IPY_MODEL_352368e7488b47eeb9d1457d77be177d" + ], + "layout": "IPY_MODEL_04fa15c591da426b853f10fb0f6039b8", + "tabbable": null, + "tooltip": null + } + }, + "1552cf6756ac4354b1fd7a8d3e178e62": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "15698022ece14ae1adbe26df6fde1e4f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "158aa4085cd14f2990794a7b92a94488": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_276185d1cf6448bcbd82532463c33cea", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ead5060dbee04062b50e26a99bfc4405", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "15a49d779c644cbeaa47bc0f81f76c06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "15aada9145a44c6d9d06024a38c96537": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "15b067839128413daa5ddfd4b485f7f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "15b7ebf1599040a1bfca52c839f40854": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_49b5491ef17d40abad081abd79549375", + "placeholder": "​", + "style": "IPY_MODEL_37e0647cee4b48e9bce202e3151de4f8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "15cc8b62b0994cc1a3a5cd9b270b19db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ffc780f296934b64bc6e5eecef18d2fd", + "placeholder": "​", + "style": "IPY_MODEL_a8a0b0980f9042c6805364cb1215fcd0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "15dae8e026f34c5481f7224e2ef64df5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_17e3ca42ffc643f38b24a8c0edd9390c", + "placeholder": "​", + "style": "IPY_MODEL_08ee4984317546c399b83f143443cddf", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 116.69it/s]" + } + }, + "15e06a1768f94f8ea7c0bda5ac7e7ca6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "15ea108a77a345de9b1fa38b0312eaea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0a5e90a15a4456296867f37825438c2", + "placeholder": "​", + "style": "IPY_MODEL_2d2765f5e7e643549a317da83a3c5d9e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.71it/s]" + } + }, + "160c8720833d46e9ab60fcd053b33757": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "160d66f46e0b437eab87f9702063d4b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "160d6938017c49b0af2108e617650458": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b7334c61a97f491c8d33a81bfd776696", + "IPY_MODEL_6c08d29ef66c493aaaa0c581eb502bfb", + "IPY_MODEL_688fa0153ab447b8ab1ab9675c43236e" + ], + "layout": "IPY_MODEL_588a4bf9c56348aa87e0e5282e931e84", + "tabbable": null, + "tooltip": null + } + }, + "1615ae33936b4bfd9634c6bb3ac39471": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_df93be9d775740aba34b73613920b8b6", + "IPY_MODEL_e3b2b463a5ca409eaabe57d7caaeba45", + "IPY_MODEL_9393be0bef004e01af2e76c4c885aec8" + ], + "layout": "IPY_MODEL_93c03aa26fa54f7aa4cbb9c30bedeec9", + "tabbable": null, + "tooltip": null + } + }, + "161a3af371ca4d60a28dcafe05d27e64": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_457abf8b2df1455692b6e90a006087ce", + "IPY_MODEL_af0df5e73ecd443094c3b4113e3b52f8", + "IPY_MODEL_f3dd6500133e4cc4a8f878868cad66be" + ], + "layout": "IPY_MODEL_4999feffd6744b6a87b2ab330fcd29ff", + "tabbable": null, + "tooltip": null + } + }, + "161ffeaa3498406ca7ea3c09992a4154": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "165dd371d1dc40b588b9d2e33243f36e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "165f9e7d02d74a9abd39d610bf8b49a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e646a6865de64c42a102113602313e49", + "placeholder": "​", + "style": "IPY_MODEL_45a6b496f36042b5a97bfe31b68adc4b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1663105c320346669a78ba703fe74a2a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_20cc0c0c7ec84a8aaba78ab23eb61266", + "placeholder": "​", + "style": "IPY_MODEL_10c69fd4c76a43bd9b331d67c6203e73", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 214.74it/s]" + } + }, + "1671eacd7d0d415c84a3e9e7263e6749": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1675f109b56a4e5aa7feec66f01b04d9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1688eb97372f4be8a65d44b7d1fc333f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "16999896e0f449c0ae2e8ec9bd03798a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "16a11c05d2664987949d1d2c87afa4a3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "16a44bfe9b6f4149a02960bb9405629b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "16b0db1638f54adf8281e1c86d9551d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "16c963aeaddd450a9cc7c3177d947acf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "16cbaaf336a7468aa6b7c92ad3d54e10": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "16e2825c973340859191fd2192d7f5bd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "170aa9e0a58c449f97cc5d210cba04a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f86f209cb32046c6acdf8313322922ff", + "IPY_MODEL_726258b83f834e4aafbc45b39d54d837", + "IPY_MODEL_b907cbe0a1b64451b0780ecfb927e337" + ], + "layout": "IPY_MODEL_2b11cd1e98e44229b32557c876493870", + "tabbable": null, + "tooltip": null + } + }, + "1712480b73264ad9864a18e4b411cc28": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "172bb876b90e40618f2fd85213998180": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "173a8d64f4ae455784c2bf6c98cfa2bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_029fb74936844611a3c5a9933679438d", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fcfa7799d6384d998b5b040da875c0e1", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "175c85ab03b949bdb33d11b2791ca2d0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1770f0c48af140ada4000d5261c466c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_62cb9c9c61c24c4d8c253add47abe320", + "placeholder": "​", + "style": "IPY_MODEL_1c24fb8920ed4c2bad2a1b44387edb3a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1777e0d35d514704a945118c5cf2e49b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1783da7ef1f84feba8051346dc4f8311": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1789925bd7b9442dba905d3ee45549c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe73038d82e74999b9cfd622a6c9de0c", + "placeholder": "​", + "style": "IPY_MODEL_87d554acb8844e6ab5ad5ea5c521eea0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "17899437e9ca4bc083c5fe8faffe832e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2d13cd83ded244478e03a4bb806d0adc", + "placeholder": "​", + "style": "IPY_MODEL_ca6b7ef95fc44d5e88e3db591ddbb3c9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "17924754bcbf48f180c80c5a4efdb553": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "179d5dd2e8b84e7f82a1bf06494897b3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5252d560c12b4fa389629b66797e1bed", + "IPY_MODEL_f6ac6433311541c188942048bc81b9f2", + "IPY_MODEL_dc283597e93448dd89d225e4f3b69275" + ], + "layout": "IPY_MODEL_25d9740883e34d55937d7d94542a7ca5", + "tabbable": null, + "tooltip": null + } + }, + "17a7adebae4845888e50ceeadfef620b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "17a8b72972c14c5697634e1b66d61614": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "17ab9b08ccc846ceadb636aec2ac605d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "17b8b942009b463daa853e760856fe1c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6702f8a725634397bd1155714379e9de", + "placeholder": "​", + "style": "IPY_MODEL_4ba0987be0b3401eb24973f599c6b52c", + "tabbable": null, + "tooltip": null, + "value": " 6/6 [00:00<00:00, 103.80it/s, v_num=43]" + } + }, + "17e3ca42ffc643f38b24a8c0edd9390c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1803b2d0ff62441d9bce40218b6693ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b889c417a1f54e31a848dda9cf690e2c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b2ddb5a4869e4a6e9b31a3ad71b2df99", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "18050ac655af49d7ab7b0c82476492da": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3dee09cd49d8472a828f2945ddd3d7cf", + "IPY_MODEL_babbf786a8804e7ea85407946951c084", + "IPY_MODEL_dd9eda3bd83e4c56aef86b481f9b9a27" + ], + "layout": "IPY_MODEL_15e06a1768f94f8ea7c0bda5ac7e7ca6", + "tabbable": null, + "tooltip": null + } + }, + "182a77b420e14e2fb8802de605315de8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1830baa0e4544873992eda467ed2bca6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3dc0f9cd4644e0bba4cb6ed052bb43d", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_59af76d5f2df4a88b6c9b8cf625743ad", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "1832a09a7d804b549f345384c9d5c86c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b993e3e2a545409895349810cb90e213", + "placeholder": "​", + "style": "IPY_MODEL_4c48ce65f2624134a4fd0364d0461650", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 371.38it/s]" + } + }, + "1835eb9fa98743a9ac344d20c2ed5594": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9ce87caa08154de1a2beac2932019d36", + "IPY_MODEL_5184cccb1dfb44aea551d959773add61", + "IPY_MODEL_4aff2ad857b846339a349d6c49f65b24" + ], + "layout": "IPY_MODEL_0ae46e6375eb48d0b959881e423a2793", + "tabbable": null, + "tooltip": null + } + }, + "183f441a68a241aaba40f622ab647fcf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "18491301d5d249afa64e55a0393568ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0277ed8c1aa1493ebdb986ab1425e97e", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_059ef5d196a745758dac962fe0909b02", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "184fd0680a8547a1ad2ce64277a80953": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_15b7ebf1599040a1bfca52c839f40854", + "IPY_MODEL_be08f0677da0446182579b047c1b865f", + "IPY_MODEL_f9a17ff551d54d929e03a85096410fc5" + ], + "layout": "IPY_MODEL_81c4eac21ab742e283101c6842611664", + "tabbable": null, + "tooltip": null + } + }, + "1850e8f5f47c48c2b0c3bd382cad60c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "185849c1453a40649452281c171db99f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a596f3b3d4ec46dfb81d4185875ab9b1", + "placeholder": "​", + "style": "IPY_MODEL_40c696057422486595247d4cf08df588", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "185abaf86e02479db4e8517d35d23dbc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9450e8fb4d894c79b451975ed6f16751", + "placeholder": "​", + "style": "IPY_MODEL_35e122e6c58e473d8d923bb4191e6e79", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 222.26it/s]" + } + }, + "185d7a0b9ff443199c9af56f8f832616": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ff63d6a54beb409b9f6a321d517e7b54", + "placeholder": "​", + "style": "IPY_MODEL_bc72f226868f464280e5cc84c415e810", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1874dc9b8484420bbe9948a019533326": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6d89fc9d347841139c61b6c9f07be63a", + "placeholder": "​", + "style": "IPY_MODEL_e6cc7503bc6349cc93b819c5a9c39fb9", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1038.45it/s]" + } + }, + "18a31aba978d4a8692111fb6c55fe85d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_53374944d5944581a1ff4de7378a897d", + "IPY_MODEL_4574cd5208884e7fbf98774836841b31", + "IPY_MODEL_35cd24cbe3544c128f2bab3155a510ac" + ], + "layout": "IPY_MODEL_1f8ea12ab6704571946e74a0678c5757", + "tabbable": null, + "tooltip": null + } + }, + "18b03eaf95e24b9c8596940881e02342": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "18d97b18ea0942cc91fb6ee2bf7ef114": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0c42baad0f584a8881eb1b9625b96ade", + "placeholder": "​", + "style": "IPY_MODEL_1e91a319f1af412c8285e8b7f064b34c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "18d9a2b1ae9b4ba99c28ac052ccd410a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_caf7b36b411b402abe084cb9efc576cd", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0d97409ac14543f98724925ae4ac188f", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "18de34ab71a542a2ae4b12b4230295a5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "18e1c7771ffd44a9918c1bd2cf493582": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "18e4efa9701f4a42a344c333407dfc82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "18eb9604ce7c49419bf612c5643c5fc0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "18f224d1865c4538a4d059e7161f4934": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e66e168b5afc460db666a612f099ab96", + "placeholder": "​", + "style": "IPY_MODEL_a4fd9712a8324365b8f2a017c818eca7", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 214.83it/s]" + } + }, + "190186205dae47dcb64f8fedcbbcf6eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "19091626bc7c4fde89e34e43c4e1a6aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1917d7474fa14bcdafc033753b11393f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d759f41d126a40b69108fab2bbcd895f", + "placeholder": "​", + "style": "IPY_MODEL_eab3834b5adc4815b92c51a7dd5be8d6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1920b482c01e4399935706a1edeae099": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "195a908857754b0c9ded924a66bd04ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "195b8f3e76d74bf1af4e5fe5a6342134": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_713357c21df1458388a4347baee1febe", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_25902320c53146348118b5226e41fd8d", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "19633f220ade46598d673a1b88547bf3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_44fe9c2b2a454a3cb0f607a9ea102307", + "IPY_MODEL_b062a4dbb1634fc3ba9ba7969606cc2e", + "IPY_MODEL_bb60a15cf0564eceb5d88403bcb4ba6b" + ], + "layout": "IPY_MODEL_303091ebb7a64f02b73358fc2d448490", + "tabbable": null, + "tooltip": null + } + }, + "196d04239ba740ff875420ebe2f75b6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "198364d18a394ea187e0ad771a495543": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1989e39bf2f64de0abd8e9aa739a9e7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b23ca1a19ceb4933ab5759f1ab379864", + "placeholder": "​", + "style": "IPY_MODEL_37623b14ea9a4506a869a5678342633e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 356.22it/s]" + } + }, + "199244c988a94c849459feba90de0319": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "19a925adefba402e826cd12f014b8cf9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "19ad6853fd3c4048ae681c7495e47837": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "19dc7d5a212049c89e58d87ac9f507cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c4cce5027e4348dab124aba31257755f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_332d9b7903b843d4a4a03d952e8fbb42", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "19efd87c4a634815aead4f3eb192e516": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "19f360e0e66449a4a39b91263c14a626": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1a00df014ff34fd5ac67dd0bc7d8970d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1a014869a5ea4b7fad4295fb2774276f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1a0c635e4099401d9e3e42dbb49b9ba4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1a14cedaefc648ac8dc4ca50517daa4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1a18871f189b4ee5b9132a64b8283f05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_29224d6b9415479989765e82d1908960", + "IPY_MODEL_e99813322ede4a629e6af281e3418408", + "IPY_MODEL_eb6d1084a2794f5aa9b9e4b1d297964d" + ], + "layout": "IPY_MODEL_15698022ece14ae1adbe26df6fde1e4f", + "tabbable": null, + "tooltip": null + } + }, + "1a21bfd2c54c417788dc885e2017004d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4b182e5aba25475caed51c081b16731a", + "placeholder": "​", + "style": "IPY_MODEL_4e4a29fba10f4f348467ff4eff4f6b29", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1a2774204c0c49dd9b90825f07531ba3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1a40cfacd52846c3bed8b50665dbee1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1a61a4d5b3f64c85b9d36656ab359beb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_edfb3f9aaf914d4ba89c118bc3b837c8", + "IPY_MODEL_f2faff7478f34e3082b89853e13537be", + "IPY_MODEL_a231112e104c43e9a04ce30571dbb5f1" + ], + "layout": "IPY_MODEL_e13bebf04b4f4dee877d1eeb8995f9d0", + "tabbable": null, + "tooltip": null + } + }, + "1a88d9bd559e4667b29c455e80ed0aed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1a8c4c54d2b541f0bfd628b0e2f732b1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1a94e649c7634d648599aa33b0c7496b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6bbc36d3790e48e6b22a3ddf49cd5b9f", + "max": 77.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ba59ff3d2eac41afa9597dd4257e73ec", + "tabbable": null, + "tooltip": null, + "value": 77.0 + } + }, + "1aa0e7c3c57040c895da35e9a5ce797a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1aa2b4c7f5f0419abd9eb0a7ab0d314c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1ac2b630376c4051b7d7c4caee5b3936": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1ac780aaf8af42f1bba1245f82584b81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1acaa46097774353ad57629ee5c11531": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3cee6ef20b1441929684d2e2e2209d52", + "placeholder": "​", + "style": "IPY_MODEL_8645db0318084da0998cad0a97d7a9be", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 74.05it/s]" + } + }, + "1adae4bc5fe24b0391c46d8645a75598": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1b15489fe3a040578fc32266d07cf973": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1b1ff9b9fa1a47e091ce32163f54c20d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1b4149bdf6844a25809093ff9d127249": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1b6729dded3e4b88bf2e88ed55c27ec5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1b821ead6aaf462a84771c26373d10be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4cba2d31c0a74456a0fd89f2c8861f61", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1308dade434d430f99882936db6349dd", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "1b996fea0f4e428e880e7ff7b74acf64": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1b9debd79c5c41c3a641dab79df39295": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1ba6ee667c1a40bca78fe8fd9e474b6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1ba8c5fa29df430d9ee961785ae5a304": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1bb6afe783ae44148e97c6667fc8882b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7aa64f8361484f908dbb6bbbc18f08e6", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c934c5fc9ff24e01ae9f2fc5700885c2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1bbd9b39dd3b4b0ea97cf321c889bdc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ae85ddf3561e45a899fe8c163b875121", + "placeholder": "​", + "style": "IPY_MODEL_cb76283a458146c1a3b1ea093b662513", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1bca7e00f94047a3a93bbfbb0082e9f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1bce2d648032437987c976643d489ba4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_973279a050514ebe91d0fdcab8851540", + "IPY_MODEL_4c367d85c799490bb9ef7c2768e6ecdd", + "IPY_MODEL_ae0fe44373c2465787b7e79c3c8d70f8" + ], + "layout": "IPY_MODEL_7490ed2c47814d598bc0a4d6ea37e2e9", + "tabbable": null, + "tooltip": null + } + }, + "1be86ea8f9924bf48b6ff46cf58906ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1bff8ed148a54b3e87b4bd2dd81eeeaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_554f8e8636ca4ea398c95715d110001e", + "placeholder": "​", + "style": "IPY_MODEL_f73cf5097faa44188f0d101a072d02eb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1c24fb8920ed4c2bad2a1b44387edb3a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1c36d8721fe24ed3ad5f9e15de3d12a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1c3cad4584894797bdb3e5b40631f48e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1c3e6960b5c54046b6be867f8ebc6f41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1c45e15921ba44c0998a4ad73b1239b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39da565ec2514708b2ec451e941a4667", + "placeholder": "​", + "style": "IPY_MODEL_7548c68472a74ce789029cc0256d5ebd", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 498.68it/s]" + } + }, + "1c46c42158af4e87a31dbd1861119e66": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_82e3050581d0431b9c46ee73c5633e88", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_33d89d25d91f405d8a56d0f22bf2c9d4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1c5f764fa1134481a4f297ceb0b99eb8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1c677428b29045b696bbb8aee709450a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1c680d2823d94835b9299c0dc9a1ff7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b4887e91f654fbd826a886e28b2097b", + "placeholder": "​", + "style": "IPY_MODEL_2137c7340266490ab8490e4089a0bf72", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 767.50it/s]" + } + }, + "1c7917f68a634cd4b65f22efc7615f6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1c8c828fa20646dea4082175935a5361": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a5e6ece39c674a17819f8252a1e60b4b", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c67ff364b9494e0393c940759504e11a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "1c992f3d614d467ebd58e02a64e7b928": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1ca31e005bc047e3b142035224d24512": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1caa92f22a314f7a826a64bcb4467142": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1cb2ef792e7246e78aca5c23ad00754c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e8ee959cd6774006926e39292719541e", + "IPY_MODEL_280a72161e6c46059e708e8a3b7a5688", + "IPY_MODEL_2f156fa42a164952af4bfb8febb58543" + ], + "layout": "IPY_MODEL_65b4d4c2f50d4b868824a91b36a45949", + "tabbable": null, + "tooltip": null + } + }, + "1cdce3511c7e45c6bff15c3e8196e1ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1cdf7cc6807140c8b7df04da6cd1c889": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1ce3f48501a048c5bb6e1e553c5bf987": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1d0bc5f812d7474d8c1b627e84c1bb94": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1d18c86360cd4e32b69f20bb667f41ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3e21998fd1d14f5ca50e167382018e59", + "IPY_MODEL_ad2135ed075749a7902b55c82d850b6e", + "IPY_MODEL_6662db61bb9c41e28ead146aa7318a67" + ], + "layout": "IPY_MODEL_60841704bb4e44bf9a48a7ab0151e386", + "tabbable": null, + "tooltip": null + } + }, + "1d1f6f3304b947118a833d58c18d0001": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4a65e55d9b094a6b92c1494673aa9f03", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9f304c4d197c44de87c946e97edc2caf", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "1d22701dee5a4281b09a4f9716fbd7e9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1d29cb6b005a458a94953864686ac7f0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1d42b5bd9f9448ce97d276b2984d5018": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1d56723f93e2461a882e8beab523f4be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1d5fe3903f0146b6ab7a7a0f22d6bfaa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1d6311abdef24ef8b6773881c3c4c4ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1d6cc50b276d4adb8ca5b06871612f6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1d76920646204d8b954506393879cc9b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1d7b0299e7c846d291eec3daafbcfb8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_44dabf4bcba5435e85f213a372bd3b11", + "placeholder": "​", + "style": "IPY_MODEL_e21a34a1272b4a44a01b03f5e0038355", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1d7eeacd63074ec0b1c7b4f9caca80a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6cf4b6f2bec645ab81c995d82f7cca8a", + "placeholder": "​", + "style": "IPY_MODEL_25124ccf91894cb08fa1fd84b7750b54", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 222.78it/s]" + } + }, + "1d858fd02095412896b145728b219bbb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1d98ebf2b1bf43299ae95e759ed34269": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_87659841cdbb43fb9ebdcc6120785c8b", + "IPY_MODEL_80091681ff774a49abd1e3a3289c6818", + "IPY_MODEL_f198823a7dd64b3994b1ec412345d6f0" + ], + "layout": "IPY_MODEL_3fb68e94307b4ea1afb069d6ee063103", + "tabbable": null, + "tooltip": null + } + }, + "1d995668ad714d98841f0df544942f94": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1db1acc7974a4144a27c64f1c6a87c54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1dba00137e6e45298249c139036017ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1dc05a281f004ce99a1e441bb17ab745": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1dc1fada227343c5a2238475e5720a4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ae24b89d004644c8ad8487e7d3e00beb", + "placeholder": "​", + "style": "IPY_MODEL_4682f3e8a3384a9daed27a8ac45242d8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1de3cea7ae37450f996f061160f75ac0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1dfa13d9878a4cf6b77483c08505788b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c14d771c2b0741c481186baf83173816", + "IPY_MODEL_9f38e4f1c730475c8f980bd3ce850cec", + "IPY_MODEL_3b2f344341c348c688a7082667e6ee6f" + ], + "layout": "IPY_MODEL_0f6f07a46fcc46abbbcc9dffdbe732c4", + "tabbable": null, + "tooltip": null + } + }, + "1e0058a444e348ae81fc619a3e022683": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1e04715c914f4dc1a99f0713a8d7922e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a5856937296c45d4b8ff15c4f3d6ba18", + "placeholder": "​", + "style": "IPY_MODEL_8fff3f8e0d0b4174a4512d06c61d7268", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1e317f4367254bdd9e4174d320164642": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1e4f66f7a14d45c695f0ce182e8dee51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1e53342c8d06440697fb7d09b907cfb7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1e555ab24a4e46dea55d0ee129625180": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1e684d42d8f64387b48905a8ed4e0421": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_95ca65bc2f05462f8bf9cdc4f301a49d", + "placeholder": "​", + "style": "IPY_MODEL_f38ca6c231a84667bc201f60a74081de", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1e6d650b4bdd415b9df6e199b33ec1ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1e78747580af48c9bfab3c2ac8bdf2f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1e91a319f1af412c8285e8b7f064b34c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1e9301c90f934dcf8aea89f65dc04321": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1eb68b4d2129419eba6ea2d91ded25a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1ecb329931844b47b9b767b3c80b5e32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_75c4704cee0f4c6a8ecad3a40b8574c1", + "IPY_MODEL_d2975763645c497f8a073b2cd6bcd4c4", + "IPY_MODEL_6c33bba2e5aa4dc6bf5a6e87fa6ee44a" + ], + "layout": "IPY_MODEL_07e022ba9ac74331aa7f333679038051", + "tabbable": null, + "tooltip": null + } + }, + "1ede920a2e7b49ea8a71ad72f3f7bc02": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1eef9df671e94b67890ede5030438b50": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1f17683fcec34704b3fe3759c50bab81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_408563b4437b449b852959a2cfd3899e", + "placeholder": "​", + "style": "IPY_MODEL_089616a1f0d8404fbf57a32f69a3f780", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1f3a56b9514d4c3a9ecd5388c9bc5273": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1f3f5613ff664b3c9de24b5619486d20": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1f450fcaea7d4bdaa508a230fdab1599": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_53e95c8699d240b3b42be68d5d0be040", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_26e5e7d88dcb422eba4a52c6d739bea0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1f5315a07853423880805359520dc4d3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1f54b8f794fc4dcfb96097012c28bc93": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5d95b2b9e14e4648bba94d454627c7d1", + "placeholder": "​", + "style": "IPY_MODEL_0f99022216fa4c67a8f11d844608da3e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1f58758ce8ef421e950f2ecf669c49d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1f66dc7d41134ba0b3f4e12036ef70d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1f8ea12ab6704571946e74a0678c5757": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1f999710205142a5abb3406da4a1c425": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1f9eceb02a5c4a2c94523f63cec0fdbe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1fa572651d0b42feaaee2cbc07f11e6b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8c74132d57ea48f2bbd406cc16c2a76e", + "placeholder": "​", + "style": "IPY_MODEL_1d56723f93e2461a882e8beab523f4be", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 399.84it/s]" + } + }, + "1fa8a9e792a64af3bf45114c188ebd51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e05247925c2e4748bcff7198ec431994", + "placeholder": "​", + "style": "IPY_MODEL_81a62eca313141bf9bdeeff14542051a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "1facdb61ff8a49729dcedeed3cf31a0c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6391b3efda454af283f459d0d7eccc92", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2f65a926fb50406ab3793c680d454810", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "1facfb664338491d9432da5f74b81d7a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "1fad0f1b04e74f8085cc85bc72b16002": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1fadff3f3f084f9caeabf44aaf1796c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1fb098f087a84b3fbda408c8192f0d75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "1fb3de208eff49858a7c85de6e396429": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_27d645adb4514686a973a23085ef2e31", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a18943a7492d499c97ef63135f78dace", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "1fd9417afaaf423fb91abd1bc89e082c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6ac25eccef6c496299b44ef22800844c", + "IPY_MODEL_babc9e2bc3ae457d8118041ace1fbac8", + "IPY_MODEL_6abe49839fc54f898227ed77c93e993d" + ], + "layout": "IPY_MODEL_8f5f708ff9ea4a82bc2c2b1979d7fada", + "tabbable": null, + "tooltip": null + } + }, + "1fe6f1688a82458ca7dba483c4a54572": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9c8e38ec75f84cdd993199c5ae144917", + "placeholder": "​", + "style": "IPY_MODEL_f8366b25a8d04cbe8a1c6dadca68e71d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 371.70it/s]" + } + }, + "1fee168ab9364b22a81dd9c7bc5f7054": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f30615cfb8a94a27a1f02d00f55e34fb", + "placeholder": "​", + "style": "IPY_MODEL_c1add57a26ed4cea91c81f8d331993ed", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 404.92it/s]" + } + }, + "1feee114d010494893c166277e3af3e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_216d2c14356f4bc4ad86f009ba38e598", + "IPY_MODEL_da7be01370ab46ed93db1d7982403c68", + "IPY_MODEL_c39a655e363640309db18f83b4ea7884" + ], + "layout": "IPY_MODEL_3be458a67698436dae4e4b9db5cc83f6", + "tabbable": null, + "tooltip": null + } + }, + "1ff910124749464b93b837b421c0628f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "200f2c1df5dc49d69471818893ce5474": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "201cba8bcf8b4fb4804eabe6f12a6347": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_65c2bc237cf2401da8816914799a397a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5d0884582ec841b4a2a83111c0689620", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2021c40aa11943a0a3b62fab50cd4823": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f6a01f69752a456787ae305a04db8b12", + "placeholder": "​", + "style": "IPY_MODEL_95b93921079a45778dee660eebbafda0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "202c78ca5dfc4456adc95c21f0868eee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a3673c5d56484e15bb009aa6c026f031", + "IPY_MODEL_d22edb2fdbd6475c9f25580c175d66fc", + "IPY_MODEL_4e4d494f63bf4a99b424ac8efa924688" + ], + "layout": "IPY_MODEL_b35d3cf06ae74669afffb67394bf6510", + "tabbable": null, + "tooltip": null + } + }, + "20703e2e57b140c7b7ee3bec5d5fec90": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2076303a23d94aeebc1866bfa67f8c3d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9209dcff6e3e49728b1391ddd6ed1c24", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4aad274e38e9441d8d76c02cf8c42da1", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "2081e070e3ff4deebfa4eb013be31c30": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "20887ceec3994c03ae2c5c2e3e1a02d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c6bdaba372b14014a3e7a25109447342", + "IPY_MODEL_7eb9f2a85b5d4339a7e03377b1ebdecb", + "IPY_MODEL_3c53722241684eb1b214fb84930b1944" + ], + "layout": "IPY_MODEL_8a5c369a3e08412987b980bb76710536", + "tabbable": null, + "tooltip": null + } + }, + "208d19b719264825a0d5727c686aa529": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "20930e613ea14f9a896804647ddd5ca2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "20941b59c0dc491eafe96ffb9c818ecc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0ffb05dd196d48f19230fbfe7d33b68a", + "IPY_MODEL_688c86f8e7464424a4394b1b7f236dcb", + "IPY_MODEL_430f262b70234cc7a3cd0ec8734e117c" + ], + "layout": "IPY_MODEL_fa6df63e8a994199a710d6054d5c50b6", + "tabbable": null, + "tooltip": null + } + }, + "209fca2855bf456caf2d81cb7777aa24": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7cbcfee59b3846779699e51b6e3c1523", + "placeholder": "​", + "style": "IPY_MODEL_48613de804ab4437bfff280669f517d2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 385.02it/s]" + } + }, + "20c4d398b6b943dead1b94f4edb7fb84": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "20cc0c0c7ec84a8aaba78ab23eb61266": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "20d08a801666481cbb5df281bc61f45a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7a4c56c34e754b33844dc470116147e1", + "placeholder": "​", + "style": "IPY_MODEL_4d84a9c7695c4f83a495a88592ba0953", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 382.27it/s]" + } + }, + "20d60d508ff440eea4877515f1f3a8cc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "20e8b09edfc64794bff184cbed8f285f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2103c63ef1d34baf8ad85910f6c61f42": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "21076284c61847578199c8aa8d8b1042": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a25d4e90cbac4e3c911083c5dbf58d5e", + "placeholder": "​", + "style": "IPY_MODEL_200f2c1df5dc49d69471818893ce5474", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "211ad55822334b77abca68c6078c5190": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_25a5f12300ce4bcb85e56cf7e2c1691b", + "placeholder": "​", + "style": "IPY_MODEL_fdb0fb17ef914296ad4ac80813e5eb4c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "211aeb6397b143dc843ccf33bef66a88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "21335a64b9d648a1abcec395d7cd09d4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "21352aaa19514f3e844fb330edabcb3b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2137c7340266490ab8490e4089a0bf72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2138dbf07c5442d5b45640b9fd086ad8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "21419690888e438ba633910a4cf75359": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "216d2c14356f4bc4ad86f009ba38e598": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e229277d1b26428391e5581e9e73f0b6", + "placeholder": "​", + "style": "IPY_MODEL_e85fa9ec6e0348f4aa526dd87ffa210b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "216f920ee092448d964470d4c8f7197b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "21715b730aea4e9da0856a92a9efd2d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "217223e39fba47c7bd47ac639f70bd70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_41a31f70f27e474fb97c8273b62352f6", + "placeholder": "​", + "style": "IPY_MODEL_63f3adab82f145429f2de105381de9ce", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "21851ff89e93448b92f35e0e27ca7a47": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "21978e51b51146be8528ae90e5acf8ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "21990d85faea42a3a62fe366b96221dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9c69a1ab19434faeacaa914e2bc62682", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ed3ab80e99fe4248bfd0bf929c174084", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "21a870683e2a4e0ebb2b86c8c9afeb53": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f4a443c1edd041b881428fe0620bb222", + "IPY_MODEL_da5a497874b84015ab2acc6f62466b9f", + "IPY_MODEL_3b3b2ff6adb44b89a2bbef2d0828cc37" + ], + "layout": "IPY_MODEL_e40ba71eacf640b296f618decf007a02", + "tabbable": null, + "tooltip": null + } + }, + "21a88eea9c314bdcaa4997911669aeee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "21d802a6848744c497ca1757fe0d964e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "21fa1ef06a60475e83c21bfe11b6fac7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_49875eb2feb140c18e323affd4b3713f", + "placeholder": "​", + "style": "IPY_MODEL_22835dd5c3fc4d24b426adafc3dad426", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "21fa4d69ee2b497496082356f6c0ddc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "21fddbeebc2044edbfee0f3b3cfa8f95": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "220a480d5df047d6bb752df1d8dd457b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "22108d2ebb50433f900b11531b1c23ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "222e0e21f8c14646bbf4f789c3745833": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2233c3dc8f694f03ae65669c22223ff5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2236e136d4fe4a7b916f37175d90fdab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cdc1327bc884407aa129e72f66f0b6f4", + "IPY_MODEL_2525887ac7ec424f95330a9d034b6c22", + "IPY_MODEL_9c6cb02d4df847beb15792409950d090" + ], + "layout": "IPY_MODEL_c1bb3b74024a4c54a664e27e525831a5", + "tabbable": null, + "tooltip": null + } + }, + "2243803741e748c483af31e18817a618": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "226a8c4a25194a5597a56915a9a203e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b11c3e33b4274a5f858c3966d394103c", + "IPY_MODEL_9ae21d72eb6e46c8b1eb72ebd8863eae", + "IPY_MODEL_d07d8bd9d5fe4c8db874e6246546e621" + ], + "layout": "IPY_MODEL_03e34bf93cb140e2b0a8a9325683a739", + "tabbable": null, + "tooltip": null + } + }, + "22835dd5c3fc4d24b426adafc3dad426": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "22902bf8f0704bc1ade2b5aa4b0b5d85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f2ef96bda7084c46831f5a5bd602e1f4", + "placeholder": "​", + "style": "IPY_MODEL_f6878bbf1f974107a23c81b7f8ed88bd", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 389.29it/s]" + } + }, + "229edbda39554b909c2c8b34fd0234e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9b2322aa11c646789fa2fe42e401f0ee", + "IPY_MODEL_ae8cee9417db4d198af28f77db3b6c03", + "IPY_MODEL_b3ddd99fbfb9422499a2a32d35fe4f34" + ], + "layout": "IPY_MODEL_f295f4fb10ce4597b7bc221775e95072", + "tabbable": null, + "tooltip": null + } + }, + "22a0e3dd9fdc4906be26985c96abe6ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "22a2a4f8e0f14f6b81c9f91df9146e7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "22a5804c7fef412f9d3f21b66eb1cc36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8d5f10445fd84e7b856cd3939b2ed611", + "placeholder": "​", + "style": "IPY_MODEL_6a17690483974d05b815651993a8c64a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "22aa4684b05e40258b880d71532f62c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59bf0e18155a4d489794986697d2b02b", + "placeholder": "​", + "style": "IPY_MODEL_db0cc6fd999145dd89f972d5f17315e9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "22bc66477921433f8a2c36746561cfb7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_be3d6642fb2c4770969ce530343ca324", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_40181195f5144311a7ce9f40800b530e", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "22c7db100b94443bb460b48280327587": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6eca0b80d4454bb2854eae3cdabbde64", + "IPY_MODEL_cdd5bcf971f448948be8f8d19f370343", + "IPY_MODEL_c0023d558e8249c786bca81094a356e9" + ], + "layout": "IPY_MODEL_a275ce05c0244392a2b5bfeb4c529b7d", + "tabbable": null, + "tooltip": null + } + }, + "230629b7520d42c182772f5f6cd90072": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23139c0d87ab4455aabf7edec9d60561": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_00cb869130a743aab15d1f118827588a", + "placeholder": "​", + "style": "IPY_MODEL_e9e77bfead334dedbd2f2960369346df", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 749.40it/s]" + } + }, + "23191890ccc144138859909cb9f1ec37": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "231cdf06608e48c7b57881908492961d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "232b9380974d4bc187690af8c4c5c2f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "232fcb72d4e542b79ebd8b6c50402f06": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "23398c7735f64f35a1e44898d535676d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2340598c563347a1b6f8c1f01355e8bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "23495cb5c66e4c3389b71c6d90ea48b1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23583a58302c41c38594d0da7bc5cbae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee78c9ef7bc94c6388f0fc2a5c9470ae", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_da523c16e119441ca43f9fa4b10dcd7c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "235c64c806d641efa49d62f04040689a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_96982bcac5b246ce894e448cbe944109", + "placeholder": "​", + "style": "IPY_MODEL_137452fdaba24243b7b6741038017a47", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "235ce2fd08b141e3aa6f600ced2c942d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "235fa6ec61e7418592863489cefebfee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "236bdbc3df0843e5a01d4830bb2a87bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e8976f56b9dc49308b4a3633b429c64c", + "placeholder": "​", + "style": "IPY_MODEL_c0a721b8e9e449f99a4cea51695f4e0e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2371b4932b8843b2ae84f876986127c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a23f8791d5084c9b9c858d3b0b4bdb52", + "placeholder": "​", + "style": "IPY_MODEL_ef101e9692e442e588fd5d0e99a750d6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "237a33ec9c394b7e8efe263012d44fda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "239010d6e40f456b8c980cee02e7723d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f75285100914185b8124d5d03d17dfe", + "placeholder": "​", + "style": "IPY_MODEL_897c8d38423e4e3dbf16fbf0d113f994", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "23abd2ddca094374a056b0cc3626da51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23afbfd586cb404a9b2914d7faed8173": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23b1d0789d5a4e0ea33463e45054064f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "23c7cc9004b844bb99841362d826fa61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23cd573d77e44e64a2afd682c3624d97": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23ea4fdfed3746dfa0b8c900579b9111": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3189672737ef423e86f74524c5a9193f", + "placeholder": "​", + "style": "IPY_MODEL_532ba5d310bb43ef8f9de7ece277f61a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "23f37325acb8495790d17fd7ff99fdb1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "23fa77f2b28841b9b3e2565a3339f17a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "242fa898b94a40579e6a9331a5039240": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f3ece9a2d55f4f868d804393e064df4c", + "IPY_MODEL_7406f9ce1fb248808066d8f08616d8ae", + "IPY_MODEL_154e4193673b4512807a64f0f55f99fb" + ], + "layout": "IPY_MODEL_75874e9cac2a4ac7bd5fb04be99cfce6", + "tabbable": null, + "tooltip": null + } + }, + "2431158ea6c9439c8d39bbaa2ba31ed5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2434ef00bbae45d5b45463823ea50ce2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "243e06349f03454cbcab5ecd2d67f896": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_638c6501b263446fba2700ab68476e0a", + "IPY_MODEL_9837d8ea5c944ce7b0915c8c80d37213", + "IPY_MODEL_edcab0e4c4464fa380d2fe277f8e03aa" + ], + "layout": "IPY_MODEL_16c963aeaddd450a9cc7c3177d947acf", + "tabbable": null, + "tooltip": null + } + }, + "244c16feb3574fb6ab7e9f611002f7f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2450386c57f947b8afab4a434f666c30": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8d9f85e84db44c2684ffc3a7ad632dac", + "placeholder": "​", + "style": "IPY_MODEL_7903279bea6e4818b3cf2ce2893f3018", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "24599d0f8191476b8037ea6406342b3e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2463f5ba3c754d3e984e848908544829": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "246618accc3e4cf781e83c608fe100ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d0a39f170f694d6da3497ed67784cc5c", + "IPY_MODEL_95a470db4b5943638fdd5c89ecab88d1", + "IPY_MODEL_5b545659fb31437c9954ecc667177a64" + ], + "layout": "IPY_MODEL_e0aaaf5872a64f0f97c6e41d1d66f70f", + "tabbable": null, + "tooltip": null + } + }, + "24798e270f1b4b8596bb36444f10fd4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "24ac534b8efc41c19ab5e41ab6c91a72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a2ffdbb5ca1b4a47bef78db82eafd600", + "IPY_MODEL_e3279e1600834adc9274c2c50f8454b9", + "IPY_MODEL_fc4faf89acfa4718b847caa0d1943d6d" + ], + "layout": "IPY_MODEL_ead9dd347ac144848ad22557451c102d", + "tabbable": null, + "tooltip": null + } + }, + "24c5f12806f54d17bfa80e7d04007230": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "24cfe1c3470e4fcf90dc6978540aa3a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "24d02e314b974b078ea3511227abcd32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_92ad1307eb3b4c6f911ea5369c65b520", + "placeholder": "​", + "style": "IPY_MODEL_9c52428b3fb34eb3b81cb1214dbf6942", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.51it/s]" + } + }, + "24dc247902e7499fa83cb7eae6d39c8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a9dfaedb3a404095bf84109a2fb581cf", + "IPY_MODEL_71c53fd5913a46ac82ca0aea0d28ed96", + "IPY_MODEL_3a08fa2ecdac4877a3280c457ef9a1c7" + ], + "layout": "IPY_MODEL_9ecafd5f12a24ee79aced2d4acd77878", + "tabbable": null, + "tooltip": null + } + }, + "24e1ce964ce14924b2d574389719b850": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9b09c4eeb1a34566b2877bb8ae4569ad", + "placeholder": "​", + "style": "IPY_MODEL_ae0cbcf67545403f8ba4ad04ed02bb22", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "24ecd49a788942c1b1931b186080a93b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_73d414f8bea243e186942c9de3b8c049", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e74ecaf58010411797c64959fc4ce2c4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "24f5acb596fa40cbb05e03fc2ecfa7da": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8d4a26061ffc42e1a222d96d829b2070", + "IPY_MODEL_382ed276cb7c4212a905810424cf152b", + "IPY_MODEL_5ab337e2e776461ba64c567397e468fd" + ], + "layout": "IPY_MODEL_dcc43ee8040940b79167039578422ce1", + "tabbable": null, + "tooltip": null + } + }, + "2501b37ac7714d138f4b8e81e8ba0b12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "250a6c86d3904bb5979761459d840dca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "25124ccf91894cb08fa1fd84b7750b54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2525887ac7ec424f95330a9d034b6c22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_90ec169330ef48e5a5e3fb73c8fa16de", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f35c3e9a8c5945968fa708072a467ac2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "254020abc84743f189ff7f2130fb954d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "25479a5b48a542c9942efde8665e47cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "255214195f2a40149968835f24209a6b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8ee80795032d40dbbd384549cfc8df08", + "placeholder": "​", + "style": "IPY_MODEL_efd405929dd6480e871f75db5c536b08", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2552574b18854d95ab7476f576981261": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_47ec4f2966234cda8a551d84f122c1f7", + "placeholder": "​", + "style": "IPY_MODEL_2dbfddf9297e44489665eee76da48339", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 378.80it/s]" + } + }, + "255381bdb0cc49d2bb99eeac5130058f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "25870dca629c423fa273447bfb366058": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "258d42e8cd37466dbd1ea3804d351e01": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "25902320c53146348118b5226e41fd8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "25964477b419460ba9f2f39d7ba8436b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b89491869f5f41ff99b6e4582fb4aabf", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_01a5a2c25bd141dc9d24386b7ef8eab5", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "25a5f12300ce4bcb85e56cf7e2c1691b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "25b295fe1be94da683ea503ad73e0dd4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_71624769725d4449a0dac16e7eb5e7c8", + "placeholder": "​", + "style": "IPY_MODEL_574af7bc9dcb4c589293ef7f03df5f67", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "25c846caa54e4b5ba8467529e8be432b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0e00c61702fe412397b35171c0736098", + "placeholder": "​", + "style": "IPY_MODEL_61bc845be7144586bb676c5598d33366", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "25cad32d47f24bc287490027288d62a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a41fd94e8c5d43b5a25ac10db3c661cb", + "placeholder": "​", + "style": "IPY_MODEL_06772c47a56043e2b738b66bba624565", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 519.73it/s]" + } + }, + "25d9740883e34d55937d7d94542a7ca5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "25d997f386cf40abb7e1cb6d3ccc492d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_285c7b3a9ef34431a977e6e1ee2181e3", + "IPY_MODEL_e595da8843764e4db66816f9aff4faad", + "IPY_MODEL_cb0b72271177445384ca8ece4eeb8e70" + ], + "layout": "IPY_MODEL_3b4cbd5c31124ec99e76b3b0093a7547", + "tabbable": null, + "tooltip": null + } + }, + "25de52b80037425fb62d74ff08bbd52f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_71b93136938343ebb51ba8a9d0580332", + "placeholder": "​", + "style": "IPY_MODEL_7c646cd13d624925b9cf5d88694435ee", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "25e335de96194ac99a8561874eda4a85": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "25f7791d8970442dbefc813fa925373d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8316b1e918db4534b6a4d6387526f4f6", + "placeholder": "​", + "style": "IPY_MODEL_56aa2cca4c8543e8ae339642fdd20432", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 619.78it/s]" + } + }, + "25f8dcee284f43a298bb5af3586f7256": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fcda4743227446edbacb2d38ab8871ab", + "placeholder": "​", + "style": "IPY_MODEL_a963d77e4c2a4011926f05879dc5687b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "25fc948b148e4869ac670d7b23ce9c65": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0a623ba1eca144968b5c23087851f436", + "IPY_MODEL_7c80dac6906e4422b2fe2682aeb1edb4", + "IPY_MODEL_50ce1b7c271747b0ac7a58ab8c5fa1a0" + ], + "layout": "IPY_MODEL_682896a944cc43cbae643b26833b76d4", + "tabbable": null, + "tooltip": null + } + }, + "26377cbcc0064477a9db224efb7c272d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "264c38732c7a43e4a5109a630e81294b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "264f8bbf956e4cd2b6d5b06765036722": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2655d790a2bd4814a02f3c176a306381": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2655e180e93d4fda8d4803c2c3cbcb4e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "266637066e2f4ce498cb1a11bb9fd8e5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e62ad9e30e2a4abb8d8dbec51b04492d", + "placeholder": "​", + "style": "IPY_MODEL_d469a4a7960e4322bdd5d2e972546c8f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "26668725e97849a296de61dc2c8cb580": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "26789de48852446cb9fff95c0f3c1046": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2693fe08f7fc43ebbe08c956904dcb4e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "26ce6abf36b2491395f3e074fb352d69": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "26d983e7f06e4056ade1430244425bf5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "26e3ef4daa1040c08318f410c9ce7301": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_70419818d506407a8108f3bfc8a3550b", + "IPY_MODEL_e0bfabfd71674782a1d0b0e09b0aa710", + "IPY_MODEL_8b972d94c733440fabfa03df0c882afe" + ], + "layout": "IPY_MODEL_77566b22eb944317a19b6d2a59e8f37f", + "tabbable": null, + "tooltip": null + } + }, + "26e5e7d88dcb422eba4a52c6d739bea0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "26edd72fa69a43d7b6ee8414ab48c62d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fa5984c1dc8e45dfa2f5ec6b220c7064", + "placeholder": "​", + "style": "IPY_MODEL_f68b322c67c040bd8df2c55b8598ee5e", + "tabbable": null, + "tooltip": null, + "value": " 313/313 [00:04<00:00, 64.32it/s, v_num=23]" + } + }, + "26f0acbac80d496a9ddc08933c4c58a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e6f1e212b19440fa92fd68e67a073991", + "placeholder": "​", + "style": "IPY_MODEL_940a538b4e7e45e0b8e422f9cdb0dbb6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "26f0d5681d894dca92be016732f64449": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2709422f42884b7da1eecfcc95ab2cfb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b060dd5469014486aa62c617d2d47a98", + "placeholder": "​", + "style": "IPY_MODEL_1dba00137e6e45298249c139036017ba", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "271051a0c53041749405aabd0b359a7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e2c94a841e35492c93ca866036836499", + "max": 67.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_95443c2be301419da67d2d8b054a7112", + "tabbable": null, + "tooltip": null, + "value": 67.0 + } + }, + "271528a99050441b88b6ad8e96ad49a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e99d35f7a06e47c7aae9e75cae4a6b96", + "placeholder": "​", + "style": "IPY_MODEL_75429cbd76bf4f2e9485d732c225b90e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "271bd438462c40c7a58e848acebfca05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_74932d29e6ea42b3989a0c13d0cba15a", + "placeholder": "​", + "style": "IPY_MODEL_661a6d56dc5e4cec8a9f779c68a2c1c0", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 54.89it/s]" + } + }, + "274c8f91da714f279b9995aa22fc656d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_211ad55822334b77abca68c6078c5190", + "IPY_MODEL_1f450fcaea7d4bdaa508a230fdab1599", + "IPY_MODEL_9f72d63a582d46cba672ce7d54f1eaf3" + ], + "layout": "IPY_MODEL_30e1a5e54f2741f483bf124f2ff2a0d2", + "tabbable": null, + "tooltip": null + } + }, + "2757386cc60944f8882392a13593aea3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_792acdca0b59429984893e5b3420f1c0", + "IPY_MODEL_deff64427a474fe98f0629cd67457afd", + "IPY_MODEL_901cce1147864ea7910ce6a07d355b4a" + ], + "layout": "IPY_MODEL_f4643accd75e40f0a2f195e7f184869d", + "tabbable": null, + "tooltip": null + } + }, + "275a210ccf54471eafea6098bf64dcf7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6c3d849676c942b3ac3a2dca19180276", + "placeholder": "​", + "style": "IPY_MODEL_eb9a3beea6934f57b6cf73f1ee117298", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 520.42it/s]" + } + }, + "276185d1cf6448bcbd82532463c33cea": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "276324d347834f9fbf90e8acf87776e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8a92cb92dca549c9b95605a7bca8edec", + "IPY_MODEL_f09a0be39cba485aa20523f5d303edc8", + "IPY_MODEL_6d8115c6a7924e39a14534d25840f6ac" + ], + "layout": "IPY_MODEL_33555a976c2a4fe88f19f0d70412203d", + "tabbable": null, + "tooltip": null + } + }, + "277a6e2abbab49e180fdd843da7e30cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "279186f508234c3dbbcc710426a1c29e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_972a8849a395450a8947242910ca03ab", + "IPY_MODEL_4fa9a00b730c4249bef67b06bf8887b1", + "IPY_MODEL_4f330a293bae48b7beedbaa146cb8bd5" + ], + "layout": "IPY_MODEL_4b9b2799c3974631a1dfa5d0212c9ff0", + "tabbable": null, + "tooltip": null + } + }, + "27a1f22c7d674dc990a604e7c87c0de6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "27a9273bab8347d7a3309f7304450e7c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "27ccedefc31d4413907f1028ae98ef93": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "27d645adb4514686a973a23085ef2e31": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "27e31a821ce443eb9009167b3c80f4d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3a09e196ff1f43fa83a9a7bd5b939d4b", + "IPY_MODEL_71c37618507c4da79ccc6dfcc9eb1066", + "IPY_MODEL_c0568aeaaf464c448a81773342ba38a1" + ], + "layout": "IPY_MODEL_44b5438159514788a248059cb600bdf4", + "tabbable": null, + "tooltip": null + } + }, + "27ea12c57dfd44bf8abbaf2888ddf3b4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "27ff88a097934fecb6d5897713435267": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1770f0c48af140ada4000d5261c466c6", + "IPY_MODEL_6dc08f6ce60746de8e06c573620a67d0", + "IPY_MODEL_4c29aa1b2aa64ac7ad49a7e591f843e1" + ], + "layout": "IPY_MODEL_5ee7712799d84bcfbc63501fd2b8b37a", + "tabbable": null, + "tooltip": null + } + }, + "280a72161e6c46059e708e8a3b7a5688": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1c5f764fa1134481a4f297ceb0b99eb8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_986b48d0ef7d4f718cd258464b2fae4a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2811ca2fc318442d8a4594a001f6707a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "281fa725231147ecb836a4cb919432fa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2824d0945d3244898350f3087ad2f5ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "282c5cf1b7e742ca92eda9a53412a234": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2834b09c056246f4a41e93cb0af5b6d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "28354023b09647f080c1aa05e1a925c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0507cae6742746c5aa01d02781b49d83", + "placeholder": "​", + "style": "IPY_MODEL_3d641e072b4e4db88eea2758a2c9af4c", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "2842b736076f4833b4d6b20a674c9c72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d29c35fa60ed488f9c2d27d50421b213", + "placeholder": "​", + "style": "IPY_MODEL_81db4d5f04364febb00214f334ddfb6d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 374.24it/s]" + } + }, + "285c7b3a9ef34431a977e6e1ee2181e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a31ec7735ddc4a3488fedee6465d76ac", + "placeholder": "​", + "style": "IPY_MODEL_552f5e72669b4a949a9444243a567931", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "28680aaeef81409a94f6e4bc03d46b59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_02b3a165fe224d18bd48bf8e6f2bc777", + "placeholder": "​", + "style": "IPY_MODEL_340f7949e0754aae8fae4f5823480636", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "286d40af4ac7465fa859e111186e92a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_58b6accf98364ca38d96cb7f82a868f1", + "IPY_MODEL_edf4da9409044fd4938b2b52cbbb0355", + "IPY_MODEL_e9fd2c6509104df2addc49dd1eee14d4" + ], + "layout": "IPY_MODEL_4f1a528efe9f42dc9026ad96b765082a", + "tabbable": null, + "tooltip": null + } + }, + "286d8e4ddd8c4571b1f502395b81bdb4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "286f58321af24c4f97f45a932f563a41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5140ce65ebae46728a9342584e2db7c1", + "placeholder": "​", + "style": "IPY_MODEL_543c9d62626d4f3e9ff786b323316915", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 544.76it/s]" + } + }, + "28767acc575a474b8540d8a936b0b550": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "287df25e7f224ea8adec0c9ed16ae8b9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "287f0673928e47b2b48bd1da693093df": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2880213fefc7430c9aa441d6e19fc6e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2886dc3569904be1934a63103c29bf63": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "289c6082a35a4043bf9a0c9ec93bc8e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "28a1b558d649449da6850386d4165ebf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "28a44175736e46658938c179f01ecadb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "28c8c3e88b1d432a916647ae6e6c6a73": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "28e0024b5d144b8aa976c01b0b3f6edf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_85427e821bd24d0d8f2a7203e4313b90", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0f1db306481741febfbcf230b86d262c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "28ecc41880174174b506f91d6369e3f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f9b136d01d704dad9723515cc2308c9f", + "placeholder": "​", + "style": "IPY_MODEL_e68d8cf087384f9e9e98f42c4fa92b05", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "28f1d935250c418fb5f43e4498f1c22c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_185d7a0b9ff443199c9af56f8f832616", + "IPY_MODEL_ff798c0935e24efba88833e240af0c41", + "IPY_MODEL_3622a384e3864619865c30189617b6e2" + ], + "layout": "IPY_MODEL_b53b0361dbdd4168b3d93ff6e3d5fd62", + "tabbable": null, + "tooltip": null + } + }, + "28f4cb275ca34b7cac34a4c54686697d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "290040909155439da76e83f9810fcd9c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2906a68c55dd4f5788894d776283eb51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "29134a23238e424791efa93e35afec13": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2be0d207de634787b883193d9d6e758c", + "placeholder": "​", + "style": "IPY_MODEL_0a4c0c07425842afa1e5381d5a0f71be", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.66it/s]" + } + }, + "2921db7bab60481e84112c7e5987e192": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "29224d6b9415479989765e82d1908960": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5cf2990c1c044c25b75363829bd7089d", + "placeholder": "​", + "style": "IPY_MODEL_ed002e11be86465f8ecf31bdc94ecc3d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "29372ddcfac54caaace024f8d515a229": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2944699774c948929c5cc5e396c65094": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "29556c7c7b1d4b189e9a32645230883d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3ccab1616734dff8713638a8b7fe46b", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_54c07fc9f2b24c789a8c9bdb23b56e09", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "295a65ff1dfd437bab6bda55851d6d0b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "295ea7acd6904c2bac76f95a99e0e77e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_35c9ca489b884715aeb1c1b9d614b005", + "IPY_MODEL_6394108ce81b4a2d9079b3ef0eeba7e7", + "IPY_MODEL_e25e1066a5f146f2971dcae4ff76affb" + ], + "layout": "IPY_MODEL_edb1ba887aee4fe2bab74d7e31a1dc13", + "tabbable": null, + "tooltip": null + } + }, + "295eb51ea48043aa991821cf46880fe7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "29747db6e64646de954c14458fd8f465": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2975815672dc4dc88c2c345ccc4888e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "29902a65d790435993f29a02d0e459d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "29ae859fb331401da423ad6479c3bcea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3143d5c4aa14fde9ff82c1f74fe0db4", + "placeholder": "​", + "style": "IPY_MODEL_cb09ac32b2d749a58427fe968abbec6a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 64.51it/s]" + } + }, + "29b480fa2efa4cfeb51c6c0b18ed9d72": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "29ba52fbf6e443578987417923ec5a85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b8dc2e19c9104a25a18691751868da10", + "placeholder": "​", + "style": "IPY_MODEL_264f8bbf956e4cd2b6d5b06765036722", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 786.69it/s]" + } + }, + "29eec9e86cc74955aa8847f04d93b273": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2a0525e91de5458aa28368a3708f0fd8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_16b0db1638f54adf8281e1c86d9551d3", + "placeholder": "​", + "style": "IPY_MODEL_9d5d2b88b5ee4b8d8ca4ef07c4379492", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 190.96it/s]" + } + }, + "2a15168b71a84a63bf66428210d3b7ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_63ead565f9a443318e9e267cc44dbc67", + "IPY_MODEL_22bc66477921433f8a2c36746561cfb7", + "IPY_MODEL_deaf310094ce4b508591c12194723f46" + ], + "layout": "IPY_MODEL_f479424c9a99483ca11f17579a0d7ff8", + "tabbable": null, + "tooltip": null + } + }, + "2a16fcc115d1450083975a91d311333f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2a2d3e73b38f4dfcb0cae3828299c422": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2a414586d02f4d4bbfb4d15bb51fc2f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2a4e6adc03ec43bdbca612265317da94": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3a52123883ef482b8243cf948e7a16a4", + "IPY_MODEL_06212c691bbf4b719f948ce0ef3e2fb1", + "IPY_MODEL_f66e7ade592d4d76829b1108679e7408" + ], + "layout": "IPY_MODEL_43f89f3a57b94c22ba16b29eb595fa47", + "tabbable": null, + "tooltip": null + } + }, + "2a600e5cb9254dc7b893086c9bd9bd0b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2a7698af49fa472c869ba4c06b1f1370": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2a7c965604ba4e3db3a1cfe835fde84b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_33bab2bfb52a4dca83a44411d22f6ddf", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9c1bc28aacb24776afd5f83c06fc5c57", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "2a9deedcf3a047e8b3b4218d926308df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_38dcc40676f948a9a864c71924ca2230", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d5ac429f9d754da2a0c4f034170fb684", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2ad50a1d49a64f39abfff12a2aae6740": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2ae36157bff74598a823e91e0c94294a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_538d216089eb4361a51a64eec6ad7b55", + "placeholder": "​", + "style": "IPY_MODEL_fc9bf179f195472dafebff545d78c18f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.26it/s]" + } + }, + "2b08e549af5e42488109e087e2c860a4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2b0d3ba922d0420988a6dcef3e864875": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2b111d0c52cd44d79ae5478148eb6477": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2b11cd1e98e44229b32557c876493870": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2b199dc256c74ae69ffe52995bdfb38b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2b3d1adfd7164fa49f567a9eee665642": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2b4b0544440349b0a138b67b9bc6f922": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2b4c444109a94b6b93655aa3ae5183a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b24a11482bce4a35933a09e6ac421cb5", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d84145a699e0495eb7d4912b928106b8", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "2b4f351d26e645788d331f93fddc6fc4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b5b6c7c657d484098c6d1fcb20c16e4", + "placeholder": "​", + "style": "IPY_MODEL_0e3de4d0269241f6852dfa48b984e819", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2b58068c4ebb4a9393ad15c441b2c3a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2b78daee4c49486cbe101a0967108aff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2b7ce659cfab4b5897b5f6a37d845569": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_afa3c024d2df4879b35be2aab5026827", + "IPY_MODEL_610bcd7ebc9146ed86d4b39305324fbe", + "IPY_MODEL_c716c87c0c7843879c38eb3f4acda6f6" + ], + "layout": "IPY_MODEL_cb950ad1daff48e9970e804b3be4692b", + "tabbable": null, + "tooltip": null + } + }, + "2b7f5e1712fc46fe908a0c07dd921e82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2f6123bcc2c044a7a990ac9286ea5fe2", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2880213fefc7430c9aa441d6e19fc6e4", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "2b9c9b52d19d4fc39a20f144152bc317": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2baaba8c7bb942498a4010112843c6fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2bb7a75217b24ee691bbf1120835cd16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ff9b6ca38ab74870839dfd934993d67f", + "placeholder": "​", + "style": "IPY_MODEL_4a4e1cdf69b64ec99fabc7baf67ae8fa", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 219.37it/s]" + } + }, + "2bb853f13669484aa9342f3c22ca6ffe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_51b12b7b3050455d8496bc6c148563e8", + "placeholder": "​", + "style": "IPY_MODEL_0210e3cd9b124e97b62b2e61141a4cdc", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 398.27it/s]" + } + }, + "2bd88cd8c8cc4c15810c289e133774c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2be0ce8064ba4f719f8aeed2d07a92ba": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2be0d207de634787b883193d9d6e758c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2be2932169e64d7789d35e491915cfb8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2be4d387fc4843a599ba634c1d998ec6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fc29345be3254c08983112a7ac2940d7", + "placeholder": "​", + "style": "IPY_MODEL_7be538723b954d1ca6cfcb9553db50b2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2becd62f36f64a83b7073ff56f323e12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2c0f919e98ca4a35b7d34d3d7c6ac07f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_295eb51ea48043aa991821cf46880fe7", + "placeholder": "​", + "style": "IPY_MODEL_c6f0275f33b1453995a3e92145c16767", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 217.02it/s]" + } + }, + "2c162065066640708d92037f591285ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a2f6bc0bdeb841bdaed937440cd81554", + "placeholder": "​", + "style": "IPY_MODEL_b96174525873499a8c79767fb4e1b053", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 752.35it/s]" + } + }, + "2c1d3996213e47cbbb39450c7352a60c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2c1faeb221e74ea98b1ad4098608e47a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_642ecf55c36242f0879fd6ab9753138a", + "IPY_MODEL_a605f64506ce4c7fad0d36413eb98f21", + "IPY_MODEL_f095990dfb934fa792ca61cc0c0606b0" + ], + "layout": "IPY_MODEL_af3006632f194aab9439d44681e5acf8", + "tabbable": null, + "tooltip": null + } + }, + "2c2655e97a924109b0dde959d106c8e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8ff6a84b1c614873b2b4148458bc3b5c", + "placeholder": "​", + "style": "IPY_MODEL_aa3e2889c66649bd99ba94c6c2264399", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2c2c885805f44e1ca85fc4419cb6c578": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2c44d5eff49b4c05b4dcf4d474bff34a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2c505befee5b4844ac3545f05bc6be11": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2c5f70e8fb904c0397341a2c6d17c9f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a35d0251e0dd4c718c27e0e6f8b9e7f1", + "placeholder": "​", + "style": "IPY_MODEL_3fbf37457078436cb2e340b9586a49a5", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 819.89it/s]" + } + }, + "2c68945dd0dc444e9dc160f6630c3b2d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_927599ac634e4aa0b7c119b0adaece03", + "placeholder": "​", + "style": "IPY_MODEL_0b783665bdbc488b8b363fac3e853621", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 372.07it/s]" + } + }, + "2c6eaf5936794e5baf1f42e642c0db97": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_76b5d6645ca7415ca6316ac3ace9fb51", + "placeholder": "​", + "style": "IPY_MODEL_8577af32ee7e4d7e96359fbd5d46bf45", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2c7c9e3bc3044f5bb4d7089e2a15f67c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4e26fb8cdbc2480e97acfba1affac3ac", + "placeholder": "​", + "style": "IPY_MODEL_83bc0c006d8245e8b0831baf1bfe800f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2c803492bbc947b892a077bc2028dc99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1be86ea8f9924bf48b6ff46cf58906ee", + "placeholder": "​", + "style": "IPY_MODEL_c380604deba44fe8a873a836b5fbb0a0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2c966ba422e046b594a7e04566768d51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2c9d07b081ce491c82995db719243d31": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2ca69f57ca64402cbac17a0cc41251bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4001a4bcf6ab4e00bffa1ffef50de068", + "IPY_MODEL_bdd2b40e41a84614a8fe9b34acec3e38", + "IPY_MODEL_9cee08bd92474d45a030b024625ecedc" + ], + "layout": "IPY_MODEL_8656a531fdc14092bf2e26bc00ef8787", + "tabbable": null, + "tooltip": null + } + }, + "2cb2eba2bd854e0895430d4a471b1aed": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2cb79f4b60f246eaaedd528f3a421b17": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2cc16da9d2c74e3398442c26535c8a0e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2cd33a4c4d0547879640707271ad7894": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e61d1fcfc5c74387be1a0cb233f5155a", + "placeholder": "​", + "style": "IPY_MODEL_efd91878ff7e4aeb8ae8529d53169c9e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2cd87c471c7e4045bfdcc940ad7ec2e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2ce4b2ce85a941f89255a1b1ba52150e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2cf48f8edf48433d8e4f98b1824e4f3f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2cf6bdc5be4242ecbc86f499e7190e05": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2cfe75df2f594fd598dee4738c338007": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2cffe76a58af44128b9aa2bd349b111e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f907d44ba7844c778013fa2e5015e9db", + "placeholder": "​", + "style": "IPY_MODEL_7807c946f32340759e9ff4e8e4e9cdb5", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 362.70it/s]" + } + }, + "2d016392f8af4ef391b97cf23303fd66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2d08d5543c62413ab5f2c993c506260e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2d0dc0514c36492981107c7fc4987eff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d104b704baf4fd0baa0839cac5678a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d13cd83ded244478e03a4bb806d0adc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2d15a12ccdf04e2bafae8b0070552a6c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2d1d023a077f41eeaf9cb46123cc43e9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2d1efbb822384b7f882305d7a65c1e0f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d2765f5e7e643549a317da83a3c5d9e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d2af99dc7a443aaaf2e3794fc298d4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9408276933bc4723b602101629d83dcd", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d5fc110c57494087b122711913221bdb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2d303fcde5e041ee9299c05f991534d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f0e0c95245fc41d0997b80c94181c459", + "IPY_MODEL_e07f92a9506a49b5a5d252371a14883c", + "IPY_MODEL_b63abb47b2784ee9ae10837962c76dbd" + ], + "layout": "IPY_MODEL_0f1f1d9eb76d43e4bc8eaf1a31e3d89c", + "tabbable": null, + "tooltip": null + } + }, + "2d33ee2be0d840babea64276403e3053": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2921db7bab60481e84112c7e5987e192", + "placeholder": "​", + "style": "IPY_MODEL_728dbc66ed57469485cab565ef2f96e3", + "tabbable": null, + "tooltip": null, + "value": "Epoch 29: 100%" + } + }, + "2d34cfd1e7e64eafb44fd4915cf621b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2d5433d72f064b52baaf421ee4ff9579": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2d5575d754d9473480cfe5d9e9189ac2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d672f24b8934ee3b2fb0fbd9eb65c41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2d6f248fa8a64851acf894b437113de8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2d79a69ffbbe4ee399ca9c79f3708781": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2d840e86a62842eaa6b728ddafc180b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_165dd371d1dc40b588b9d2e33243f36e", + "max": 313.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0d732d2567c94f27bf16e5a03da2c43a", + "tabbable": null, + "tooltip": null, + "value": 313.0 + } + }, + "2d9002835d2a4c8687ba1dbea09c23ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_096ca919992c4f8eb7ad59cefc5d0b30", + "placeholder": "​", + "style": "IPY_MODEL_4846cbf01d2546ce820cd59e8e6fee1c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2d9a855d76c3484482e10e2977df5038": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2daa29f38d1e465785a76a5adf8a0277": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ce9a0b2bdbc4e7baf058c6b690cdfb6", + "placeholder": "​", + "style": "IPY_MODEL_90ddb237cb7c47139a4cd6b1ded70a77", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2db862c4dbe24e90a80ec6f0def490c1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2dbfddf9297e44489665eee76da48339": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2dc6a302ce8b43bc9c5be4ccd474b1b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6d1c3af41e1c4f70929d5c203f58df33", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_195a908857754b0c9ded924a66bd04ee", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2df7855c87ad4c43807dae8bf3ff7aec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2df8407a32684b4dacd0272c376560fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2dfccca9d8924df4a6678de8574b2ba9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_37f81733840647308aca501baf1147f4", + "placeholder": "​", + "style": "IPY_MODEL_1ede920a2e7b49ea8a71ad72f3f7bc02", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.40it/s]" + } + }, + "2e191ba765824bdab604d68bdb5b57a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2e1cac58572847c5afc8eaf61ee9abf4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2e2061d0595741689fbcc4d3d876419f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d1a8e207f0434756b8d1e0793cbfd5b7", + "placeholder": "​", + "style": "IPY_MODEL_5446d08fcddf44da903f8f643db6e67e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2e241b8013f647c3bb542af986ba887a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_69d29bc47eec49519ee8bebeb354f107", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_91507b7e66634e1f9dd96d7622322563", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2e28022214054495b0b22fe3f1d1c94c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2e2c87bae2d7414b9339c25991bba2be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2e410c800dd74df1b928f71007c6ad53": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2e50b54745a34f1da40cf1447d5d0937": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2e633399efbc4c9e9f4abd4ef4eca669": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2e6c4aff719d4c54bc0e7917972ecf36": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2e7f5f09bce94cdd808251b783ff7195": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c6778f0f19b5429fbfe9b3c393f35aee", + "IPY_MODEL_11ee154c0d3d4927a7aa41f7f576dbd3", + "IPY_MODEL_6af5350af02242db95399e3f1ac0e805" + ], + "layout": "IPY_MODEL_8cbceda7696c454599288d22b93c031a", + "tabbable": null, + "tooltip": null + } + }, + "2e81c4305a44438fa7ef64238bcd65fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e41bd7a8c7b45c9a15896b3f5a60dd2", + "placeholder": "​", + "style": "IPY_MODEL_282c5cf1b7e742ca92eda9a53412a234", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2e8505f45fd54b418ad4c4d572f28bce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_65d5553c519b463280b2123b9ac99ccc", + "IPY_MODEL_fdd971a88d7242599885ae0e8377abe4", + "IPY_MODEL_41e8dc173b844db98f51ad05e5d9ddac" + ], + "layout": "IPY_MODEL_b5c832939863417fbe3282c525dbeeb9", + "tabbable": null, + "tooltip": null + } + }, + "2e87d9dc92f8473b8ad96e1fe05f4cdd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2e920b0e54b74ba2ad55f8ff4c6e9d40": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2ea4aca8233b403a9fd2f7c9c75a067b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c6aa2b4fa7f24a299167fd8fc666a222", + "placeholder": "​", + "style": "IPY_MODEL_9fc7df71910d4ca9aa58e2b918fb53a4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2ebf94420cee4bf09a23f57ff4a64836": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2ecaf65a04ee4b0698d666dcfdad463a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7c1020eedc514a28bb9e22e99bc449bb", + "IPY_MODEL_3ad052ca18e1437397f32e03e2d53fb9", + "IPY_MODEL_38069a09ec9d475f8b78e34b211e2c83" + ], + "layout": "IPY_MODEL_3958d4f599f746efac1f2499a4b25f32", + "tabbable": null, + "tooltip": null + } + }, + "2ed0de87ff334b7396d54733b8cb942c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1f54b8f794fc4dcfb96097012c28bc93", + "IPY_MODEL_44fa797c1022425fa430749561c1cb15", + "IPY_MODEL_373b6f50136e4f79943267895b9f6bde" + ], + "layout": "IPY_MODEL_b383a45591a14087a3a3a5ea509fe5fd", + "tabbable": null, + "tooltip": null + } + }, + "2ef3ac0704564c54a5f010a467cb17b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4327b44f50344726ad4bc8012cf1bb05", + "IPY_MODEL_cb21eb5d895245b399f4df963c50eb1a", + "IPY_MODEL_8638091d7a9844f6818f1f5a07802a7f" + ], + "layout": "IPY_MODEL_5a1b28c0c4a84acf83fa6ee49b48f97d", + "tabbable": null, + "tooltip": null + } + }, + "2f00c8d3fb2e4ed2945bec5615d85b16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f4e35de5e01048ab94671afbe5274988", + "IPY_MODEL_a1e8cbd73e79422dac8e0c158be31387", + "IPY_MODEL_a7c281bdfa6d4261b4d1ca5b0fedc8f9" + ], + "layout": "IPY_MODEL_8e39abd6bb6d40d99b56678d3073dd0d", + "tabbable": null, + "tooltip": null + } + }, + "2f0b066a921c478aad08222c53d6dabd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2f12041ade0846818ad471e01303656c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2f156fa42a164952af4bfb8febb58543": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f76074f805348cb9e84cca08ff1b2f0", + "placeholder": "​", + "style": "IPY_MODEL_dd68c8dcc03a42abbd83bf23b354a9f7", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 357.31it/s]" + } + }, + "2f24998894ef467baed07fe6b9d2d0e3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2f31b69eef84498daa160e93887c6870": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_442cd907238b49559a26a68a5996585d", + "placeholder": "​", + "style": "IPY_MODEL_d078fb6554a04538820c4237846de690", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 391.06it/s]" + } + }, + "2f40d8e621e842d2b29bae3a838ab711": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5ca74af81c2b4656a9ab7da6f0dd2430", + "placeholder": "​", + "style": "IPY_MODEL_62c5769a853a488b8e8695f2bd5d1a4b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2f5de35ed6a84e3f8029a4c66d087e52": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2f6123bcc2c044a7a990ac9286ea5fe2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2f6380b6ff8844ec8194ac829ac48019": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2f65a926fb50406ab3793c680d454810": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "2f766ccf9c6f440887fb5a212c0188f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2f776a5c0276493c83729157fc3f7acc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2f8485b5a9014339bf850b5afaf0f17f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b146999938c24a5985c11db49227e187", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7ddc435094a2488bbb67d3eb83ef8598", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "2f8a344b80b14c0bbeca2fbafc3c7b8c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5d308da6c4364c44aa3e51b9066e4c42", + "IPY_MODEL_41529ae1fd1a4d79be47a04658b71fd2", + "IPY_MODEL_b71f4978b51d4fac9b15b4de56e5e461" + ], + "layout": "IPY_MODEL_c760db4aae69449ea3e1cf86b14d1041", + "tabbable": null, + "tooltip": null + } + }, + "2f939f1ef2994ece8e0686504f2651ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_84946de41d6b4e2e9ef2e35cf3218f81", + "placeholder": "​", + "style": "IPY_MODEL_f00f2e5232984d7c963c74b9ec64f4a2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2f9da29241ac49bb968f64a6d062c3b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "2f9dd03e99fd411982677f88b60b88df": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "2fa0c910dd964fe3a775f667f40c80a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ede4021f397346a1bbaf04f889e766ae", + "placeholder": "​", + "style": "IPY_MODEL_64e432dabb7149fbbd70ba27b81c14b8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 359.53it/s]" + } + }, + "2fac48c91c9e4d8ebc5b988c6451db5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_efbd3981c76b4b16a9f2bcf87be65667", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f2fe462ac3da4419be4d9d3351448904", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "2fd722c6ab5c402aac511db757976db7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c63aadda0ff84a8d916c226ec25746ff", + "placeholder": "​", + "style": "IPY_MODEL_0cde7d1f26234e0ab22ac6b5a43f9c7d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "2fe6fec4b48d45e796620eaf206b2189": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "2ff62d42e0ff49e9b7f9d9b8fa398187": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "300178e2115441d5a86263fac06833fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_81b0a953ef854e98ae98615840bcbe3b", + "IPY_MODEL_6327371eae424a9abb814f2d6cd78226", + "IPY_MODEL_ca24a99c51504ec0bf3a1c38a6025f9b" + ], + "layout": "IPY_MODEL_91c7b10c3cc0443995a919981238d627", + "tabbable": null, + "tooltip": null + } + }, + "303091ebb7a64f02b73358fc2d448490": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "3043accb177b4c64acb4e80e674875d6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "304aaec822494b469695bc91abcdb242": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3072d30ebfd34f31ad2b3124ab2fefad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "307f86b78b754dc9a28dfa12b906077c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "309bcb823ac54d5c929909619de23b41": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "30aefc8bae02485baddc8bfb247a4f8e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c2fecfc08af44d1b8a3f8b7b278b692e", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d15d27c40d9d41e6860b2782f5fc99cb", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "30b6564b85c444fa8259b77b8a1723f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9f78a6ecaf2f432d85e009e93d837cb6", + "placeholder": "​", + "style": "IPY_MODEL_2655d790a2bd4814a02f3c176a306381", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 324.52it/s]" + } + }, + "30d5becb9bff49518630324d4d63daef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "30da5d15249f473bb2e55004a4fbc6fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_663ab3fae29f4b579919821ba5af362e", + "IPY_MODEL_2d840e86a62842eaa6b728ddafc180b8", + "IPY_MODEL_26edd72fa69a43d7b6ee8414ab48c62d" + ], + "layout": "IPY_MODEL_c22cb3e8ff3b4a528a108cb6eb4557ba", + "tabbable": null, + "tooltip": null + } + }, + "30e1a5e54f2741f483bf124f2ff2a0d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "30e81f5ef72d4da88912d602e62c3049": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "30feb3e8cfce44259a8100b7b8b24a25": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c1608faccb8045ef9c596d20b6ab83d8", + "IPY_MODEL_388196d142584fc483656fe2e7b3e7b7", + "IPY_MODEL_6df2fb0e349e408686ebe5e0706e1a95" + ], + "layout": "IPY_MODEL_bd28a60302a04033955e6d5fadbc863a", + "tabbable": null, + "tooltip": null + } + }, + "31028e59e9a14be7abf6aff3b0575afc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "310d1d9245d04c4a9a45cad917a0582f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7203e9e237d340d7b1f04c129c5296ff", + "IPY_MODEL_c664aa61fc06400a89721c5000173cc2", + "IPY_MODEL_7a12423597454716a573375be7583ec9" + ], + "layout": "IPY_MODEL_071b24457d4c4ced899131c950d7ad09", + "tabbable": null, + "tooltip": null + } + }, + "312121c53a9246bd9c0f22f18ca00a8a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "313143ee7f844943a1da691f40ca5414": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3131697af67a48ed8746dcfe3fb9b187": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "314da7cc950f43828e975c0cffd4a1f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c87e8eabeb734401bd1b8dbf97395190", + "placeholder": "​", + "style": "IPY_MODEL_4f567be0dc8c4dd284e29a4da111376a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "316bb0702ae945d9938eff6435d5e680": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3189672737ef423e86f74524c5a9193f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "318bf96ee79840aa94f5709217fb47ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "319584ba14b348628d4c02e6872c322e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "319ff470386d456a98f4c3ae65aa6607": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7b1b6269da4d41198f824ba9f53028ff", + "placeholder": "​", + "style": "IPY_MODEL_5d736c03f7714f3eb5bf71f9d552e708", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.69it/s]" + } + }, + "31a48327218d49048a5164d4891693c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9a387406800b4a4c91aad88c8f83506c", + "IPY_MODEL_b2e24d88b0234c28b08637454d2b878b", + "IPY_MODEL_d69ab8e9af1946799923bed3779d1369" + ], + "layout": "IPY_MODEL_674e56fd9046498ba2c118c241f64a3a", + "tabbable": null, + "tooltip": null + } + }, + "31dbda2907594097bec5e4186a8ab6e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "31e650790d554640897cf4934520f52f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "32000f4216df4e5195d6beffd52e6dca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "320ee3b4cdf7490a92e749906b7a97c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d50a23f7333241d4be2a57d5f466de97", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d6b6c6b2637743e2bbd4516b09b83366", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "321e9e00fd604385b46ab70b5e8b5dac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_93ccda3030f84eb8a7304410b9bf81aa", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_16999896e0f449c0ae2e8ec9bd03798a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "3224cefc90f5402a9d802d305da9c5db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3236de10e9944b71af1e27ce7441cdc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "32370973e49844cf93d483a6cee78072": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3237a54a7e504667afaa9a47d4c6d8f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "323ab0e6ccfa471c90ce7b0ed9b875bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_645652af372d47d29c61b58a45b07da0", + "placeholder": "​", + "style": "IPY_MODEL_92aecbc0483c446294e36d4b9e344dd9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "324aeb5f716441499557e9a9ee07ee3b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "326ae8e9295f407f8c5d0dc76a9bf667": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dea82e019357468dae668faf65db45c1", + "placeholder": "​", + "style": "IPY_MODEL_b91b8c1c9da04e1ca063911908d923f0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "32767536bf78465b9046f8eaa0ec3c5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "327d5847478447b9a45667b6b66ca9fe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ab438d338294490aa2809dbb291da93b", + "placeholder": "​", + "style": "IPY_MODEL_999e96697e8f4e0c90e33b90fa041d91", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 663.22it/s]" + } + }, + "32a0ced695004950991cf6ec82eb36b4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "32c689d43db6491f91b5fa9f30766cb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "32c75ab5751240f6b87d1e95471a1afb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b8bdaa9fb354f70b26c0831de0aafab", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0890264c02444b91aae6e0d591901415", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "32ca8975bca34151aaacbfcd06d74ae1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3318631eccbf48b6bcc985b6ccccef41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_70ee0f5ce7c640a3bb27a7e306504c42", + "placeholder": "​", + "style": "IPY_MODEL_8fe4c7842103421c89821a3d453d97bf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3318a28604704f2bbae679f7e4bfbeab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "331e2d3dd67043a9b255ab812f07ff26": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6950e7b330e84ece9ba824ddf34c8f5d", + "placeholder": "​", + "style": "IPY_MODEL_6582eef687554cb9a14264b35f1d9d1d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 370.37it/s]" + } + }, + "3322ff0f7bef48b29c28bc8feb1e6e63": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3324a850dd224e80a3deb477a4db53aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "33261ca476d8475094ee49c8c7a095ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_80dfb4abe78c409a85544860113a4d68", + "placeholder": "​", + "style": "IPY_MODEL_3f659e8b995141b1ba4a102167e68b81", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "332d9b7903b843d4a4a03d952e8fbb42": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3335e76222184b02907cf9995045bb8f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3351275589954ddf88bf9834efc74bed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b5dec4c07f148899a63b388bb16056c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e47f903898964653868952079a6dc67e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "33555a976c2a4fe88f19f0d70412203d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "33608388f3074f4bb3e28de03f4540d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "336786699ff5436da313a46db847fab4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_24e1ce964ce14924b2d574389719b850", + "IPY_MODEL_80000f8a613b4d43a12d3d1c5ca2c986", + "IPY_MODEL_8274b6b403074f3f989056a4b30ce802" + ], + "layout": "IPY_MODEL_eb6a09ef49ca4b8884a618d96173ec1f", + "tabbable": null, + "tooltip": null + } + }, + "33702b87af6d40c5922332aed275ae6a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3380fd5ec8214215abdd1bd617085a80": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "33825b8437d5442bbe179e37aff78d36": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3387c62a7ae04f9eac1b602a233201bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_323ab0e6ccfa471c90ce7b0ed9b875bd", + "IPY_MODEL_90ce2401433444468b911155a4d14367", + "IPY_MODEL_b0d8bd80bc004482b0a17359449ec20a" + ], + "layout": "IPY_MODEL_4caadb16042d40e38f66771888b44108", + "tabbable": null, + "tooltip": null + } + }, + "338f72aee3ea4cf380e3db029b924904": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5164fe6915624a5b8657702f2f87384c", + "placeholder": "​", + "style": "IPY_MODEL_730b14edbc94407a958598a93a952e75", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "33a1b42d32594f97bde913ebcedc8322": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1688eb97372f4be8a65d44b7d1fc333f", + "placeholder": "​", + "style": "IPY_MODEL_c00a7462b8bb4abe93fec4ccf0f952d7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "33ad19cb92444eb48b2e8f36e1bfe69e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ff642e82ece94e2cbd820d0ec4a229ce", + "IPY_MODEL_91cd70a065594348978dc6c81e2f74cc", + "IPY_MODEL_7efa0f66e29e4078bb18deb0509ff3ba" + ], + "layout": "IPY_MODEL_964b5bbec7e24a4591dfdc8ee3c4e16d", + "tabbable": null, + "tooltip": null + } + }, + "33b0bddeeb9e49df81b35d2367151cd0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "33b38e9fe3c04c92bf750a9a862eeb0a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "33b62a139c4f44f3a113d224a41cf311": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "33bab2bfb52a4dca83a44411d22f6ddf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "33c8cd8f47a44e5a86e58f83612915ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7b3201d692db499ea8f548ac32642193", + "IPY_MODEL_963121fc528c4fc2813598f546332238", + "IPY_MODEL_5ac84fa67ac34893b8fc8ad364a77520" + ], + "layout": "IPY_MODEL_4144e616cbd24c72a24a286e2d395dd2", + "tabbable": null, + "tooltip": null + } + }, + "33d02d3a5379479d929e9d7a50c4d2af": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_39af2214e11d4b258f94b6d08d33cba5", + "IPY_MODEL_3651428836aa4cf298fd2d9cdf324ebd", + "IPY_MODEL_c02526a5b80149d381fad6fab6543990" + ], + "layout": "IPY_MODEL_b5175acfebf14ed1a722a4613159d0c6", + "tabbable": null, + "tooltip": null + } + }, + "33d89d25d91f405d8a56d0f22bf2c9d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "33e3891cf3b649fb89441d27a7e596af": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_564ba8be56f3436c99eaa30450bb6c2d", + "placeholder": "​", + "style": "IPY_MODEL_ea6d6ceefa544cd5a6a676f3a0fa0a03", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 745.89it/s]" + } + }, + "33fc78edbcc442469aec5884ed4c1b69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a219b22e0c914c0da3b9c9fe481994a4", + "placeholder": "​", + "style": "IPY_MODEL_d12e4235dcd24bbea20e227f2d3dd161", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 586.21it/s]" + } + }, + "34012a5ef6c64b9e8e54580a32acd905": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3403417884c041deba0f425057715b22": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "340cfd329d054b18b9fcb703b8d46129": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2233c3dc8f694f03ae65669c22223ff5", + "placeholder": "​", + "style": "IPY_MODEL_e87e39f8841d45c08b9444e91a4dc9e5", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 342.16it/s]" + } + }, + "340f7949e0754aae8fae4f5823480636": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "341c14db8d004545b47be4fc8add03f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "343227abde4b4eb68eefbf1687da1eb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3318631eccbf48b6bcc985b6ccccef41", + "IPY_MODEL_44d9ad54f33143488ce2a06e48dc5684", + "IPY_MODEL_fcd227e3ddf349f7979bad1107ab4b81" + ], + "layout": "IPY_MODEL_f0456487f0e547aeaa29bcc3a76e7f87", + "tabbable": null, + "tooltip": null + } + }, + "345b87c358a848ac97aec9aa1d666d6a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_028d87bd2f944ad399401995f512723d", + "placeholder": "​", + "style": "IPY_MODEL_c7f1649b540a4f70bc06112eed0af247", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 343.83it/s]" + } + }, + "346c10712b804be5bcd25e79f086949d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ea7ec4c0efc448e398d5402c80026d3b", + "IPY_MODEL_01497d57aa4b493ca15a1e29a1b55f74", + "IPY_MODEL_e92416760f82480fad8bafb3c952b35d" + ], + "layout": "IPY_MODEL_3c831c02afd24f03994980f918b687a1", + "tabbable": null, + "tooltip": null + } + }, + "3475c766dc2a4b2b902ec59f439b0d76": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "348a36a6e37a4a4a9c77ad5fbf609f3f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0ad8e7474ebf4b7494bf6df0a3c9b939", + "IPY_MODEL_201cba8bcf8b4fb4804eabe6f12a6347", + "IPY_MODEL_3c7d22bb8f274760b16b72c8ebe21e5c" + ], + "layout": "IPY_MODEL_eb70f85102994270bdfcb15d7a12f7f7", + "tabbable": null, + "tooltip": null + } + }, + "348ec1142a854f70a2b82906cb440a61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "34cb5553d81842f092cfe98ad9520eac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4f27562aa05f48d0bb8af3e471c535a7", + "IPY_MODEL_69f4df7d11fa44e5a1cf81dd10c2c0d6", + "IPY_MODEL_60635c178aac4b71b966586959b7da56" + ], + "layout": "IPY_MODEL_f08bd578b4284e4da915f056347ade94", + "tabbable": null, + "tooltip": null + } + }, + "34d2a5c1defc46d6a24b2a4fcb36ebe5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_458f585f14e74c5d95ab6d941ab7c74f", + "placeholder": "​", + "style": "IPY_MODEL_6ca6b428051d487dbf82c4a0b7f2fec1", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 911.28it/s]" + } + }, + "34f4de6722b64ca987b819db5bc75e9e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "34f7ed2048e8474e9e1847ded58d309f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe940861228f40d8b5ca044d95986502", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dd946151ad1c48558c0be8f1cbabaa69", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "352368e7488b47eeb9d1457d77be177d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_959c5d9dcfe84f36a459b08c128bb5c8", + "placeholder": "​", + "style": "IPY_MODEL_c64c383e880b499db2f7999e9d5920dc", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 402.12it/s]" + } + }, + "35250da3c5d24ac6be004b8377f0471f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b02564a74a224e339edeea3026d02aca", + "IPY_MODEL_d6c04d9648794c81900267ae99e3cbbb", + "IPY_MODEL_f78f3421fd10462fba8a83230d32e8e2" + ], + "layout": "IPY_MODEL_e1c82793074a45cebb25c4d0b1e45e54", + "tabbable": null, + "tooltip": null + } + }, + "352556f7e89a436db929862ca7c0f3c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "352aa658a2ed4352bd88f8925be4aba3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3542660c68114fb7832c9038c477df1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2501b37ac7714d138f4b8e81e8ba0b12", + "placeholder": "​", + "style": "IPY_MODEL_bc87c151a5f24387bd83a9d80698fb42", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 362.83it/s]" + } + }, + "354bd51927e9489ca9df286509b32b38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_525a556e516e4552aaa86fc267098303", + "placeholder": "​", + "style": "IPY_MODEL_d6f1beb88ab94a5bb1cf3de8b2d2aeb0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "356010f9db824b0a95d9a3c3c4fa0fda": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "35750473f38b4157bb53b354f15ec639": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3577a4fecaf344b992fcc1cf4bdf6166": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "35a6e71f90194004b668ff7b6c5b0ab1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7acef41c900d40bcaa0a215d9a5daece", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_71343eb23ad943ba8f6f6422de1579f0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "35c3d215472443dda86baf932315c131": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7e0ea0b1ad5a450797e613b858c7604b", + "placeholder": "​", + "style": "IPY_MODEL_f58b335bb9234a41b1d0c40cb2bd3146", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 351.21it/s]" + } + }, + "35c9ca489b884715aeb1c1b9d614b005": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ab77a2e263a64999aff1a3a16d3f0fd5", + "placeholder": "​", + "style": "IPY_MODEL_98fb16a0d1af45a49d3d21f634cd4ee2", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "35cd24cbe3544c128f2bab3155a510ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4b9532f111545f3b38660a1e0afaf8c", + "placeholder": "​", + "style": "IPY_MODEL_eea2b978bde343fd800819512121340c", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 716.83it/s]" + } + }, + "35d20c69fdb94bd7b9be6d849e9210ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b6903d56d57b4705bc608c36022cc0d4", + "IPY_MODEL_7b4c390655294c95a31dae811f2b441d", + "IPY_MODEL_5295fc209b264d2287b167013ac9bde7" + ], + "layout": "IPY_MODEL_acf39e753a0b47edbb8ab2f3b1612c32", + "tabbable": null, + "tooltip": null + } + }, + "35d3dcb43d6848bdb6b04981bc0b6175": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "35db3e92c0e54b68a6f972c907909850": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_da2723a4dcd845298c71e800c4cf2047", + "placeholder": "​", + "style": "IPY_MODEL_7dbdef88fd474ea0a6688736063202b9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "35e03fcf29004bd38544056e2e887c36": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "35e122e6c58e473d8d923bb4191e6e79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "35eba2f8bb364320b874de8ffd41778a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f72757c47d42496bbe5745deb55a6d8d", + "IPY_MODEL_13224578e9824f0bb9e638077bf0faf8", + "IPY_MODEL_3cb74f7d1f5044de8f48e9bf93656416" + ], + "layout": "IPY_MODEL_1f9eceb02a5c4a2c94523f63cec0fdbe", + "tabbable": null, + "tooltip": null + } + }, + "35f92611dfce417b8655a0d95b408c70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6efb64b9ae5d469998abedd4906d89ce", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6a1b5b84037e43d69f0479115927bf34", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "36050c7e93f64c9cab6e8e40ba0c13a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3f38421af32e4f6f818b9af9661669c5", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_09580681587f45a7b588887eca68ff2f", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "3622a384e3864619865c30189617b6e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b8587bab2d504450a978186b44e1c406", + "placeholder": "​", + "style": "IPY_MODEL_9ebb07d18f864fef8b0c10dbe31e8cab", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 373.39it/s]" + } + }, + "362aef7988714324856a1a1e016f24aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ab20df6a83a04e93a8818d2e0faf0aef", + "IPY_MODEL_321e9e00fd604385b46ab70b5e8b5dac", + "IPY_MODEL_dc90e53658214dc08ea587cc099abaee" + ], + "layout": "IPY_MODEL_2d08d5543c62413ab5f2c993c506260e", + "tabbable": null, + "tooltip": null + } + }, + "3634268f09d34b8ba0780ebfd93835fa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3651428836aa4cf298fd2d9cdf324ebd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5f4635c33e914a77aa01b41917fa285f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3c733d4e5510409ca6d026894e89d2e8", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "3651612975aa42b580bcf73021a9a58f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3673ffd60f464542af9171a7fbd53991": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "369b22041fa7445cae0aad1b7ba9c011": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5eee09fa7db5419b87468ed4b58529de", + "placeholder": "​", + "style": "IPY_MODEL_fc5fa153f3e84c10b611a109861e9e1d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "369e1d0305a947199de1dd3347408c49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e64ce418c24e4f61b23b9920e24511ad", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c577b6ce25814d15b9cdfcb94ce7000a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "36b0d8d508864e418a3b63ff0f74f9cf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "36b261c6fbf0406684f42348c04fff27": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "36c55aac31e5412c816e437863adf597": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_763ea0250ad74883ba96dd4d828ae9e8", + "IPY_MODEL_a5a824ce0d284a69a3bc408e98f22810", + "IPY_MODEL_663f1fe21fcf4b80af639fc84ffdadbf" + ], + "layout": "IPY_MODEL_db7ea5e632734c008ca8a5882fcb74f5", + "tabbable": null, + "tooltip": null + } + }, + "36c771ca7e6d4f8fbda4ac55ce87fe1d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "36c8ede41efd43de912a4c48dc15dc2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_80b7dbc2c85140cc9170da40fc41b068", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0aae87e8411a450ab06bf6a183e11d9b", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "36ca674ae1424458b93e9ab4e03adaab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "36fdb9215c354348a899f05ef59373cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "370097374dd24e18933419ba459d5b4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_793538526a7c4347ae69cbeca9107c3a", + "placeholder": "​", + "style": "IPY_MODEL_2b4b0544440349b0a138b67b9bc6f922", + "tabbable": null, + "tooltip": null, + "value": "Epoch 49: 100%" + } + }, + "371051f5b61745f2876435cc30115a27": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "371095e9b4264eebbf481cf0ee14f800": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "37125429788142babf17d20959d22937": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cc596f85b34d478c872a1487d3c2be45", + "IPY_MODEL_4cbb13c44df44e66b3b992d0f23127be", + "IPY_MODEL_b803f5b0b14a46a4807b999bc8da1476" + ], + "layout": "IPY_MODEL_99380adceaf749cd916c7ccd5096086b", + "tabbable": null, + "tooltip": null + } + }, + "373b6f50136e4f79943267895b9f6bde": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_46c7690e4aa94080b43420f40b8bc346", + "placeholder": "​", + "style": "IPY_MODEL_69f5c7733d09487ca16850f87974e2de", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 479.43it/s]" + } + }, + "3742adb644db4a0fa1874edc34fc1092": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "374757980efe4d4cbd00b19a11787c97": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8e0f857ae1b84227abc28fb054e9081a", + "placeholder": "​", + "style": "IPY_MODEL_c414d7c5f0e3498a9906320c53b28d1e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "374761dfc37042ed8786d9a5d44bbab7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3748dbd8aaa94cac873270dae2c1608b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c65141262d4a4923b9fd66715da7dfcc", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c789908edda2491ba457b27c73220632", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "37623b14ea9a4506a869a5678342633e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "377e5b2d9ec1471ca82527018b7e20b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b14f7e93e80400db3cd6b709110beb4", + "placeholder": "​", + "style": "IPY_MODEL_1e317f4367254bdd9e4174d320164642", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "377e77fb988e4c039d7b814ed7b9c596": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0076a9d3e25d433c8a126549ee5a0ce5", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_08d16fe49da241658fe60709e4b9bdfc", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "377f295f56cc498486eea0485def0434": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3781e10d43934126bc83e58535033938": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_28680aaeef81409a94f6e4bc03d46b59", + "IPY_MODEL_320ee3b4cdf7490a92e749906b7a97c2", + "IPY_MODEL_04bf9b1fc9a8455dbab3032af38c5ac6" + ], + "layout": "IPY_MODEL_b61b2062103f41f79565eef67ee4c088", + "tabbable": null, + "tooltip": null + } + }, + "378b19c7eac744308f7e66510ed91e53": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_28354023b09647f080c1aa05e1a925c0", + "IPY_MODEL_597a0b8ac00d44aeaaff4a16191fff58", + "IPY_MODEL_4335a9cbea8d410ab55780779beee42b" + ], + "layout": "IPY_MODEL_afd7842d757e45c38c667b4a3bceebae", + "tabbable": null, + "tooltip": null + } + }, + "3791ee1ab07141f5912286c8970b42c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_510377a55d604769877c8084594bf27d", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_64de8a94380541ee8d11e4c1c161ae60", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "37936aa444e94944af7afad87bb0669f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "379584f39d2843378eca19981e050f6f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3797dde55b414ff7bfe3f58f0ada185b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "37ad355f405a41b5a631926c31eec043": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_96c8a2f1003c4ad392f9c164ed068ab9", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_907b335c5f6d45a3bf6c44945c25c7c8", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "37c5f92c1f3249d8b40f6a821c7f8a90": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "37d8fb547f334395b3c1fdb7bb49f944": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "37e0647cee4b48e9bce202e3151de4f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "37e4ebfbcdcc4604b03139d39eddfcd2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "37f1475666e141ac926a9e40774d92bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "37f67e289dfc4494866667d9ea563a65": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "37f79c28b4174c578dcb1ea2258ecfd0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c20f403f0a0e478a8ada6ba07e9b9c66", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ef527e936cde45848e61e036f39b8072", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "37f81733840647308aca501baf1147f4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "38069a09ec9d475f8b78e34b211e2c83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fa73c3cbc19d437bbdb3604d090cfb51", + "placeholder": "​", + "style": "IPY_MODEL_b45f431c8c2e4272866bce099b78c000", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 223.86it/s]" + } + }, + "3817168444df4f0e81bf61973000ca71": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3818f316eaca4ba495994364785ace29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_83ac856fd152445f9b5528c607244fc2", + "IPY_MODEL_ac24092cc8354045b3c2143c01ef5ccc", + "IPY_MODEL_29ba52fbf6e443578987417923ec5a85" + ], + "layout": "IPY_MODEL_ac31d646e5f94246aafc208db1168b6f", + "tabbable": null, + "tooltip": null + } + }, + "381ae0dcf6c64bb5b3ca393c62ff9dda": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "381ae1d322304ec98228369f0489c2de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a2a96073de3f4a879e8f66508ed0e404", + "placeholder": "​", + "style": "IPY_MODEL_2944699774c948929c5cc5e396c65094", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 390.58it/s]" + } + }, + "382ed276cb7c4212a905810424cf152b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8c5a1c37bac4487f81e18b881b9666d7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_069c0aee8c3a442cbd5d1597b33a757f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "38370b7c9bb84be6a158c3b9052dfa0e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "383f2bc74e4746b88b5660a305ef9337": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_34012a5ef6c64b9e8e54580a32acd905", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1a00df014ff34fd5ac67dd0bc7d8970d", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "3845f178ef414daaab9de546cc324b44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3857a7d6c1514fe8a48956376e3e4f3f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "38755c7422b34a949cc732c06b1e682e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_10c11779e52149a8a4b8f1aa66745a9e", + "IPY_MODEL_3da33b7de9e14cd480aa1b6a9da8c89a", + "IPY_MODEL_11c809d48e6d42bba7c0d6d9edf06087" + ], + "layout": "IPY_MODEL_6935e568cc5441f18a68b5aec86de06a", + "tabbable": null, + "tooltip": null + } + }, + "388196d142584fc483656fe2e7b3e7b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a4feb9c1a2cb4eb0955de81bcb5e22fa", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0d3c0e74cd704b14bc4edeffc59ac92f", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "38861833e60b406480e850b19914cfb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_63931418586b4041b2b6a3ef7f8c9325", + "placeholder": "​", + "style": "IPY_MODEL_03e48354297f4ee4b1f4b98e2293d077", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 752.60it/s]" + } + }, + "388af2b4ec0c4378b8b06e3ba154a5df": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "38b1b0db2ada465797993f95bcdedf1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_029538f3323548769d9813c2bc017bce", + "IPY_MODEL_30aefc8bae02485baddc8bfb247a4f8e", + "IPY_MODEL_7b71651228d0433b97b1e13cd8ddcb53" + ], + "layout": "IPY_MODEL_c337343056c147c1835ba6856f456244", + "tabbable": null, + "tooltip": null + } + }, + "38b9a3fbca4445b7add262184c4679f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "38bcd38c7bc546f78f8c4b4781ded9fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c08aa994bbfe41e18f68c132849e61d2", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9eb24e255c134925b32630e8b04fdb06", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "38c468b16e1846a4af807bf5ae0c681c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "38cadf844de140138c6a5c037e615f91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d51866704daa49e19e3c007401838c12", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ae078830551543a3bcfca61471771c96", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "38dcc40676f948a9a864c71924ca2230": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "38ed881a3f3e43a18631b64cc078750f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "38f04f6b56be477dbfb1a0f7bb15de65": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "39010ef0ac2941e5a783e7b46ce80c5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "390a5adf4ba24ce68949cb9711f5a10f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6e570fd0a8ce499b91573764386c271a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_485c7199d0964b0aa339ba6723302ebf", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "39131103ec0a4fa7b1ed665fde5dedec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_691c204989854debb9cfd17bd37983e4", + "placeholder": "​", + "style": "IPY_MODEL_ed94de84efeb438b9670122487811a84", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 534.05it/s]" + } + }, + "39156abf52fb4c2285f15831cd5abe1d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3915c694dbde40eb8196b37d8a64a8b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "39171acaf7ee4214b08e6b6ba984c308": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "392e237371804c85aa2035b7a9615938": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "393002fce24941199c8501129825a0bf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "393f854093ac4eb49b168468f6993764": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3940e0165c8b4dd9aec550b1750c3a25": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3958d4f599f746efac1f2499a4b25f32": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "39af2214e11d4b258f94b6d08d33cba5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca315ef81c084243b033bf3d1be2f7fb", + "placeholder": "​", + "style": "IPY_MODEL_91bb14f6f13a4b28a4922c3f2e049d77", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "39b7f87744f249e28435d726753ffec7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "39bd084a1324483ea682811fc312319a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "39bfaf5c5ad646f8b1d413da5502067f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9f208c90d4d8413f98f9dd92860da3b7", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a89adb3d7f66475ba204b24e413f3860", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "39da565ec2514708b2ec451e941a4667": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "39f7563fa0174b9ca92f316857858cca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3a08fa2ecdac4877a3280c457ef9a1c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_222e0e21f8c14646bbf4f789c3745833", + "placeholder": "​", + "style": "IPY_MODEL_379584f39d2843378eca19981e050f6f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 381.24it/s]" + } + }, + "3a09a15c382e4200ba09eccc2c8e702b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3a09e196ff1f43fa83a9a7bd5b939d4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_559067c86ce54c0c9f1becc6b66e581c", + "placeholder": "​", + "style": "IPY_MODEL_bb69574ef4b14ee59cf8fcfacb60508d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3a20929e7e28465b9e3ca911e1b396de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a30d3d1b1791428990f7ccd09807b7d8", + "IPY_MODEL_76acae4130b7469091cfb29b9030dc92", + "IPY_MODEL_dcacbc5d985d4778b17cfe920491e7b4" + ], + "layout": "IPY_MODEL_290040909155439da76e83f9810fcd9c", + "tabbable": null, + "tooltip": null + } + }, + "3a40d1acb98d4a15ae9a92f892bba8fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1ba6ee667c1a40bca78fe8fd9e474b6d", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b768273a6942470aa03801a07a932afe", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "3a4dd2dc206b4bd4b749f549722890e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3a52123883ef482b8243cf948e7a16a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ffe129907e8745748016f4a2bc3011fc", + "placeholder": "​", + "style": "IPY_MODEL_4589f116938249139b91646b73377629", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3a6132aca4d3410e8f2eaceb7c630935": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3a61add925cf4595af7180fcb1b3c542": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3a62a9bdcdf142ec8f19f8bf211af765": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3a6b182a4ff7420383bdea4de554dbd4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3a6bd0833dbe4c42bad896a6859d5f9e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e95c738acc23476aa21bf1f52e33ed67", + "placeholder": "​", + "style": "IPY_MODEL_4d9b615d367743a8990c710cb490dffe", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3a6c6072f931407689ffa75e7f141826": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3a6cc30c5607455790cafadeee6ca02a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3a77952ef6034c589c1de1b3e61b6a4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3a90e4462d5f45b2bda6833cfa1b27e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_912aa95c95f64785b5af3ea7b42007e2", + "placeholder": "​", + "style": "IPY_MODEL_fee6bbcd944748d2ab66d5afa61576af", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3a967fc3c43d4efbbea2c344df44ccb6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3a97fc023b4c488c82e7aecac0685552": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b7c4196a9b5b45ada45355299f377fcf", + "placeholder": "​", + "style": "IPY_MODEL_1eb68b4d2129419eba6ea2d91ded25a2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 377.65it/s]" + } + }, + "3a9f765ef44e429ea443097445fb4571": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b825cd45ad6042f9aeb2666dba899a36", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f70dde5348c348bb9165b9a3f59e949a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "3aabec2a233347ce947d37c2e0e57462": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c334276ed3c4437cbb3e50c08926f555", + "placeholder": "​", + "style": "IPY_MODEL_79db360c98a34391916b61b4db86c815", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3ac366a803af4e148c271c50bdd1ea1e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3ac48deef2464b45a4fffb3f977ec115": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_74e7acc6a783455f9e38e4c399a1fa16", + "placeholder": "​", + "style": "IPY_MODEL_d66fd2bae26d4eb0910d33fb2d3ed641", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 356.27it/s]" + } + }, + "3ad052ca18e1437397f32e03e2d53fb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e0b61a9afdc14317adf2d2f0a8b6bfc8", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_020fe03f2ead43068199bf2258045bb4", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "3ae1da45352f490da1c14ac3e6a125f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3aed64ad68c542d5a0147669c646d282": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3af1aa6f8075443f98cb3b83617cc259": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3072d30ebfd34f31ad2b3124ab2fefad", + "placeholder": "​", + "style": "IPY_MODEL_d84de0e17db8467d86c8dae6b1352111", + "tabbable": null, + "tooltip": null, + "value": " 77/77 [00:34<00:00, 2.26it/s, v_num=13]" + } + }, + "3b02d7e8b4f643c3b4e80b92be4df5a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_40bc5214e49447a7bce4adfb01a57f91", + "IPY_MODEL_04b2258f588e442f87268d4eb17434ee", + "IPY_MODEL_4a88bcc2f65f4bdb83857e8bcf720b1c" + ], + "layout": "IPY_MODEL_9e9542ec0f574021a57d0989445d7d41", + "tabbable": null, + "tooltip": null + } + }, + "3b1221fec85741c2a36ce20be6233d71": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b14f7e93e80400db3cd6b709110beb4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b2f344341c348c688a7082667e6ee6f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_19f360e0e66449a4a39b91263c14a626", + "placeholder": "​", + "style": "IPY_MODEL_7620dbe35985495cb244cc611eb72392", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.68it/s]" + } + }, + "3b3b2ff6adb44b89a2bbef2d0828cc37": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8d5e5bb0827d4deab2e99d8c5ad10451", + "placeholder": "​", + "style": "IPY_MODEL_51dc508a82b249ab86bbf4b3cca4efe6", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 471.36it/s]" + } + }, + "3b3b3d9318f84970b75b90d6b4e6cef0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3b3d44ed44264640bccf51a10e63540e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_14e999762b88440e8d5694ee4daf08ea", + "placeholder": "​", + "style": "IPY_MODEL_d2a908f886e648d4b8b01caabedb5609", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 348.37it/s]" + } + }, + "3b49ac5fd4fe47adad448ad25cfb99b9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b4cbd5c31124ec99e76b3b0093a7547": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3b55719795db4d14b21ecb6f6a92f68a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3b5ab2cb73b24053846b8ca347a62039": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3b74c82b81974a3bb45e4d822bb67f92": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b74da5086ce4a46b1814bcdd1f20003": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3b77d0c6f3674510bf5f984540e21b15": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3b77d623b7fd400ba06a3b78285fac0e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b79ed0485f54d62bb4dfdbafb41e47e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3b7d8b0adb3d4e828f2e56523a734f10": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b15daf48c1e84bfa9f44ccd7650ed07d", + "placeholder": "​", + "style": "IPY_MODEL_95bc07b2e1f746efa303d0d5306993a5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3b7e9b4473e6417c952b49db67dbd953": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_79f33c3272b447d7ad689fc10400248d", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3651612975aa42b580bcf73021a9a58f", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "3b8133199c7742a88474d007a87c488c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3b8bdaa9fb354f70b26c0831de0aafab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b91d30eb54248a9a37d4db78a00394b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3b9226f150c344cabcf148c99bc1733e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3ba87b327d564747af10f180fc727b8d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3baaa3607f194de38d7b5e5267f974f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_25870dca629c423fa273447bfb366058", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_24798e270f1b4b8596bb36444f10fd4c", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "3bb35597f3d5494b9a3b078f83055ace": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3bd13cac76ac4ba29cbd5f2147e4a623": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3bd254c975e243a3b2cfcfae0a0aefd5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3bda25cffd7d41ac8d2636e841039865": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_692df84f9d2a4e3eb3d93071048b4b2e", + "IPY_MODEL_fd0644898e094ef184ced40255ace271", + "IPY_MODEL_c60fe298973149dbb61443419d75dfe5" + ], + "layout": "IPY_MODEL_9f6c9862294443028e21c09f1f77497c", + "tabbable": null, + "tooltip": null + } + }, + "3bdb5ca050a848618b0966a9240d4c74": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_696b67adc1954c30842d0083d4a02a60", + "placeholder": "​", + "style": "IPY_MODEL_0ce2eee173e94d6abef77515a0645f9f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.88it/s]" + } + }, + "3be458a67698436dae4e4b9db5cc83f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3bed602c288c43c6a02e2f46692f5754": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9c21769b8ed749c8b8fefbd68df8a704", + "placeholder": "​", + "style": "IPY_MODEL_53fe4a99af894217b56eff1f1b6f4aaf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3bf3b3a6751d4353b1e662e893e4f7f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4b39f63116b46dfb3e3f945474389a3", + "placeholder": "​", + "style": "IPY_MODEL_6ed78796737f4b5a89d881e16b922006", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3c020e786fc747bf8cd983be42d8c527": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3c0ca9c2ce84495ab9c5fe29d10480e9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3c141207f2044f8b939f015f95c76828": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3c21e989eb924c51afa3d6ab133ff18f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3c53722241684eb1b214fb84930b1944": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca721ab4f57f49d987f00db559fef55e", + "placeholder": "​", + "style": "IPY_MODEL_08e16c84d03243bb90867987c32be5ad", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.15it/s]" + } + }, + "3c556078521b4787b2d5e121545ec087": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3c733d4e5510409ca6d026894e89d2e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3c7d22bb8f274760b16b72c8ebe21e5c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a4ecf1b1582344fb97082ca6263989fa", + "placeholder": "​", + "style": "IPY_MODEL_9c0393744dfe41b0a557a14f7557b40e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 570.19it/s]" + } + }, + "3c831c02afd24f03994980f918b687a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3c88f9930094444d8a84e97e2deaa5a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e90b951827b84c729253938d196c8623", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b2d7ea05c82d43a687ffa339f448d33b", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "3c8ceb3e7d964dbe9c28ef75c43ddf05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3ca553ed754b40e4bea067716c25a414": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3cb74f7d1f5044de8f48e9bf93656416": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a504b81b5cb24355a5d77b50485964a5", + "placeholder": "​", + "style": "IPY_MODEL_123d59eb82854e1dbd6a930da90ce8cc", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 540.14it/s]" + } + }, + "3cc600c83e3045ec8a07cd89abafce52": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3cd3dbf948b54ffdae204819e885927b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3ce7fdfee24b43b1a6aa923d56c30443": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3cee6ef20b1441929684d2e2e2209d52": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3d0ce6d97cca49188a2e855fe6940799": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3d1e01b208a54a75b8b518d4e35cbb48": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3d1f4e1b138d49a089df1ee7e6f8417c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3d25cf5e64e2464196583c18e4b9f08c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3d38d0df87db414381bb87f460f3d714": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "3d51167ce8bd42729c7e24dac3e1e7ac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3d592f5f10e240df90e1de1560ef0424": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3d641e072b4e4db88eea2758a2c9af4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3d68dd9016864f5d973ff48ee1554321": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9ffa5b62a4a749c89339b78ac4d7d1dd", + "IPY_MODEL_993ec969b282457fa773024f80a25b44", + "IPY_MODEL_9bea44cb17b94218bce2249df35109b4" + ], + "layout": "IPY_MODEL_ccd6f7dbedbd461582909e158dee1c81", + "tabbable": null, + "tooltip": null + } + }, + "3d716932314149648367ed8dc07e1f70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3d8d325c64dc4bbe841daabfe45a38f7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3d8e5570122a43ef879c894a760d2788": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3d933797461546efadc5a87277eeaf4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3da33b7de9e14cd480aa1b6a9da8c89a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b6438d771d084493b67b64aa9b48aa3f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_72140bc5d59d4224a9b3a1acd0dd8fa5", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "3dacf3d615594a9884ef59a89ed0c1e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9324b288d4244599b4f62c44a5bd5e51", + "IPY_MODEL_019534944fb444039a737655a6a57760", + "IPY_MODEL_bb73e111b3b048cdb0cd292b5ab2e247" + ], + "layout": "IPY_MODEL_692fc0f9d4a14ff6ab17e58cf19a0713", + "tabbable": null, + "tooltip": null + } + }, + "3db38f25a3f944099d5726e419dd41c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e73bdad499c5479aafb3f0296e60700a", + "placeholder": "​", + "style": "IPY_MODEL_3d716932314149648367ed8dc07e1f70", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 227.82it/s]" + } + }, + "3dbba7bdc616458db88cb80415768f0e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3dc6d35eb2b3411ca0d14950852a3bca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3dcd12c7b8c945b4be2c4f97f01395d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3dcd242109e144d7b500aecfc28987f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3dd9e64f1abc479ea1100a88b54464d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3dddfb42c1c94fdf90cbdbb8671e2f07": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3de010d447e14f7885ad82380d0ed23d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_82bd1083e4c547e79a05b333d12c1eca", + "IPY_MODEL_c103696916cd408688c9fc1e9573da36", + "IPY_MODEL_be75c47c1a8a431b9300b0d00af34886" + ], + "layout": "IPY_MODEL_7323a506e3bd4357b583736506ee808a", + "tabbable": null, + "tooltip": null + } + }, + "3de71c0b6af9485b9818edd381766dc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_79edc8084ed049ada20b44512f3de4f9", + "placeholder": "​", + "style": "IPY_MODEL_ccbde5765e104768b870fc617d6f40bb", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 62.32it/s]" + } + }, + "3dee09cd49d8472a828f2945ddd3d7cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d64be133567445e0848c4f511e185c74", + "placeholder": "​", + "style": "IPY_MODEL_48a156b7ce6a4fe99e65a0b8e6bc707b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3dfc07eb8212482ab88cdce0e78dceb2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6e7f1599dc7d4684b9244a58b9f08e4e", + "placeholder": "​", + "style": "IPY_MODEL_f90d897ade8844478470346b1ff87439", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 350.06it/s]" + } + }, + "3e001e136be14cf5a0574b809155d32b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e002833f4a349bb95c54e94341f7b2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d62fc8f026bc4bdc9ea56d78774cb829", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3c8ceb3e7d964dbe9c28ef75c43ddf05", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "3e083f34f0f643ca9716f1a380ad1f75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e21998fd1d14f5ca50e167382018e59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0a82005008d245e3969d7cd4cd65ba74", + "placeholder": "​", + "style": "IPY_MODEL_fc36dc05b887446888e46ddc707f78c0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3e3170ed75c04b6d9cc484765aa042cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3e32bd3ac3364152bc3bf9976befc8f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3e38f9ac5d644c8b914fcda42d71fd30": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c46a99dbd4424b5d80167cbf906aedb9", + "IPY_MODEL_a5e510bd37fd4833bb1ef80798fa7443", + "IPY_MODEL_3db38f25a3f944099d5726e419dd41c0" + ], + "layout": "IPY_MODEL_6655c36ea12b4153977001d9c2a40898", + "tabbable": null, + "tooltip": null + } + }, + "3e41bd7a8c7b45c9a15896b3f5a60dd2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e489a0a864f4755b3e38bd3df9bc72a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3e4afe1233474c49a42444949e30d049": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e617c0641034f66817a13cdc8d9b13c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e8db211917d4e1d96faa9b018ab31dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3e95380434864ddbad62c076e266c26b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cb48a72771d048eaa5716ca4947bfd58", + "placeholder": "​", + "style": "IPY_MODEL_21a88eea9c314bdcaa4997911669aeee", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 350.32it/s]" + } + }, + "3e9c813d85cf4557b3f8bec4720c71d5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3eaaa8a1a0b04ea1a4ed8b6b04a6d0ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3fe385462a10402b94c80896d4b6ffb9", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_936439376656413bb274a1fd61261f6e", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "3eac3d4e54b84940a867dafeb3ad74c7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3eaf1c7f32954fe796526dc2f0796783": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3eb8899085984681bf04e10dd9eb2c1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3ec80ca7c9ff462b8ffe5f7df9aa2265": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3eca998aaa9d4498916d0cfa331b3033": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3ed211d2e474471a833e45966af781ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac89c8b40a5d4b53b609d76048892f1b", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ea54b836fe1e4814835a865266fe4fac", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "3eee2abff98b4e1080d1ade699034ec0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9a8e5425d9c34ccb9769af77133ac525", + "IPY_MODEL_d6c4fa7a225c43099a75ce74e7156a91", + "IPY_MODEL_1acaa46097774353ad57629ee5c11531" + ], + "layout": "IPY_MODEL_e94ffa18831b446baff44a1fb06490f9", + "tabbable": null, + "tooltip": null + } + }, + "3f120172c05946d88ae1c9377f34efaa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5849840231e44ceea10e6244db7e1977", + "IPY_MODEL_de4185ae89bc41a4832fa7ce1115c30f", + "IPY_MODEL_2bb853f13669484aa9342f3c22ca6ffe" + ], + "layout": "IPY_MODEL_ab208f586567496f8a77615908235ea6", + "tabbable": null, + "tooltip": null + } + }, + "3f125a09625043818326a3e7b3baec1c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3f18fd6ef44f40f5bdf7d3b49326b3c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3f1f3f493d834d0382bbccf614b0b40a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3f329514da2d424ca4e77b6b29dc8694": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_21335a64b9d648a1abcec395d7cd09d4", + "placeholder": "​", + "style": "IPY_MODEL_61bbd4b92f6c4223a1f3d4fec49b8c63", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3f38421af32e4f6f818b9af9661669c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3f3cfeef6c994126bb25ef544e10d3e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8563dbda09d44baebcaf2cf654f1a6d4", + "IPY_MODEL_b8dc4d0a33204002938bbe3c886adef6", + "IPY_MODEL_5a1e5c19df6042a0b16591ddc4e789eb" + ], + "layout": "IPY_MODEL_c758ec84de544a449d86d16fdf15df09", + "tabbable": null, + "tooltip": null + } + }, + "3f437b89384a47858795d9443f775f9c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4ba7519d5c240389c53153c0777c74e", + "placeholder": "​", + "style": "IPY_MODEL_85f0b5b8043942aaa1694367a48b3404", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 746.26it/s]" + } + }, + "3f659e8b995141b1ba4a102167e68b81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3f6a9238ef434d2eacc967a8bf54f9d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3f743e04a7984eadbe8c150c15418465": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3f7a47bb2b3d4d66a175876d94c32782": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3f8d43b7146e4d24888272dd8e677dbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3f9751192b1645aaaf47aaaf74e93c6a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_687cd53b81464381b582f57f046193ad", + "placeholder": "​", + "style": "IPY_MODEL_ff4fe62e6eb443a8a26dcd3bdba849b5", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.31it/s]" + } + }, + "3fb68e94307b4ea1afb069d6ee063103": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "3fbf37457078436cb2e340b9586a49a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "3fc7ba2bdc1946e182c4574b2dbbab13": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5430097029724c95ac10c483490ebc10", + "placeholder": "​", + "style": "IPY_MODEL_d433a431891043c99ad421daf777aeaa", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3fd706cdf3ee4469bc9e6943a228cbb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "3fe385462a10402b94c80896d4b6ffb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3ff1f77bbabc46b89f1831e91f7a972c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_14f3a2dd95f549a6bef5ccff56efc464", + "placeholder": "​", + "style": "IPY_MODEL_0eb97fd63a00424f90193a0006e21f35", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "3ff4863f4fb84e1cb2aa195544c45975": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d87cd9fc0aac40679809713344ffd3d8", + "placeholder": "​", + "style": "IPY_MODEL_ce77a1ea00f743b28cf39d5f1dcb9769", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 513.35it/s]" + } + }, + "3ffec96099bf44ca8a2bbc9cd8839c63": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a8deb3839694672a81b37174c71972a", + "placeholder": "​", + "style": "IPY_MODEL_2cd87c471c7e4045bfdcc940ad7ec2e2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4001a4bcf6ab4e00bffa1ffef50de068": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5351aeabfff2497a8f937de795a77171", + "placeholder": "​", + "style": "IPY_MODEL_9ed1beb7107f46e096a98b37b76b2f05", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4002478f298c4d76b1b3f2d559b3b069": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40181195f5144311a7ce9f40800b530e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "40255b7ec9e7472f9af688365129f68f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40357ef52e4841b29f30b1cbb5329bf9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "403aeb955ee34d019221bb98ed5f01f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "404689901e2b459a95221d3499fdaa98": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "404bdd6cb1b94639a67ccf3918b98706": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4053e76f0cbe4bbc93a1c0972b961a8c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4054f655d9a048e380f86adadf5b1312": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9ade98837b544a32b8ca1b1aa43c66f6", + "IPY_MODEL_1fb3de208eff49858a7c85de6e396429", + "IPY_MODEL_ed4b595103444d19a013b044f584a86a" + ], + "layout": "IPY_MODEL_d0b5842a98c84e71b26cbe1a3c2d68ac", + "tabbable": null, + "tooltip": null + } + }, + "40570a4badea401cb9d24b6147b802a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4aad1a0a7d74fd89a58dac18dfc66c0", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5095ad5f9907455abadc2b73d07451b9", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "40650535e677415da7bc1a702f197a79": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "407e331e90af461c94690a6a665ce5c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_646af56c4d65484d918214dc39d9c137", + "placeholder": "​", + "style": "IPY_MODEL_e29f858cd7f94faab9b48247bb2d3a83", + "tabbable": null, + "tooltip": null, + "value": " 313/313 [00:05<00:00, 57.98it/s, v_num=59]" + } + }, + "408563b4437b449b852959a2cfd3899e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "408ab68790774292ba1cb847a40a0b41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40a0e89886c1447aa9b01623008c2c2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac458a9d8c53445194c632845cb3b21d", + "placeholder": "​", + "style": "IPY_MODEL_8bc33a3592e34bbc830ccb41daf229dc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "40a2c5cb64a94387947bf793dcca5072": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "40a4394346bc4c71a0118a4d0e4d7b87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4ed93c71ba3d459083fea30db9004fe7", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_63a53bb6342a4474882b792d21879dbe", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "40a651d95e934ab5978f88da16721b36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "40b1b46633d74bbfb37ffe764573083f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c84a97a9fd85433298d9331aed739621", + "IPY_MODEL_a9765ddd254e491aa6a62916d97299ab", + "IPY_MODEL_65cd429308434b8caac5c1073ca4021c" + ], + "layout": "IPY_MODEL_9df7fe2c31254c11a45100b849f0e7ee", + "tabbable": null, + "tooltip": null + } + }, + "40b4a4c0a1a0492e9a9f8df4f14eda1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40ba8d4912d345948269bc3279c42c93": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "40bc5214e49447a7bce4adfb01a57f91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2f6380b6ff8844ec8194ac829ac48019", + "placeholder": "​", + "style": "IPY_MODEL_45a13c21bc82473e97de4e67debb665c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "40c1eefefe6f410d87f75988baac2233": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "40c696057422486595247d4cf08df588": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40c91fe9199044449263986192084ec4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_faacddc17928404db08ff203f029ed53", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2b78daee4c49486cbe101a0967108aff", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "40ed7d799cfe4e758279e9b50b2c7bf1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "40f0104a57394a70b76f53d28a200705": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "410699f98a8e49749a5662aaf6466150": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4144e616cbd24c72a24a286e2d395dd2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "41455f0fc9664926acde150aa1b02104": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "41529ae1fd1a4d79be47a04658b71fd2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b3ed832278df423387ca0eddd342050b", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b6addcbee5334fb3ae77096a22864d28", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "4156563103e84cd1bca29e2cca6af124": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_465b3fdbfad64f01ba2af0da1d2a0276", + "placeholder": "​", + "style": "IPY_MODEL_90d79df7e99c4ab7bd13432653ca94d7", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "41740b1f4ac94dea9697ebae06057e92": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "41a31f70f27e474fb97c8273b62352f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "41adb98a0e4b4c65972c03d417cdb2d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "41cf866639cd4c56b950727d592fff0b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "41d34007389448f98b965f429e956e9c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "41e8dc173b844db98f51ad05e5d9ddac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_93d165a8693a410d95c2d567779f1845", + "placeholder": "​", + "style": "IPY_MODEL_255381bdb0cc49d2bb99eeac5130058f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 525.26it/s]" + } + }, + "41f2fb9a4ed74a3a8ef1a6cae7c382ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "41f895907d9343cebe2f3178ea7251f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "422ac819b0f547abad02f4ecb26bdd04": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "422b29f40ad241c5ab10151feb939710": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "423098a647144eb88968067ec97765ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4236732d490f471297b2e687f850d330": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_96d054abf3724d6198567f04dc27e922", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ee7ee56321aa4cdd8c261a198247da16", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "42517402c1214bfdac0f9b4de0eaccf7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5282bcb45ff84800857410ccf7d2fb18", + "placeholder": "​", + "style": "IPY_MODEL_5b708c80a5be48ed90a629e4a5c2a6c1", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 360.63it/s]" + } + }, + "427335ceadaf47e7992ff79fa8d8fd7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4274f25012264949be68ce37440d6fff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "42859309b8894a909a1707e2bad2ddc1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "428724a11c7c4048a259ce330f9da23d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eb87e3de02b44911b34c26990c1b33f1", + "placeholder": "​", + "style": "IPY_MODEL_2d9a855d76c3484482e10e2977df5038", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 511.19it/s]" + } + }, + "428b0c4eaffc4c809e87d0b3c5caff71": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "42a955a3ef344523b8cbd0614b74d150": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_62d0dbe3cdba4e1a8669fd8d394f5c80", + "placeholder": "​", + "style": "IPY_MODEL_05e0c6c024ae48b391c7bab34e93f84c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "42aac088b58c4f6fa8c0a7bb8ae0e61f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "42b274d99ec542e093096e891f5da65a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9f2730c2b5e44a1d85b561077a3fd7ab", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a5aa4097399b458f9ec3627dc37750de", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "42c71f602248469096ed91b90e6095f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5e611cd0d1de4ad587ca8dbe10886ec6", + "placeholder": "​", + "style": "IPY_MODEL_7338f8e819b947759c71d72ddb25c994", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 173.03it/s]" + } + }, + "42f4224e063546fe84acb7c321f726ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "42f4e09b842b48159759be62535ccc51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "430f262b70234cc7a3cd0ec8734e117c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1552cf6756ac4354b1fd7a8d3e178e62", + "placeholder": "​", + "style": "IPY_MODEL_464c27c19da34735ac75e03ee23a6988", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 362.23it/s]" + } + }, + "431220eb97064a69a32dc89e222e080f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b49bc7da516d4a37897c95d271cc85cd", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ba9575edfc954abb9eace77252da38da", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "4319a440f63a4185b2cd305827187910": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4327b44f50344726ad4bc8012cf1bb05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e44d21e807de44ea831ab61b66a16037", + "placeholder": "​", + "style": "IPY_MODEL_6995f5d5b5b64263a6bd9ba8d4d5450d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4335a9cbea8d410ab55780779beee42b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5d22c82794314d6c81232a30a2534ae5", + "placeholder": "​", + "style": "IPY_MODEL_3d0ce6d97cca49188a2e855fe6940799", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 299.30it/s]" + } + }, + "43500552aa41429fb562176536505f17": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4389072887ba4db29dc79225b92bf0df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "439acbae5ee14efe8d02f2be683f0fd8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_859ff97f7d9e416da46e67d2bc2203db", + "placeholder": "​", + "style": "IPY_MODEL_e800cc1c9d96495ea0e084f16ab21e8f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "43a431a5d19e4c27a88905f4824e001d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "43a7db8f82ad49e185dc6a5ed575b6b0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "43aa56754e404d39ba412341d5d1bcc0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "43b43627b16442308002e2266e8969d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "43becb269857412b86bb2ffc94b2d7f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "43c2726319d3426ea723a7ff41deedce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "43ceb32419da4fa8864e339e09738c91": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "43f89f3a57b94c22ba16b29eb595fa47": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "442cd907238b49559a26a68a5996585d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "442dbc266ba6419096c050982d7f5751": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_93d49b91d0c44c4183967f1a3c4c5926", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4fac96977e5c4343a757f06424445b75", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "4434858cca8747c99b45416308ee07fe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "443fd68dcd3447d39fff9d0edc971822": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "444e2ce70d6a467f9989d4e4e9f27d43": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "444ffdd05f34466e925881e340674223": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "445f602139814c34b1080c520bd57fc0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6065fb931e614d1ca1aa23868ea162ef", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7d93a3234e0c4029960a4272510d0ff7", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "44619c0eed084a30b9ac6c7e40fd27e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4461f0920c504033884ded604bfb0b04": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "44746cd4d47340acaa9c417f69b5f143": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "447bb7a9a3cc430f93dc5385f4cc939d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed333bbdc2354ab7a8eb0a01c5b4855a", + "placeholder": "​", + "style": "IPY_MODEL_c3844353c9ea4d598564c46d9f5915c2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "447d98a9d9554bf58132288eaeeb603f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8123afc09a9e4d16aefe9f8241b4f644", + "placeholder": "​", + "style": "IPY_MODEL_2cc16da9d2c74e3398442c26535c8a0e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "447e5dd6d8e0490fb9eab485e3bfde7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4488130e828d4d78904d5950498f67b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_070e3174e2f34195a060b23521a75556", + "IPY_MODEL_2d2af99dc7a443aaaf2e3794fc298d4c", + "IPY_MODEL_7b4dc5642d4245059c6636012d1c7796" + ], + "layout": "IPY_MODEL_e97db2ae85ed455098358035aa0976c3", + "tabbable": null, + "tooltip": null + } + }, + "44968aa2e5cd421094191e4a7455f9a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "44b5438159514788a248059cb600bdf4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "44ba1553a3f54642b05ce7524df82025": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_094d2ea284014183bac25cd67154ee4a", + "IPY_MODEL_e4c1317807604e70a0e0abe5d9631241", + "IPY_MODEL_271bd438462c40c7a58e848acebfca05" + ], + "layout": "IPY_MODEL_16a11c05d2664987949d1d2c87afa4a3", + "tabbable": null, + "tooltip": null + } + }, + "44bded4e2c00425fbba9de5d5c58a53e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "44d9ad54f33143488ce2a06e48dc5684": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_31dbda2907594097bec5e4186a8ab6e8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_001ed5bfbd4f4ae3b62c00b3fe313f23", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "44dabf4bcba5435e85f213a372bd3b11": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "44fa797c1022425fa430749561c1cb15": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_160d66f46e0b437eab87f9702063d4b5", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d60dec12261c409894e5a1ce579d8668", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "44fe9c2b2a454a3cb0f607a9ea102307": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d99da9a54c2e4e8a9e8427af397e6f17", + "placeholder": "​", + "style": "IPY_MODEL_a473cc7828b34fb7b3f3d0e8c74e9694", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "451f8d59a673464e9bbb5d8115a777c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cd3e03fd32fc478da883c3b3b89efe0f", + "placeholder": "​", + "style": "IPY_MODEL_809bd1d1e1af4fc79c3043e9ebee9c37", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 478.47it/s]" + } + }, + "45276e7fe68346fca190894a39c9c432": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4543fecdfd1346e88f199d9c6107b5a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_255214195f2a40149968835f24209a6b", + "IPY_MODEL_18491301d5d249afa64e55a0393568ba", + "IPY_MODEL_f098fc9853cc418da692365f25880f0d" + ], + "layout": "IPY_MODEL_fbfbfd83fab6488d8524eee22f122ed1", + "tabbable": null, + "tooltip": null + } + }, + "4569506400cf4ec3b805966c2ea09131": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f06be3d68bac478eb13c8684f583989d", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fd9097085605410ab8fdeb81eb2f4bab", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "4569a2cf28ab4a21b8850c0f68788df8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "456feb3bc10e420080ad7815525634d9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8407cd1868984cc78dd0d52cf5369f66", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4dcb1a548e5b40ca8f5e87fa9529e60d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4574cd5208884e7fbf98774836841b31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_71821fa5791f46a5b3df061cc662a5f5", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_23b1d0789d5a4e0ea33463e45054064f", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "457abf8b2df1455692b6e90a006087ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7f065af4f1a1452f93990fcbd90ff8f9", + "placeholder": "​", + "style": "IPY_MODEL_b7653f4e9ba149208db82f2cb32820a6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "45870bea097c4613aeda68137b48369d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4589f116938249139b91646b73377629": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "458f585f14e74c5d95ab6d941ab7c74f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4597917567bd4c3fbcda3599d02f35d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "45a13c21bc82473e97de4e67debb665c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "45a6b496f36042b5a97bfe31b68adc4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "45af2d2e512a4f07bc22bb2a93070f25": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "45cc0e407da945aca68badc814d2582e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "45df048b64cc4cb1affade79d3eef289": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_594636e6859044509693a9ebac3bd232", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dfee4e712cdb4ce9a746afff6f4c0f45", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "45e725b7e53b46959701397afe69a61d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "45e86321082e4e6db663eff6dd5e76f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f9c057e81f54fa7a00a55f87fd15bad", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_216f920ee092448d964470d4c8f7197b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "45e92ec429824053b23b51c226064256": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "45fa65284a8d46539739f2d227d43f58": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "45fcd0f75d8e48399ec84af25eae168a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b42b8668eb0842a9b206f0f2c4d2b745", + "IPY_MODEL_4eb1de08a5a647879d84b60df88ce1f8", + "IPY_MODEL_6fd68a75051942f1831791f1a8f3ff5e" + ], + "layout": "IPY_MODEL_c8d2e2b754da4065ae05961bb047a5a3", + "tabbable": null, + "tooltip": null + } + }, + "460192e1ed854f0e8bdbf68f92e6cf14": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4618479a353241dfbbe175e6bd992690": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e250d8f6da6e41c28a5d722d0d87f8f7", + "IPY_MODEL_0c7cd112432348f486d99001f0b7cd80", + "IPY_MODEL_89d129b7b47a42c4b4c70d9b06c62f72" + ], + "layout": "IPY_MODEL_8eb824df40044be58b764b470257fd01", + "tabbable": null, + "tooltip": null + } + }, + "464c27c19da34735ac75e03ee23a6988": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4651dbb92c3e41f0ac3f77948a475d5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4652907cfe51460b94c52eddb702c3c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "465b3fdbfad64f01ba2af0da1d2a0276": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "465dce8819574fbdaaee84421a9bc65f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4666aaabbcf64d6db600739b0d770de4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4669c60140c6401caabc2b4edcdbab3f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "466c09e460694b369effcaf295aa44ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "467426851414499395c40d099aa05996": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4682f3e8a3384a9daed27a8ac45242d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "469088e94c6144ff9ddeb3722e286312": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e5c473aac1674aa5ada988118b1038a1", + "placeholder": "​", + "style": "IPY_MODEL_3ec80ca7c9ff462b8ffe5f7df9aa2265", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 632.42it/s]" + } + }, + "46a12e5ee12547f5864399e6f3cdd08b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_53a6720b581e45de836b485053b10625", + "IPY_MODEL_4236732d490f471297b2e687f850d330", + "IPY_MODEL_5201c7da95904abe8fb1b85861703332" + ], + "layout": "IPY_MODEL_d1a84a2b0bab4849bad50e03faae3f02", + "tabbable": null, + "tooltip": null + } + }, + "46ba6a130a3b4af4a049bafe6f4cf2a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6ea0ff843e8b4a63b0a30572ba129594", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3e8db211917d4e1d96faa9b018ab31dc", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "46ba90c0fbb945fbb09e0fcae6e23584": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3c0ca9c2ce84495ab9c5fe29d10480e9", + "placeholder": "​", + "style": "IPY_MODEL_5730eb19848748bf9ea20af13629a18f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.83it/s]" + } + }, + "46c7690e4aa94080b43420f40b8bc346": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4704481cdf1c40f081e3d3eb92d3ee7d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "471e93c1ee484835848aafd0e5e88bbc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4743926e247f48e9b76ef9de06a69071": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4743a7c13aa14555aad5ad1e2be41ed8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_83c77f8cb2764e66993539f1317a7eb9", + "placeholder": "​", + "style": "IPY_MODEL_18e1c7771ffd44a9918c1bd2cf493582", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4756d53e69ef41a4b181fdda1d2b9644": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "475924ab15e14e62993382b9987db8c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4761bb5218f44ddc86a3959715e1d2d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4765abebc97544e7ba2c5b6469b40807": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "47739c3a4ed743c9b47e3e108c44bad5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "479abf738cd945459d06da8bd01948aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4d330cd6909b4a5a8681eba566c528ef", + "placeholder": "​", + "style": "IPY_MODEL_4b62a01b3fca4f838cc88f827ca817c1", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 868.33it/s]" + } + }, + "47a29e6448ca45c7aba4f0ad53f65421": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "47a7577efeaa4c3cb7dd5e87260b2cd1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e51c4e0906114d28a5675367dd3b3c48", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f0f0f160a03848e4a8087d13a2abd96d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "47a8a3f2cbb648608f28abd14fc41a88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8d9ae1d754f44b1694c0acff53fc27bd", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_31028e59e9a14be7abf6aff3b0575afc", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "47d1f4b446714d6daacc6762fab20d0e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eba881a611724257bd21496b84439f43", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fbd27efe28844c51a9e524163aeff481", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "47d3217629fb4665ab39a6528db79ec3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "47d97db0bdc44665867a752cc803a01e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4510cb654b544be9ab94c1f2c445cad", + "placeholder": "​", + "style": "IPY_MODEL_29372ddcfac54caaace024f8d515a229", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "47dbe4543c3f47058805f5fee746e580": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_86ec709bd7a84b878a34c652b5afb8d5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a59887249a0743d2bcb0fecc89664028", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "47ec4f2966234cda8a551d84f122c1f7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "47fc7a6d129c4fbe8ffeec0ae5462473": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f0f9d77ec11840a29a487342ae18115c", + "IPY_MODEL_d01fde054fa545959a55d1b44d0b46ca", + "IPY_MODEL_2c5f70e8fb904c0397341a2c6d17c9f3" + ], + "layout": "IPY_MODEL_9b78bc184e804622a695ba661d6a4e70", + "tabbable": null, + "tooltip": null + } + }, + "4800b824a6b64af5a1cccfeecd6dc57e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "481106dffde44f51bd45bda751f64e22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b4429ff7841a4f308746df5b1c00e061", + "IPY_MODEL_d7bf500b1b614db7b7cc5cbdcebb6d63", + "IPY_MODEL_a08b9a921d324de08930084cc4f21b52" + ], + "layout": "IPY_MODEL_2e28022214054495b0b22fe3f1d1c94c", + "tabbable": null, + "tooltip": null + } + }, + "482ced7f768744d88f78964dc03c273b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4835dcef41a4408fab07a0c914fc63e0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4846cbf01d2546ce820cd59e8e6fee1c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "48581942c9eb401ba744f37b81d6c11a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "485c7199d0964b0aa339ba6723302ebf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "486052b58c414f6d996ee68669b675b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6605b6ab97e049809242b7ef36fdcbea", + "IPY_MODEL_45e86321082e4e6db663eff6dd5e76f9", + "IPY_MODEL_bd4ca914e13c4edca8ed64f48d8f6492" + ], + "layout": "IPY_MODEL_b6977c3225b24efe9322835dc080a983", + "tabbable": null, + "tooltip": null + } + }, + "486106ba7b134b3682fc506c03ebce5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7f27155136f64056a8a53cad5e91895a", + "IPY_MODEL_79b6a28abb4a446db507f3f1a5b54e35", + "IPY_MODEL_51cff7c80e5a46a8a87dba1296c533ea" + ], + "layout": "IPY_MODEL_634db9fc9bdb4dfb9139c31112a3ba10", + "tabbable": null, + "tooltip": null + } + }, + "48613de804ab4437bfff280669f517d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "486ae51d02924739bc6a5ca3b3e6d509": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3fc7ba2bdc1946e182c4574b2dbbab13", + "IPY_MODEL_7775cab33c1b47b8a67ab4ad42f34f84", + "IPY_MODEL_345b87c358a848ac97aec9aa1d666d6a" + ], + "layout": "IPY_MODEL_ad366d6d24b841e7b99a860c41a83715", + "tabbable": null, + "tooltip": null + } + }, + "487a4fca468b4158bf19ae125985c3bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f1ea833192b4afba66457555302b11c", + "placeholder": "​", + "style": "IPY_MODEL_e74d6a9c01474e7a862b8a3be13ae1c5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "487b16e1398648a0a17dd31fb4716c3c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6ed77cc1e3a84044bedae3ada0a38531", + "placeholder": "​", + "style": "IPY_MODEL_76ce0897c79f48febf172ee4e2ced078", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 1148.97it/s]" + } + }, + "48808854ac234c8ca63b5e5b273f17bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0653ad8e28814160a01770889ef72836", + "IPY_MODEL_158aa4085cd14f2990794a7b92a94488", + "IPY_MODEL_2c162065066640708d92037f591285ea" + ], + "layout": "IPY_MODEL_0258a4433cd2405089967ca0806d33c2", + "tabbable": null, + "tooltip": null + } + }, + "48a156b7ce6a4fe99e65a0b8e6bc707b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "48ab5ccba71844b8a0fb46edb6ba675c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "48b1e53e65604fa39e7eb0decadde0c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "48b83b88c8ec48208ad333c709b3bd3c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "48f07269431a437da526b05800dc1daf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "48fdff26f49d43739269dee5a19845f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "490b085de31743a5979732c3e5425ad7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a1f70bee955f4b82ac4407c5568f614f", + "placeholder": "​", + "style": "IPY_MODEL_482ced7f768744d88f78964dc03c273b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 357.39it/s]" + } + }, + "490bbf47a32748a3878d59105474938f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "491665fa6ec546cc87dfe5f3ad1858f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c52f43e153714f40a919f051ff0c7d92", + "IPY_MODEL_173a8d64f4ae455784c2bf6c98cfa2bd", + "IPY_MODEL_d260a6cfb09a467c8814bde814c8be5c" + ], + "layout": "IPY_MODEL_aea3b326153941a8aec59deac185f51e", + "tabbable": null, + "tooltip": null + } + }, + "4916e28d326440b6bc2d9e11e013c788": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4918c70242bf4b5999563522cdc8049a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4921f34099fb48b1a80b176db6a676fb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4927d19d1f4241b2b02eedb77c4d1a78": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7d6b9e60287d4eb4b94e38f5c95ca2c6", + "placeholder": "​", + "style": "IPY_MODEL_791a95633fc5410abe63b02fd93609d6", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.25it/s]" + } + }, + "49356939697e403ebcb7aa3d5844f5db": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "495d484fa73941feb4bdfb18086e3dfd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_869179422f634cb39bebc56477dad27c", + "placeholder": "​", + "style": "IPY_MODEL_00b1f0e3a1f94a85a4396b613e3f1623", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "496a2ae07da4455286cae77728bc6093": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4978416319084dcd8abc61424a061f1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cbf73e428d614bdb9187a6939697cdb1", + "placeholder": "​", + "style": "IPY_MODEL_065778144a5c4d96bbff30b38c662dd2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "49875eb2feb140c18e323affd4b3713f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4999feffd6744b6a87b2ab330fcd29ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "49a0f179075249baae68507cb190254a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "49b5491ef17d40abad081abd79549375": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "49ca19240e19498c90d7f5f007c479c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9c7282467b974b44ae45d9a160e52ff4", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d61a6219b04f44fe91387a1695300598", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "49f20eff7ada4d87b274814edc76558f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_953840950f084bb8830df24e5e0ed398", + "placeholder": "​", + "style": "IPY_MODEL_880df4b063d64fc58cbef79e94427bd1", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 540.43it/s]" + } + }, + "49f3834953ae4dd8b483194261ed351e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5cd9a48ecf5943b69512c8d4f7c12abe", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7059d67022b74cbe95efec10bbeb90a3", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "49fbc35b3eb544b4b8b9671f3016b763": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c2f9c6471a4c46ad98d8708ef9e398fc", + "IPY_MODEL_3ed211d2e474471a833e45966af781ff", + "IPY_MODEL_f7bcf01fa37b4043a18a15b6b6c75e6c" + ], + "layout": "IPY_MODEL_941669ba9a2447739d8fa4e26e4f39b6", + "tabbable": null, + "tooltip": null + } + }, + "4a0c75b3123b4f16ac367abfa3d76e21": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d71b4a6c5d4e4492b67f372614369d7b", + "placeholder": "​", + "style": "IPY_MODEL_583246f04fc8467baccc220323bc6fd4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4a1183cc97024fb483093a5efde19af2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4a1719ebdef1493a9e30edc82c482525": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4a1951b330854c84b77c6c72d011296a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_466c09e460694b369effcaf295aa44ee", + "placeholder": "​", + "style": "IPY_MODEL_8220309414a143509e70800cea62c0eb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4a223d43892441ca894587ad6f64a83b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4a2b5955580f4d1d9f29609ad905113d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4a2e0bbb714a41d9bb869ce073889570": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4a2eda2634d342b5b0da46691a51eb55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_766015f0cfeb49dd8c1fb295069430ac", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7e5d23e64b4f4ed4b967f666ffca3241", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "4a3e74d53cf140a29a4d1b01260bf530": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5e2ff7ebaa0345a1a7cb3c476825da99", + "IPY_MODEL_29556c7c7b1d4b189e9a32645230883d", + "IPY_MODEL_469088e94c6144ff9ddeb3722e286312" + ], + "layout": "IPY_MODEL_4e880b62cd1d4fd696d1dc38997b1e06", + "tabbable": null, + "tooltip": null + } + }, + "4a407e9d73134380bcf9403c5524791d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4a4304e4f67842669f8c2b998e62754d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4a4e1cdf69b64ec99fabc7baf67ae8fa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4a650620f20b4f0eb2246accab10d3d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4a65e55d9b094a6b92c1494673aa9f03": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4a72aedb4c5e4366a20fd3477f28f1b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4a7582e7bdd84ba49bbd573f49d77bd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5b701e53cbb14e08aed29849480f5131", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5c1ffa684b944bba9d78eb138bbdf490", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "4a88bcc2f65f4bdb83857e8bcf720b1c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_da506a86af574bcdab05c8752d69a647", + "placeholder": "​", + "style": "IPY_MODEL_af75dd5fd7f14802b24ca378ec2f563a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 353.95it/s]" + } + }, + "4aad274e38e9441d8d76c02cf8c42da1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4aec8b38395f431a870538213beca1f4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4af815caa6874de589be91d48d7f63d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4af95ac2f38044f0bd2675cb80a478d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1de3cea7ae37450f996f061160f75ac0", + "placeholder": "​", + "style": "IPY_MODEL_f1f6014f7ec243a6aca3d7f16da2f429", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 865.52it/s]" + } + }, + "4aff2ad857b846339a349d6c49f65b24": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e20020d9ef9a471496111222687aa94a", + "placeholder": "​", + "style": "IPY_MODEL_0312f5d2a05d4ec285bce3e9dee5d05b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 358.81it/s]" + } + }, + "4b0894eb6c094b999af4866564d386f0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4b0a1f3f4a5e4f97b980159f2e7dfdc8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4b14488c2a1e4d3cb19eebdc1c02f54f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3a61add925cf4595af7180fcb1b3c542", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9b856f4dbe2d402996e8e58f4e67d5c6", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "4b182e5aba25475caed51c081b16731a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4b1e24c034174cb98663deb28dba2f91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4b2779e7fb9f423f96ec6b189e55dc8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7431a5f0c4a04a74991d9bd0016b4088", + "placeholder": "​", + "style": "IPY_MODEL_237a33ec9c394b7e8efe263012d44fda", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4b356cb01eac476c87233ee35a9022d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4b405da38e8648dc955d73f81fe778d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_388af2b4ec0c4378b8b06e3ba154a5df", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8d98acc43845489b819a7ff5ae81c9ba", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "4b44d0b98185429ca36376fd9bdd5290": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_06384915c48b455da8989d21d1030f82", + "IPY_MODEL_84b529ded6034e628dec5fc3f7a736c9", + "IPY_MODEL_77cd0969e220409c91c57a0b87512ae0" + ], + "layout": "IPY_MODEL_43ceb32419da4fa8864e339e09738c91", + "tabbable": null, + "tooltip": null + } + }, + "4b4f08a707c84fe5bcddb07b245be151": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2103c63ef1d34baf8ad85910f6c61f42", + "placeholder": "​", + "style": "IPY_MODEL_d58764f9355a41be82ca132a9063f707", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 844.60it/s]" + } + }, + "4b554d39d4584c838a989c7df6944a2c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4b62a01b3fca4f838cc88f827ca817c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4b66b4428ce34557934ea32daf3c1e23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_988f07cf106643f4b6fb80ed8aa342ec", + "IPY_MODEL_4b405da38e8648dc955d73f81fe778d7", + "IPY_MODEL_b0908899073b4b6bafa21f6c7970ed32" + ], + "layout": "IPY_MODEL_41f895907d9343cebe2f3178ea7251f3", + "tabbable": null, + "tooltip": null + } + }, + "4b7a3bec8a5b412fa0068748f99eb4c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4b8062584885431c81aba10b2a155d9a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4b895c0477c04b5ab2174eb74406701d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4b978e6606314196ab8e5357263bdf46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_67a5acfd25764476a110b79dd1199357", + "IPY_MODEL_05180a7a19b54221968828aae7ff4e00", + "IPY_MODEL_aeb68c84baea4a9a9e987486c42b28b4" + ], + "layout": "IPY_MODEL_03afbdf64d854be7bc903b893766793e", + "tabbable": null, + "tooltip": null + } + }, + "4b9b2799c3974631a1dfa5d0212c9ff0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4ba0987be0b3401eb24973f599c6b52c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4ba7d5add10940ee83ff406193495386": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4bccc470902e4d48a1db56d06c69a6d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4bdbac4dffff489c8c40083131f197c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4be58b1bd1c44129ba92c417c9b6dd9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c9378817009846c2b6d386d4198be45d", + "placeholder": "​", + "style": "IPY_MODEL_ab780505f2f4498bbc047406629e7fbd", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4be60b7a6eaa4ccab1cc91fedcd794ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_78abae3ab19b47f088892354d75abf56", + "placeholder": "​", + "style": "IPY_MODEL_9945184350a34eabbfd2dca9e151b6dd", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 469.15it/s]" + } + }, + "4c18becf2959497da74704eb02dfd8b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4c234bd07745482e823334ca8ede4b72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_370097374dd24e18933419ba459d5b4c", + "IPY_MODEL_c1bf928151124e86bc0d1282db032dea", + "IPY_MODEL_17b8b942009b463daa853e760856fe1c" + ], + "layout": "IPY_MODEL_0636f4e424c14e3ba969424969fd4c6c", + "tabbable": null, + "tooltip": null + } + }, + "4c29aa1b2aa64ac7ad49a7e591f843e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1228dc50059d477c985e9b36d4549502", + "placeholder": "​", + "style": "IPY_MODEL_1777e0d35d514704a945118c5cf2e49b", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 667.23it/s]" + } + }, + "4c367d85c799490bb9ef7c2768e6ecdd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_45e92ec429824053b23b51c226064256", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e7053b8431624f8f930fe3b2593c0246", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4c3e9c08ff14482484690f647ff084e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4c48ce65f2624134a4fd0364d0461650": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4c4b257b7bd44005a0736ed2ae81adb6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_312121c53a9246bd9c0f22f18ca00a8a", + "placeholder": "​", + "style": "IPY_MODEL_3e3170ed75c04b6d9cc484765aa042cf", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 391.11it/s]" + } + }, + "4c4d9a18ea43412ea0696f292d25cf67": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4c7702499c474ebe887d17f110b136f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_00584209bafb4a899ff1d950a2dc357f", + "IPY_MODEL_f4a233a3eb9d4ec7a7f7d535e798bbda", + "IPY_MODEL_e1383204dd4c4b73b698310d83b14efe" + ], + "layout": "IPY_MODEL_137f764c9fd946a5a873f46c7c2007fd", + "tabbable": null, + "tooltip": null + } + }, + "4c788447e1854232bc7964403cbeaa94": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6a6d8a4c1df94fb2a922551bc7a75ec0", + "placeholder": "​", + "style": "IPY_MODEL_0ce72496a4f845fdb3a25512e0615243", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4c7ca0163d2740d68211cdb1fa24d2c4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4c7d60456c7a48328879a77d4dd02a47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_843119d8752348e99d24d84985c0bce0", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2d672f24b8934ee3b2fb0fbd9eb65c41", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4ca1fc203e2e420c9e54cc29e5e0f774": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ffeb3995ec9b4ce0b2f3d9a683cf44c6", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5c3ccb713ba44d849d052d1d9ff36160", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4caadb16042d40e38f66771888b44108": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4cba2d31c0a74456a0fd89f2c8861f61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4cbb13c44df44e66b3b992d0f23127be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1712480b73264ad9864a18e4b411cc28", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1facfb664338491d9432da5f74b81d7a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4cc4018261934b238bd37918bf186eb5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4cd1385e29684a879108d2763d2e4cd3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d124557f645a4474a40a9463eb7bffec", + "IPY_MODEL_42b274d99ec542e093096e891f5da65a", + "IPY_MODEL_dcb1537a5234454397e5dd56350454ab" + ], + "layout": "IPY_MODEL_af89a99771114ddea9d69135a37550af", + "tabbable": null, + "tooltip": null + } + }, + "4cd237f8433c453b9905b756f3a952af": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9ad37e201cec4a2fa8843df3020c3b25", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_47a29e6448ca45c7aba4f0ad53f65421", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "4cd3ea7c87944c51a7d84aa2142069c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_88856984b7554facb7f430a9d12eec4f", + "placeholder": "​", + "style": "IPY_MODEL_d10f623778b64e79ba275b7d4eed0625", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 504.78it/s]" + } + }, + "4ce1df1c4ffa4f5da1c1299e674e528e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23afbfd586cb404a9b2914d7faed8173", + "placeholder": "​", + "style": "IPY_MODEL_a337490519084d71a8d999a9ac63fcff", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4cedda60195548d287b0ead8962fe545": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4cf4111144984e76b38bb6f5cb43d93d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cb9d54136ded492a82bb7eb82a85c024", + "IPY_MODEL_8c4c3bfb6e3b42408032514f91a0cda7", + "IPY_MODEL_8c0bc595e44947dc9590f1ceaf54bbfd" + ], + "layout": "IPY_MODEL_5170acaa37d945c6b2aae31e6f138226", + "tabbable": null, + "tooltip": null + } + }, + "4d0a237a30f34785b78b9280d0e73085": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_231cdf06608e48c7b57881908492961d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a3a8f39a0a67453aa7416e17d87815af", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4d0fbf746bb248338c0c0b850731eac9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4d2004837bc44ada8899b1824d2093cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4d2757da4f05441ca28dfeaa0be23bf5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4d330cd6909b4a5a8681eba566c528ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4d3920fd59c94a76877684760df2d524": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a56cec4ed354566905308ac15b8af3b", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dd2c562b889c463893c4db4ee889a263", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "4d3a2c2b34ce4cdba5387b4066c33bc1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7b4dd56db7734252b132b1264d3280a5", + "IPY_MODEL_aeef496d8ca7491e8ac811c40b487551", + "IPY_MODEL_0e094eebefae4b7782660b9036fa2a5e" + ], + "layout": "IPY_MODEL_83979e87fbd74eb08f2da5be33115050", + "tabbable": null, + "tooltip": null + } + }, + "4d3ae50641754c1ba07e626cc7471aa5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4d4700f8a59d48909fab4b18101147f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b73329d1711d4e3fb9847da52923f409", + "IPY_MODEL_84537ac694774d93a7859671dc50c0f3", + "IPY_MODEL_f28298b02d6946d9b4b697d5cc1c381f" + ], + "layout": "IPY_MODEL_35e03fcf29004bd38544056e2e887c36", + "tabbable": null, + "tooltip": null + } + }, + "4d4efda96a73480cb5d60881ba6d30c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_14d201feee3841fd9d8a6db3aa02b436", + "placeholder": "​", + "style": "IPY_MODEL_6f4787b7ba3a43a0b3b37a5185b12e69", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4d548a6cc2124330a0247f8474a08a8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4d5ba868c52d48438e8d31fefb76b338": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bcb942d6a80f45679194cd105b9a542d", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_53003fef78224a159aaf18106ccc831c", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "4d603de06f9f4736a532877250e9752b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4d84a9c7695c4f83a495a88592ba0953": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4d8963f68dce48e495340b4a5301c793": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3797dde55b414ff7bfe3f58f0ada185b", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_908bdaa70adb4b4d8c39bc234e2d4a3e", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "4d9b17ce0c264604ad78cca0b4a95c83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_79facab3174e4171822ed68a140115c8", + "IPY_MODEL_c6657e054c654a10bc5aed92c2546081", + "IPY_MODEL_6b4efebd356b41fc90765e74e1fd597b" + ], + "layout": "IPY_MODEL_dd48570b151c43ed8f31d5dc1c6254d8", + "tabbable": null, + "tooltip": null + } + }, + "4d9b615d367743a8990c710cb490dffe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4d9b97a251934936be394b24d1ed5596": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4d9d202be4e74f5fbfee7cb5ad62bf9e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4dcb1a548e5b40ca8f5e87fa9529e60d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4dcfb615df3946eeabb1b89c9d0efec3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4dd5c8580c8742e88f0db2095b998386": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4ddbdccb7cec4b88a919352e83c693df": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4e26fb8cdbc2480e97acfba1affac3ac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4e2732137930497b8a95f52e9f353d80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4e3a71661c5d42f492b85d3c61a57f4d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4e416b0bdb9c4c8aa5a6f892e56db3c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4d4efda96a73480cb5d60881ba6d30c4", + "IPY_MODEL_cf98e95be7b046d393365e110de1b6ce", + "IPY_MODEL_f51501071b1042609a7eb02423395b31" + ], + "layout": "IPY_MODEL_3817168444df4f0e81bf61973000ca71", + "tabbable": null, + "tooltip": null + } + }, + "4e4a29fba10f4f348467ff4eff4f6b29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4e4d494f63bf4a99b424ac8efa924688": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8cab9f243d1948dda1816a5f206d2e2d", + "placeholder": "​", + "style": "IPY_MODEL_2081e070e3ff4deebfa4eb013be31c30", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 336.29it/s]" + } + }, + "4e5465fa70ec48d28b29f03dbb3e7242": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4e755f7133b747f9b400dfb96ba24457": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4e880b62cd1d4fd696d1dc38997b1e06": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4e8c74f88fc444bba32321f45422e7dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0aab3abc4c8547cd8d18e70b673ef516", + "placeholder": "​", + "style": "IPY_MODEL_9b589fb2881845a69302424b95f49107", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 534.65it/s]" + } + }, + "4e9e31cd8a4c41949186ac83ac78b3e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4eb1de08a5a647879d84b60df88ce1f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b1964f17fd1244aca80190aabe1899f1", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_32370973e49844cf93d483a6cee78072", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4eb8e13ddc89432abdc734b068901d2e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4ecf1f0962a840e5963e178e3ca545ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4ed1510eff7d440ea37181312bc9715b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4ed93c71ba3d459083fea30db9004fe7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4ee1709f5efc4fbda8588d49a33a5f82": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f1a528efe9f42dc9026ad96b765082a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4f25611ae5c54c528de39b470b879e75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f27562aa05f48d0bb8af3e471c535a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_79ee1ce32c1a46bfbf3736d3b892d6fb", + "placeholder": "​", + "style": "IPY_MODEL_5f10c289b4fe428ea1fd69c91fa9fb1d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "4f330a293bae48b7beedbaa146cb8bd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_17924754bcbf48f180c80c5a4efdb553", + "placeholder": "​", + "style": "IPY_MODEL_b1bd50fcb4a746b1a9fc67c7dc5e9d20", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.52it/s]" + } + }, + "4f4645b616c54694bd0756867e6a46a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_747bb358c6ab4c32bed478c1740f95ae", + "placeholder": "​", + "style": "IPY_MODEL_c10a80e94f554ec7aac04a8e1b354004", + "tabbable": null, + "tooltip": null, + "value": "Epoch 29: 100%" + } + }, + "4f567be0dc8c4dd284e29a4da111376a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4f599e3580f84b72b39d663f42dc43d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f6e16925d724624903eca6c09039cb5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f813ddc6c914b0c8e0e8b4e0e490632": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f88464dfad94e2cb70f293b081ab203": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2bd88cd8c8cc4c15810c289e133774c3", + "placeholder": "​", + "style": "IPY_MODEL_58a6bada81f748eab32fd0374a09de57", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 354.80it/s]" + } + }, + "4f8a6b6969c649808ad16a72844f12bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4f955d71f40546f4acc2cbb29df34423": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4f9e509e381343b3b6a9d3b39821b7a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "4fa594c69b7e4fb485f6c5ef8b4468f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_dbbbca42cdf9457c974e7c1daf3c4d2d", + "IPY_MODEL_f655157e932241f09f13f902772e42d2", + "IPY_MODEL_964e7b4ad3bd4298bf688611ad70f75b" + ], + "layout": "IPY_MODEL_71be82ebaada400f9b600bef79b57099", + "tabbable": null, + "tooltip": null + } + }, + "4fa9a00b730c4249bef67b06bf8887b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ef80f6c5e36d473d9d657c0a4114544c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c5d6f787ef3542b8a1756c7a8d546ac6", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "4fab51a062c943b19ef3824f9aabe3c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4fac96977e5c4343a757f06424445b75": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "4fc6613db4e2479ea14ab67d77279653": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_948e251965974533ad3d7d1258644227", + "placeholder": "​", + "style": "IPY_MODEL_0a3bf61aac394a71a7354e72f4e1fe9a", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 63.32it/s]" + } + }, + "4fc6e63358ff4891a4cce4ee6149474c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "4fd047f701834c7aac94b4b9c81f25ca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aad962597bf54f3fb8adf68ac0caf1a3", + "placeholder": "​", + "style": "IPY_MODEL_2f12041ade0846818ad471e01303656c", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 977.09it/s]" + } + }, + "4fe0b3736a894a3dad12ea402235bcce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_846f1bef2b5c4bf6b000c2c9c412f812", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3bb35597f3d5494b9a3b078f83055ace", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "4fe99431e1564ce7891c66971ebee74a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "500d429c704540bbb46583e0925e726f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5017dc4d3f2c4a42924f8f1cf6aeebb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3bd254c975e243a3b2cfcfae0a0aefd5", + "placeholder": "​", + "style": "IPY_MODEL_0b32fff0934642ce832b992cd5a49805", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 529.68it/s]" + } + }, + "501b18071c884f33a2355e7613071679": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d0c5ebb5b903402884f40c0e4a82fb5f", + "placeholder": "​", + "style": "IPY_MODEL_2463f5ba3c754d3e984e848908544829", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "50255387fee24237b124a572a3c15dcb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2d34cfd1e7e64eafb44fd4915cf621b5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9e5eaffde5704b27b5afd6802fd6f630", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "50286ea23f89470685ff960585263374": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "503527f8d78f4932aa4d362cd01699fc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "503b46c4c1e747509bc4806f31072c7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5041a553b6cf4f1b950a32f9120edbea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_87c1be16527e4dbeb6b3a7fb09a85ed6", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f65eaa5bf0a44aa980a6ece9e59522b4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "504685447b9e459c95c3e424d77b48e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9463e11a12cc4b12a2d0c8d5ad880129", + "placeholder": "​", + "style": "IPY_MODEL_b6bd1faaceae43b1a5356525c0c32cdf", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 357.81it/s]" + } + }, + "5061d692605f4ec98f10288698f603cb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5062978e692049798e10a4818b13b064": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "506d9d0dda35481e98a5117cb15fb86a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "50928bf875ad4e508d84d08f7bfcc5b3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5095ad5f9907455abadc2b73d07451b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "509acf0d28cd4a1aa194070d8ab1a07d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "50a44ef76f60487b8de5b3e6ced1fd23": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "50a5f10af7a14f7583c3a4565f8494eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "50cdcf74d92d43eead1cce6521468fb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ccd68fae82e44412b24844d86e7e8d7d", + "placeholder": "​", + "style": "IPY_MODEL_a2bccd61d8784428b90b88baac30f35b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 362.80it/s]" + } + }, + "50ce1b7c271747b0ac7a58ab8c5fa1a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_89bdc518dedf4c02bd82640de96689ab", + "placeholder": "​", + "style": "IPY_MODEL_c3d8d20684884ec085f97ccc319ded09", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 353.30it/s]" + } + }, + "50d126eafe9444059cbdad5c0bfa140b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "50da508805ff4d0883777d02a7d7c049": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_961dc3db9e7b47a083045d7a0b3ecadd", + "placeholder": "​", + "style": "IPY_MODEL_b8b55623ee8e4c328f4f18efb1057e28", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "50dc4f05051640bfb2549b1069581e40": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_528488b8de274af894e21121510df6c5", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bb704744b08d4dfaa4cc663610cf6083", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "50e52b4b554a4b1c82eb77e4336aab0f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "510377a55d604769877c8084594bf27d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "511a0ae8aad344a69d9e566c023fa35e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_25c846caa54e4b5ba8467529e8be432b", + "IPY_MODEL_1350f24061264a8dba50d53352724a16", + "IPY_MODEL_63956312e3014c9a9e17c78bd3af2385" + ], + "layout": "IPY_MODEL_f8a30d4575bf4a14a0c2f1bb08678492", + "tabbable": null, + "tooltip": null + } + }, + "51231e6a1dbb4597a74919c2682567d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f6dfcf2d45149b89eff8f8ac4dd2458", + "placeholder": "​", + "style": "IPY_MODEL_c4779e61f9904e1b8a8acab5294d0aff", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "513381f14a924788a8237717573f59eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5140ce65ebae46728a9342584e2db7c1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "515e4bde89754a13ba32ad61064f1920": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8175654048e0476a8e1c956e36cb78f9", + "placeholder": "​", + "style": "IPY_MODEL_fe8c89d7a99f424c9a4e92150dceaf77", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 372.73it/s]" + } + }, + "5164fe6915624a5b8657702f2f87384c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "516b15859a3241f2b2d36ae05e59ac4a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5170acaa37d945c6b2aae31e6f138226": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5184cccb1dfb44aea551d959773add61": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_feb2667cd550499ab2d354132d9f0aa6", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9bb7f1501a604b34a1582a3d82d1adcb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "518684a686194bbaa520f673c575594b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "51941885c32f4958876ccd8a1f26c7b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8850d6bf81f5440aa8a1f780f3747418", + "placeholder": "​", + "style": "IPY_MODEL_92a75bf5fbc04ff6821af2526dc7b0f7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "51b12b7b3050455d8496bc6c148563e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "51b4b60459da427e8d20a6e4a4747179": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4a407e9d73134380bcf9403c5524791d", + "placeholder": "​", + "style": "IPY_MODEL_b0279e6a40de48e6a3f661cd2cb91073", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 345.33it/s]" + } + }, + "51c60c44778c4352acab75d052bcd2b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "51cbbcf4268f4573ac7a98a7b0b2c11d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "51cff7c80e5a46a8a87dba1296c533ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_32767536bf78465b9046f8eaa0ec3c5f", + "placeholder": "​", + "style": "IPY_MODEL_562c488e66bf45e4854ffa916bca733c", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 708.44it/s]" + } + }, + "51dc508a82b249ab86bbf4b3cca4efe6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "51f388e9fbcf4763a768c64352d74d24": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "51f3b435c3224310aac786961ca1e463": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "51f87d7c85f245249dea1fd018fb4dae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "52006e8ba24644599c8654f1496fe35d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_766750cdcd904c979991877d198326a8", + "placeholder": "​", + "style": "IPY_MODEL_6f32b75149d14326bce1294c26dd2d55", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 526.14it/s]" + } + }, + "5201c7da95904abe8fb1b85861703332": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_defd152207464d1b98a6aaefd948f700", + "placeholder": "​", + "style": "IPY_MODEL_3eb8899085984681bf04e10dd9eb2c1f", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 472.32it/s]" + } + }, + "5202d217e30540ca935e96d741a15a84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_35d3dcb43d6848bdb6b04981bc0b6175", + "placeholder": "​", + "style": "IPY_MODEL_3322ff0f7bef48b29c28bc8feb1e6e63", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "520b4eb6028c49ba9347f6127a5b3da4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5219244691624a5cbd1f625955f9e54e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_95543e6ca79d4ccb91aea7f1f9eed2a3", + "IPY_MODEL_24ecd49a788942c1b1931b186080a93b", + "IPY_MODEL_c0ae7ab4d1ee4eb49b2b6c1b3d53f414" + ], + "layout": "IPY_MODEL_1b9debd79c5c41c3a641dab79df39295", + "tabbable": null, + "tooltip": null + } + }, + "521c1086431848ba911e7346db9bbb7d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "521f26ac1a4d4ddd8130b8ff666af0c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_21352aaa19514f3e844fb330edabcb3b", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_92d16815256d4b8084e7031141cb9f44", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "52404f74eca34f35a2c97f027b858d09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5252d560c12b4fa389629b66797e1bed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_41adb98a0e4b4c65972c03d417cdb2d1", + "placeholder": "​", + "style": "IPY_MODEL_e9fb51d4820141318644191f7882bd62", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "525877bb73a749e887171278fff23f1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f86028fd532046d291c3bfd8ebe3f118", + "IPY_MODEL_a5355de9067447fcbf7b0d661224a693", + "IPY_MODEL_9dc225ecc72a4195b522fde9645463e2" + ], + "layout": "IPY_MODEL_d1e2aa6c773e4fab9596b10c5e198296", + "tabbable": null, + "tooltip": null + } + }, + "525a556e516e4552aaa86fc267098303": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "526277522cf24825bc1fe17379428039": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "526734a140f4482098d0030bcc70798c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "526e237aa4194233a81d4f3c8eb917df": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "527fc604158d47faa2ddeeff05044180": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5282bcb45ff84800857410ccf7d2fb18": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "528488b8de274af894e21121510df6c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5295fc209b264d2287b167013ac9bde7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_da434a57f2454b3fb4b5d5d3e55b2e86", + "placeholder": "​", + "style": "IPY_MODEL_3d1e01b208a54a75b8b518d4e35cbb48", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 396.27it/s]" + } + }, + "52b249d201844931b1a284a9b0c82695": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "52c8b2d74f5a45d1beaf6af2df3443ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "52d18dd0b4234226b5ec86c0b43107aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_34f4de6722b64ca987b819db5bc75e9e", + "placeholder": "​", + "style": "IPY_MODEL_ee52c1070b3149f2b24cd4cd1807a3f8", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 896.60it/s]" + } + }, + "52ddd21a08f746dbbb8317d51edf1caa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d2051a8854b7435c9f19cf0fb94b1dd6", + "placeholder": "​", + "style": "IPY_MODEL_03906eb6aec0463480daa5b1df9520ba", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "52f0637b861f4e2db0cbb387fdc53564": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "52f72ebf2fa746678a69ebd20a2ae421": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d3e9b35ab4c34cbead9a24b72a49094d", + "IPY_MODEL_c20f818faa0a4128b4e99de14c34980d", + "IPY_MODEL_f0ece572ab5c4c028f0354ac5af4c01b" + ], + "layout": "IPY_MODEL_a159dc5af814469c9352417d347087c8", + "tabbable": null, + "tooltip": null + } + }, + "52fab53538bd429fa8c9550ef83c6093": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "53003fef78224a159aaf18106ccc831c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5325ec552131484ebac5444714323eab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "532ba5d310bb43ef8f9de7ece277f61a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "53374944d5944581a1ff4de7378a897d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cc3d2b7942234031b1a2de24d1c72f1e", + "placeholder": "​", + "style": "IPY_MODEL_b5840da1a1d1440d945152089d7295c7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "533a23063ab44411adea944904eb6126": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5351aeabfff2497a8f937de795a77171": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "535486a74e1a413abc79b18ff11b0aae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_639df8ca996e4867b33e18cd563e2447", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2655e180e93d4fda8d4803c2c3cbcb4e", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "53660970f3614b9cb4b66e02cf61a6c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "53871bf81734463e973736d84e9617b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "538d216089eb4361a51a64eec6ad7b55": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "53908757eaeb4004bfeeefa49960c956": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "539c1487c9bc4395bac17bc3f32963d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "53a4560e74414f34a52d2abfc0a11814": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "53a628dde7df415a80e610f3096705c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "53a6720b581e45de836b485053b10625": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_caa9fac86ceb4646b7a2223e58136473", + "placeholder": "​", + "style": "IPY_MODEL_e74aaae1ce00412fb908ab7f6313fd72", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "53bf5773133b4b8c8204cce468129eaa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "53de004e81dd458e8c412cefc34b1d83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "53e95c8699d240b3b42be68d5d0be040": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "53ef373e81544c779813562162f1269d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "53fe4a99af894217b56eff1f1b6f4aaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5419028a47a0450c9ae246b000e3b5da": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_89b61339cd1643579e6a7ef98f5b4e2e", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b7702315c25b47d881a3a142f560995c", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "541ed156a8d34bd7b8b3f979d1cb72f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3394aa1595f4a7fb157b59eda355100", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_09b7912fd39f43d7bfdbe5b43534f958", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "54282515664a4ce0a291d95cfaa44404": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca7aa0d33fb54996abcd2f113c7183f5", + "placeholder": "​", + "style": "IPY_MODEL_3236de10e9944b71af1e27ce7441cdc2", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 862.55it/s]" + } + }, + "5430097029724c95ac10c483490ebc10": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5430198446ed4a6fa88002a7cfed662c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "54306e7c74f94e6aa62e91859c48714e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "543c287aa5cb43bc98b292cf2ebbe57e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "543c9d62626d4f3e9ff786b323316915": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "543e2c6e4b6e43a49afe64bc463dad09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5446d08fcddf44da903f8f643db6e67e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "545066be7a644eb1b781a98c8815d46d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_93c7335c3c9a4d6f809f55374508b7fe", + "IPY_MODEL_bc26889b776c4512ace34579f0e8f09f", + "IPY_MODEL_340cfd329d054b18b9fcb703b8d46129" + ], + "layout": "IPY_MODEL_a834bea8acdf45a1a0c40a43711db50b", + "tabbable": null, + "tooltip": null + } + }, + "545a6052e4004f37a8e9c6eb6a37e5bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_471e93c1ee484835848aafd0e5e88bbc", + "placeholder": "​", + "style": "IPY_MODEL_443fd68dcd3447d39fff9d0edc971822", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5461efb1bc324c7c8eba6fa0e467b593": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f111ef95de1b45efa2f71d6310b0ce6b", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c79bcd72253f4c48b3db5eb10b6a997f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "5469fb1ed67549668a6f22741666fb79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5473fdc8bb5746bcae2f64d834cd6bc4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5482e7075b1a4707bd2b51690316cdb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "549e4f81522141ff85d3c495dcc414ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d7282c7c922f4b25b187443a4b5ad779", + "placeholder": "​", + "style": "IPY_MODEL_c04a1fe114a141a39b24f8ef624e1f39", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "54a06d58a8134b59b29b1f9436811c8c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3d25b360b36418490d40b7837d80433", + "placeholder": "​", + "style": "IPY_MODEL_48581942c9eb401ba744f37b81d6c11a", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 529.86it/s]" + } + }, + "54a7ff315dfc4a56a7606dc7c7fe5137": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "54c07fc9f2b24c789a8c9bdb23b56e09": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "54c228e9587f429d9728425ee4b2a1bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e4a3dd9bcfa24461abeffbc2454262ff", + "IPY_MODEL_b89c99108c6b4876913736f14c38a201", + "IPY_MODEL_a3d2c47ac87d4f008b6f9d749ba4faba" + ], + "layout": "IPY_MODEL_3d1f4e1b138d49a089df1ee7e6f8417c", + "tabbable": null, + "tooltip": null + } + }, + "5505ffe9104c4ce58adffb9df12bfc5b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "550743c73adf4336b99b747413ab6028": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "55081026aa3f44e6839f6c21e34487d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "552335b59b054509ae04f9e30493d90d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_38ed881a3f3e43a18631b64cc078750f", + "placeholder": "​", + "style": "IPY_MODEL_318bf96ee79840aa94f5709217fb47ff", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "552f5e72669b4a949a9444243a567931": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "55399d774a304ba0b47a123d38d643e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "553f0be64b594881bb07a2a5146c50e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_01829f5f51d44629a8353312d625ffa5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d15b15ed858a481c80d2927acc37930c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "554f8e8636ca4ea398c95715d110001e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5554ad6d523d4d7791fad7ab9a46f2ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "555549164f3d48159eb2b8e268cc3c5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "55781ba499a842a48c3745b2fa66f58a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "55784257c0dc47809c0064754346fb1c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a4b8e6c12ff24962aea0bcf714baa0d5", + "placeholder": "​", + "style": "IPY_MODEL_057536dbbbc049f48635dc339afbe196", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "55862d74ce8843c4a6cf7787eb3bcccc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "559067c86ce54c0c9f1becc6b66e581c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "55a23eaf18474db5b6b5a976380d8230": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "55bcc2fb04c1438598f1960446cd50f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "55cc2548bbf04070b94494095ff06cb8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aa5a368d3255452592ea1b4c28079ee4", + "placeholder": "​", + "style": "IPY_MODEL_eb933236264045f0a310b94b07a5869c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "55d18983f1134c7e9f123573f0b24f27": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "55d495f21c814545a2f008ef9d1d09f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "55e4009b39e84d9db274694310e729f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "55f1aa4893e447179e97cea505aa5e67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "55f996ae88e14ebe9e85f18189a83cb3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "561a4bc817e64afaa7125b30a236f6db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a9617d7dab534d978675473d8dc3a6b8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2a7698af49fa472c869ba4c06b1f1370", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "562c488e66bf45e4854ffa916bca733c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "562f2105eeff4fe0851b4326bc08bfdc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "56331da15c4e459c876a63d617d9b32b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "563b43a747874d2594ce3ee4225a77d9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8cf9f9b278aa45d2b4a83ac03d632503", + "IPY_MODEL_5461efb1bc324c7c8eba6fa0e467b593", + "IPY_MODEL_de591a88ebe2499c963235ce1acdf933" + ], + "layout": "IPY_MODEL_0ffbb0a802484b2ba27f52e3e2ab9d08", + "tabbable": null, + "tooltip": null + } + }, + "564ba8be56f3436c99eaa30450bb6c2d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "566bd704ae8b44e29e64b21dea874bd1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0b62b2433d524ff9b4b5314a384f110b", + "placeholder": "​", + "style": "IPY_MODEL_03ddcf9610e34719bdcbd90d849a3848", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "568ced3c32aa4b62b3e3f91c66a6f22f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "56a21fc04df14f5aab87a7db940adbc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0756ae79668746f094c2db0a4121780f", + "placeholder": "​", + "style": "IPY_MODEL_0f176a2c555f4bfd9e8be774c08f054a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "56a98588414e4d21a98f337a9121e943": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2e81c4305a44438fa7ef64238bcd65fc", + "IPY_MODEL_aeec18f3aeed4896875933c6fb4a7e87", + "IPY_MODEL_d35745618d3a46619ea83e26e3774d46" + ], + "layout": "IPY_MODEL_6e5fd6827945407eb336dd78d7644509", + "tabbable": null, + "tooltip": null + } + }, + "56aa2cca4c8543e8ae339642fdd20432": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "56ad5ceca657483b984ea9e6ec25acd2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "56c15368482149c39957a094b5b3bb01": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "56da9786a417471bb3b8bbf9b9c1f7eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_92b032eaf2894017af9c182658ed482f", + "placeholder": "​", + "style": "IPY_MODEL_0da09c6842444c0da7ba3db3004b26ef", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 546.42it/s]" + } + }, + "56e2df5756bd4ecdbd1326e2c7cff60c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca4db5acebef4dd58dbe1ece0ad0e02d", + "placeholder": "​", + "style": "IPY_MODEL_503b46c4c1e747509bc4806f31072c7c", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 357.95it/s]" + } + }, + "56e844d5156545faaaaf1edcb19d6452": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "56e8e604b8424fc2bd87a5ffbbedbf3d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "56f8d3a498874ee8993407e28a847f26": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "56fa649e24174c04a41d6bcb86f3c8e0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "56fd0181af294cc0a53e92a856da5d57": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_51231e6a1dbb4597a74919c2682567d8", + "IPY_MODEL_50255387fee24237b124a572a3c15dcb", + "IPY_MODEL_42c71f602248469096ed91b90e6095f3" + ], + "layout": "IPY_MODEL_ba6afb0f7ba74530ac18272cdbef679c", + "tabbable": null, + "tooltip": null + } + }, + "56fd72140fdf48fe87011e828715d038": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4c788447e1854232bc7964403cbeaa94", + "IPY_MODEL_bfa33fed0050457ea3e011eed9076690", + "IPY_MODEL_f59ce883f6544890a566cf15161df7fa" + ], + "layout": "IPY_MODEL_6b40d62d572d4d66be8e14e69c26fd01", + "tabbable": null, + "tooltip": null + } + }, + "5730eb19848748bf9ea20af13629a18f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5749870b8e414a369083204b0866a129": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_235fa6ec61e7418592863489cefebfee", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3d25cf5e64e2464196583c18e4b9f08c", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "574af7bc9dcb4c589293ef7f03df5f67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "574b08674760459b81784861b17f6075": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_045a1d75fa724707a6091fc4bd8714f8", + "IPY_MODEL_bfd9a995319c4bb5a06d93fa59787b8a", + "IPY_MODEL_6f0aa795144b4e61842a05cbe06ba5e2" + ], + "layout": "IPY_MODEL_7430ffa117e649c0b7fd1e9953173fc2", + "tabbable": null, + "tooltip": null + } + }, + "5754ff6113554b50bc53cc63181cc669": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_75e4bb5251e7426c88c747055baaec88", + "placeholder": "​", + "style": "IPY_MODEL_dfddc68ec6df442b8590ecbac771defc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "575a806ced1e4ad482049268b121f262": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eca7c6efb2844a72a03a0625ec4d7a64", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6b7201de17db4566abe69b7fdda5944e", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "576f1dfdbc12467ebe290351d695c9bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bf296c6886d4431982db7f0fe0580149", + "IPY_MODEL_11095f13657147dd84f0901883b6deee", + "IPY_MODEL_7db747e948b141ffb46d4d65b90f1dd5" + ], + "layout": "IPY_MODEL_a467fc01c5214541a246b0a91b46eac2", + "tabbable": null, + "tooltip": null + } + }, + "5784b6701cf5488f812c0e432bc14a6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5794c98512364bb5b59aed5552d02e2d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5799ec0211e84d29a7821e19b974450b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "579fdd28e99b4c92bcd826cf1b5b6bd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5de62aef4c98483fb3ef437ed5e5b28c", + "placeholder": "​", + "style": "IPY_MODEL_2d1efbb822384b7f882305d7a65c1e0f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "57bc0b49674f4ca99999dcbce173d320": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "57c48172f6524b1e8e6b9744b04f079e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "57cc005303c341f8aa341dbf37aa5fe6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3a6bd0833dbe4c42bad896a6859d5f9e", + "IPY_MODEL_2a9deedcf3a047e8b3b4218d926308df", + "IPY_MODEL_62894db5035b428695134dcf86835d38" + ], + "layout": "IPY_MODEL_f05e48afdef34b00b2e4a12d0099cb0d", + "tabbable": null, + "tooltip": null + } + }, + "57cc7d4c061b4b1bb2f64f022483c801": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_79874de5b0b94f44a9989e9991d6c7d3", + "placeholder": "​", + "style": "IPY_MODEL_0ace6ea4618c45a880aa9836feaaa596", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "57f1417773bf4bab9e04d2641c7de91f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bc53ed67a59c48338115475dc24c8b50", + "IPY_MODEL_67cdaeb56bb348fe8af9935c5c8935c5", + "IPY_MODEL_5017dc4d3f2c4a42924f8f1cf6aeebb1" + ], + "layout": "IPY_MODEL_4a4304e4f67842669f8c2b998e62754d", + "tabbable": null, + "tooltip": null + } + }, + "57f14a9c089c4c55854ebab8e4b35969": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6c534749c61546119485e81bc9f60a74", + "placeholder": "​", + "style": "IPY_MODEL_4f9e509e381343b3b6a9d3b39821b7a9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5800b3f851634d19bf61ef2baf3d5a79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_69d97580d58b412f8347b98abf9b5668", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_62bf01a6b3004f079b999cba66c95245", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "58054c441c3a4d458ba824a38e0a8cdd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5f0eabc62c054a528bf159b1872da05a", + "placeholder": "​", + "style": "IPY_MODEL_38c468b16e1846a4af807bf5ae0c681c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "580df86c617a45b9be706a63bece2704": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_61bba3727b9d41b6b03ce0509526ba73", + "placeholder": "​", + "style": "IPY_MODEL_9c51d40a9029438cb653172843fe718d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 343.49it/s]" + } + }, + "58122bcdc5204e46af00909f51efdb1b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5822c44b964742e2b58f5d05e016f8dd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "582a7691387e41f9861007a00145e87e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "583246f04fc8467baccc220323bc6fd4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "58392e9f8c6b437b925f7acf02a8b4ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f80189767e0841618d2a2a7b567279a9", + "IPY_MODEL_28e0024b5d144b8aa976c01b0b3f6edf", + "IPY_MODEL_2842b736076f4833b4d6b20a674c9c72" + ], + "layout": "IPY_MODEL_668912f24fff4246b901946345ae3f9b", + "tabbable": null, + "tooltip": null + } + }, + "583daabaa752488e863b1eb2a2268447": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5849840231e44ceea10e6244db7e1977": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e083f34f0f643ca9716f1a380ad1f75", + "placeholder": "​", + "style": "IPY_MODEL_dbb39c1cd8784f5e85d12cbe8d7a35cc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "584bd59fc882430ea193462cd7ae1eea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "587d012b75ba4296a205d295424c9416": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "588a4bf9c56348aa87e0e5282e931e84": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "58a6bada81f748eab32fd0374a09de57": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "58b6accf98364ca38d96cb7f82a868f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fce0ff3c381941d99aec4b009772d8d7", + "placeholder": "​", + "style": "IPY_MODEL_f4949b379ef74d7fba34e3a8add28a92", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "58e7cb86be154b1c9328f84a35fa55fe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "58fc9ec2f4634359a075028db53288a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5909062a32764981b19dd0b35d7e4d99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5918272943e04f0fa713c2dae9a8dc61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5921b188a7744758a37d2f859b6a607a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "59300e455c224ade8d0a4f260e877c99": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "593fcd23df0d43a69af4d7bb63a850f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "594636e6859044509693a9ebac3bd232": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "59556bfeaa334668886e936cd8aec37b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "595bb83f8eda4b4bad9cc570604cfeda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_099d5a8d51464af082b2927a1689a617", + "IPY_MODEL_4d8963f68dce48e495340b4a5301c793", + "IPY_MODEL_62d6f8eff3db4b91b1b4819fe5c8eca7" + ], + "layout": "IPY_MODEL_f406f43617a740ab835a313147358fa0", + "tabbable": null, + "tooltip": null + } + }, + "596109a84ce548c9b0fef40b9d137d31": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "597a0b8ac00d44aeaaff4a16191fff58": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9056c4c1ba3e49ab9c20f7b5866d5942", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b28fcd115a2044a38a423afcc85656f6", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "5988cdf322b140b18f737a4cf2669c5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "59894643e27a46a091c3c42ffd1e9797": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d568a8d8e7f1469a989fe5f59b7d8286", + "IPY_MODEL_bcb610bea90047c1929dcb039be33a4e", + "IPY_MODEL_33e3891cf3b649fb89441d27a7e596af" + ], + "layout": "IPY_MODEL_efd0d93e3fa942108e8120b539ecbf96", + "tabbable": null, + "tooltip": null + } + }, + "59a15e2979e04ce5b12ad0d6a9a2d87f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "59ae02779f37429c88d76da63653c949": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "59af76d5f2df4a88b6c9b8cf625743ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "59bbcae8726946efb23b876cde654930": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "59bf0e18155a4d489794986697d2b02b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "59cbc6071063458880b538af2ea9e543": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "59cc8102a7f149c991a04aeb4179fead": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5a0e8382f10f4ee4b3f8aca02dcfaf1f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5a1903b1e6c84cd4a3830578427287f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5a1b28c0c4a84acf83fa6ee49b48f97d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5a1e5c19df6042a0b16591ddc4e789eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c4af19b09ada4fb1969a86cb85ad50e2", + "placeholder": "​", + "style": "IPY_MODEL_41cf866639cd4c56b950727d592fff0b", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 524.17it/s]" + } + }, + "5a401f47aa004e6b80235c95e3c41660": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8a0113cc2414488eb6c7c86caa7f40c3", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_99bab21b28384b44803b16ab1244111c", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "5a4055d566d441ba80aae1d78f913f7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_24c5f12806f54d17bfa80e7d04007230", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b7e741c91850441497d046154d86698c", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "5a57975521834cffadbee845b4fb5d7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5a6f673179534ac58eba7f3cfa38c8e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d76fefb69bf4435494a82056f155d928", + "placeholder": "​", + "style": "IPY_MODEL_6c3a525ccaa0498daeeb53be3231434d", + "tabbable": null, + "tooltip": null, + "value": " 40/40 [00:00<00:00, 370.25it/s]" + } + }, + "5a734cce3f554523a5ecf5ea241ef60e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5a7bf37a18224cad8ec49c4e3130cfb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5a9183e2273c4b18a0507d7e740be55f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_872c42e3457c4c049aea7d8e3f7be538", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9b06880c59d943d4a36b01cce1689421", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "5aa11eade5524f98b222c50c70346d1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f5904fd283d14d939d490d57fce08690", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3c21e989eb924c51afa3d6ab133ff18f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "5ab337e2e776461ba64c567397e468fd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b90c7f3446774ae187850fc7e4a439d7", + "placeholder": "​", + "style": "IPY_MODEL_d585c3c0a8eb484b9ada44a7b822a926", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.86it/s]" + } + }, + "5ab624302eda433d9a6c535d0883d67e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5abf5e8af169412a9ceef746437ccaf4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b610933d41ce403aa9fc967ffbcb0e10", + "IPY_MODEL_13273e83374d4bbc8ceb608e69ec76df", + "IPY_MODEL_c48bdb3b4f0e4953838e408b266486a6" + ], + "layout": "IPY_MODEL_16e2825c973340859191fd2192d7f5bd", + "tabbable": null, + "tooltip": null + } + }, + "5ac84fa67ac34893b8fc8ad364a77520": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e156fcc532694e719de1dcfd34c472d1", + "placeholder": "​", + "style": "IPY_MODEL_bfa8f4398ccb45118642300fa8942d9d", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.83it/s]" + } + }, + "5adba0c8771a46e9a4b64c5492134377": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1fa8a9e792a64af3bf45114c188ebd51", + "IPY_MODEL_d9d4748df46942a99f9cf95c20032ab6", + "IPY_MODEL_3f437b89384a47858795d9443f775f9c" + ], + "layout": "IPY_MODEL_16a44bfe9b6f4149a02960bb9405629b", + "tabbable": null, + "tooltip": null + } + }, + "5af73479f95f4680b38d95b7d81208b9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5aff711cc9b94bf9ad4b4c16fc0645bc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5b035e7352e1483a9ecbd0d168a75a14": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe5b548690b942ccb066a358e84a097b", + "placeholder": "​", + "style": "IPY_MODEL_ccd92b9a45504759b6ea72a6a0f7c4b3", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 522.45it/s]" + } + }, + "5b0ae84d5efa4f81a5ab2dba6efe364c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f051092cb08b4b1c9bfcdff2063022ec", + "placeholder": "​", + "style": "IPY_MODEL_a8a936263c0145fa802e51cf0b56db79", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5b107b3241f74960a64adb61e453340b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5b1d55d82e314c7fb8f2cf47edbaedba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5b23ceb5ebf84d3ab0ecfc42d3cc42e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a80df43bcaaf4af2ae0cc1a180f6ba67", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b5159d438cc248ea84b3cb7076f3e4a3", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "5b2b8097e9774a4099b67e60317d3a5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5b33082db8794308bc0a8bff3c8782c9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5b4bda04086040bc8556e8f39280dbbc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_991969bfb4e14d1aa80584c520103786", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b2be8be415ac4def92bff243e28e5fb8", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "5b545659fb31437c9954ecc667177a64": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_06b402a8615d4abda1d14094c939baf8", + "placeholder": "​", + "style": "IPY_MODEL_f70bc7df5fd04b409688441c1fb5bf7d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 393.02it/s]" + } + }, + "5b635df0124948c68f032a75096fb0ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_13928056c29346079a8405d6a4a00f6d", + "IPY_MODEL_34f7ed2048e8474e9e1847ded58d309f", + "IPY_MODEL_22902bf8f0704bc1ade2b5aa4b0b5d85" + ], + "layout": "IPY_MODEL_75b066e005824876afa02efc4391a50f", + "tabbable": null, + "tooltip": null + } + }, + "5b701e53cbb14e08aed29849480f5131": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5b708c80a5be48ed90a629e4a5c2a6c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5b880620a1044692b60fd0788753db8c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f9fcb525eba349298dd293b1b6d4c93f", + "IPY_MODEL_2dc6a302ce8b43bc9c5be4ccd474b1b8", + "IPY_MODEL_01c49f8c6dcf430e89d0909f0d7104dc" + ], + "layout": "IPY_MODEL_fa9513961a3442d28c68612f8265a529", + "tabbable": null, + "tooltip": null + } + }, + "5b8c894eddad4de393a1009b16124697": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5b9065037a384ee480c230674a6bd852": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5b9ce47ffcc34c96a4c7773549e1b6e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5bb00b00c2e5481698a4157ef4c0111e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5bbd950454c44ab39ad37902ac7ffb1c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5bc9ad46b1294e5aa9f6c63edff166b9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5bf51e9034ca4226a5d6a912d5e712c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5c0e2af52af949dbb288bc26e00fc51c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5c12355c51a64058a1eeb56a7d27fa96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_882999a631c4429cbbe2e69d51171a8e", + "placeholder": "​", + "style": "IPY_MODEL_a56251e1854343e7afc9b17738ff84f2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5c1ffa684b944bba9d78eb138bbdf490": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5c3ccb713ba44d849d052d1d9ff36160": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5c51989b234f471d8c02418215f823f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5c625cc48015484b865dca3539bb729d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5c7549a3f4dc4e10aa4f769264734757": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5c818466b33b49959fcdb0e77f5295ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5c9c54a5e1ac4c45bafbac1f93e4e5e5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5ca74af81c2b4656a9ab7da6f0dd2430": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5cc395e427d545f19f8710c09f332ace": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed4beca47e2843b4b7ddf46c690532b2", + "placeholder": "​", + "style": "IPY_MODEL_295a65ff1dfd437bab6bda55851d6d0b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5cd9a48ecf5943b69512c8d4f7c12abe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5cdc2f10b25e4a9b82ba9ded2051820a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5ce0fad028994b939195d47b9f228d59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_750665de7bcd4f228f504b7afc1944da", + "placeholder": "​", + "style": "IPY_MODEL_21fa4d69ee2b497496082356f6c0ddc2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 380.89it/s]" + } + }, + "5cf2990c1c044c25b75363829bd7089d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5d078fa3b59b417381d8b0f9e60ba67b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a342f266863040f19dc17113909dbbf1", + "placeholder": "​", + "style": "IPY_MODEL_3742adb644db4a0fa1874edc34fc1092", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5d0884582ec841b4a2a83111c0689620": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5d0bca54af2741fbb35f2e0f7a35fc87": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5d1abc1daa1245ce8730a2d33f6ed539": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5d22c82794314d6c81232a30a2534ae5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5d269972da3f4486b139118708d3ebe5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5d29999fd2c941f890de80d5b8272755": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8d4f1fe7f62e44afa0f56bf384d3ef1a", + "placeholder": "​", + "style": "IPY_MODEL_4ecf1f0962a840e5963e178e3ca545ef", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5d2ae5728d684bcdb7fe9186072c5ad2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f190ae66d31d4bec99360f029220869f", + "placeholder": "​", + "style": "IPY_MODEL_0ec6734f91364e10bec261171c43d1d0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 592.05it/s]" + } + }, + "5d308da6c4364c44aa3e51b9066e4c42": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8473e7cf5d5f48599178ba997a3e4e1e", + "placeholder": "​", + "style": "IPY_MODEL_813893e0e94742c48d1813566dd3f65e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5d319b62e22247a89e56a8f5135e3aa6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5d6fbb434c5344b9a28670b6e460d3cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5d736c03f7714f3eb5bf71f9d552e708": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5d742666716a4b15b47107d1a0309abb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a31e964b58f84c3081951acc263b58f8", + "IPY_MODEL_5b4bda04086040bc8556e8f39280dbbc", + "IPY_MODEL_856a7483ae4349c59ea2bfc8f9fc83e8" + ], + "layout": "IPY_MODEL_c130321970cd4ef69d6567c25d4087b7", + "tabbable": null, + "tooltip": null + } + }, + "5d76d21f617146b19033d03068811bae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2c6eaf5936794e5baf1f42e642c0db97", + "IPY_MODEL_46ba6a130a3b4af4a049bafe6f4cf2a3", + "IPY_MODEL_13a08366c86f4c8ca19ddd8668200c2c" + ], + "layout": "IPY_MODEL_f379243e41f8437288395abd9ff26c6f", + "tabbable": null, + "tooltip": null + } + }, + "5d95b2b9e14e4648bba94d454627c7d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5db25dcc07c548c584883d67a401b518": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5dcbdf822e384b77a02c2c2e14556268": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5dd97ad019704dd9b34bd23a8353d731": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5de62aef4c98483fb3ef437ed5e5b28c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5df0d252124e4302aacf3ea324ca01e5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5df1558285c94d748a32e91e2a642caf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a0001ef28754d8e802e4da5838abfd3", + "placeholder": "​", + "style": "IPY_MODEL_b4e15245843f42d19980c6a503e3f8bc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5dfc59984ec949768855dc1a10017cf8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5e07a4584d15461aa4950fa94e5e5d6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5e10d3945f244e8eb84fd2835e7d6f8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f41f69ec30d2458eb5ddf3d1e6ae077f", + "placeholder": "​", + "style": "IPY_MODEL_d2a9b216fba9410db348a672b660bf3f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5e18d58382034b17ae7df0b62c4d6fba": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5e19b2aa22a649558c0dec6151d565da": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5e2ff7ebaa0345a1a7cb3c476825da99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4c4d9a18ea43412ea0696f292d25cf67", + "placeholder": "​", + "style": "IPY_MODEL_2693fe08f7fc43ebbe08c956904dcb4e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5e312dad761b41318870e912d1281bb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5d0bca54af2741fbb35f2e0f7a35fc87", + "placeholder": "​", + "style": "IPY_MODEL_587d012b75ba4296a205d295424c9416", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 707.42it/s]" + } + }, + "5e42a316520f44ada04f9ce2978daa8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_dbe56d270d6e49b48fb256a6a68e34a5", + "IPY_MODEL_80fcc5f6755b4480adf1337d1a5ad1fd", + "IPY_MODEL_e23d755815344996a6b98a5897150927" + ], + "layout": "IPY_MODEL_6a1ff27103f441398309903c7225390e", + "tabbable": null, + "tooltip": null + } + }, + "5e611cd0d1de4ad587ca8dbe10886ec6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5e6a4bcde34846628b3f7b4482b4531b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5e6bcefac4bc496a87a7e1c322a03f03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ecb21ea13f014102b57d9e3d3091e8d2", + "placeholder": "​", + "style": "IPY_MODEL_427335ceadaf47e7992ff79fa8d8fd7b", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 500.63it/s]" + } + }, + "5e7c5673ca4d42738ac3bcc3822ac0d9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5e7ed3761fca4ed9914d166aabfe7080": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f6ef0bb145f24da7af6aa937b69bc95c", + "placeholder": "​", + "style": "IPY_MODEL_467426851414499395c40d099aa05996", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 782.23it/s]" + } + }, + "5ec22d7295904792a0f9b95c48d64e19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5ec24e628daa478da28c45d569bf9694": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5edd67b5ea7a4bc195bb58d576e7fce6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5ee7712799d84bcfbc63501fd2b8b37a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5eee09fa7db5419b87468ed4b58529de": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5f04b369194d44bdb00982869171a4ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_675daafe34cc40a2b6b0eba0a609fa04", + "placeholder": "​", + "style": "IPY_MODEL_4a650620f20b4f0eb2246accab10d3d0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5f0eabc62c054a528bf159b1872da05a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5f0ff14a43be44a8a3ea20922b33b38d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9d7e37ac55c94ac58d6ba1335f11139a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9b2ba4666cd342359f63ead31d7f3015", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "5f10c289b4fe428ea1fd69c91fa9fb1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5f29d1d96b4d4ec798cd0868372ac526": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5f3aca025c85473588dba4bc8906667f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5f40c20a0d9e4982916170c0cbc8d092": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_134b722a55d845b28dfb570927ea129b", + "placeholder": "​", + "style": "IPY_MODEL_d852688d9ddb4c358caffbfb35c3a43b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "5f4635c33e914a77aa01b41917fa285f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5f6a573de80b492ea75eb3028296a42c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5f752e49bf3f4e6498a650df67fac555": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_07bc20e1107248948af10684b984207a", + "IPY_MODEL_36c8ede41efd43de912a4c48dc15dc2c", + "IPY_MODEL_49f20eff7ada4d87b274814edc76558f" + ], + "layout": "IPY_MODEL_f56b3ee617864d8abda55b87bdb3a06b", + "tabbable": null, + "tooltip": null + } + }, + "5fb2d772a222466f8936baa76bce5735": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5fbe9800fe224c8db23bae73ea958ec6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "5fce01b47c504330b0ef46b3aa6340aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5fefa2abb1ff435d88e935868e11a47d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5ff769452f3e46e4a360a0b1a6da5e95": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_98efa56b940f4fa6b3911496536d76d5", + "placeholder": "​", + "style": "IPY_MODEL_5469fb1ed67549668a6f22741666fb79", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 227.05it/s]" + } + }, + "5ff831b2ccfb4b1fa8061cf4c4f59f08": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "5ffd9b88dcc8462c9fecd8f87c0807b3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "602deec04a844d7cb25e2258e2647cf1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6039a69885fb49e99aa6d80738c5d531": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "603cd449eb134405adc8a9063142b0ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "60635c178aac4b71b966586959b7da56": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1e0058a444e348ae81fc619a3e022683", + "placeholder": "​", + "style": "IPY_MODEL_5edd67b5ea7a4bc195bb58d576e7fce6", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 351.85it/s]" + } + }, + "6065fb931e614d1ca1aa23868ea162ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "607085c58f89422e82af97cf789355d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55081026aa3f44e6839f6c21e34487d7", + "placeholder": "​", + "style": "IPY_MODEL_dc5c7be154d340bbb5995d5a00ef7146", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "60841704bb4e44bf9a48a7ab0151e386": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6086e513dd0f4263ab7624dfae5c8852": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "60c80d645930468eaac28d9eb54ff010": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0deb514a74f749a8b67156a77e3b7dbb", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7a0d80d96f63496f8a93ad77a5a137e8", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "60ce6a3ddb494c16a8b3681ec8a1a4b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8339a9c0b00b470cb5efed60cd7236f6", + "IPY_MODEL_50dc4f05051640bfb2549b1069581e40", + "IPY_MODEL_fb6fa5a8e58545229bd8703d09d40cdd" + ], + "layout": "IPY_MODEL_78969a5ef40c4ef7a3a5e5a4bcc55ecc", + "tabbable": null, + "tooltip": null + } + }, + "60d86f64802e4f67ac30870c5ce81372": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_071e96e58c094a859219e90487bccf26", + "placeholder": "​", + "style": "IPY_MODEL_fb195f0e1be14b77a64c8fa819543567", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "60e3f9231f104a189723bd60c27d6f1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_281fa725231147ecb836a4cb919432fa", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0f622c7b506f4468bab7feaa436bd152", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "610bcd7ebc9146ed86d4b39305324fbe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_68a6bfdb383b44a78a8c914b1b4f4826", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_eded7877bcf24fc5b955f29774ae4788", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "610fb63fa2be4be5a2cfd4d3d1e0147d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6129aaae66b64566b5955f8ecc11c973": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_784f3a2218084b8b8158999d881a4817", + "placeholder": "​", + "style": "IPY_MODEL_e0d14ea40d5a447e9f428a55ed0349d3", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 773.03it/s]" + } + }, + "61441f12aefa48479fbc2fdb81657e7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6155e34319fa4436aed3574cdb83ed62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "616011a6d0b14a509dd126b411f8b6c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "61bba3727b9d41b6b03ce0509526ba73": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "61bbd4b92f6c4223a1f3d4fec49b8c63": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "61bc845be7144586bb676c5598d33366": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "61bd93580b004889bd7b56cd9ec528f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_658a252b3ba74677aade1a881d421325", + "placeholder": "​", + "style": "IPY_MODEL_6c0d3fcf89244a209928dc453b94749d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 364.65it/s]" + } + }, + "61c72d19d08e4e48af0c74ecfaed57ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "61c8fa4636a644838437c44919302c34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_10e2a944739e4170a7fa9dc580235148", + "IPY_MODEL_c1faecae60a24cc4b531746fd29fc7c1", + "IPY_MODEL_b917f83ef0684cbb80610eb2fb379063" + ], + "layout": "IPY_MODEL_5bbd950454c44ab39ad37902ac7ffb1c", + "tabbable": null, + "tooltip": null + } + }, + "61d470eca1104443a3e899cdd0eec4c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7875f74595774158885d9fd85bb311ee", + "placeholder": "​", + "style": "IPY_MODEL_b5431b66ebe64916b9914c8e87a46eb5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "61e935cf2f504e569bb206e15e9234bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_31e650790d554640897cf4934520f52f", + "placeholder": "​", + "style": "IPY_MODEL_0fa37978b8f64a96bed5a9a548b05c5d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 341.57it/s]" + } + }, + "6213cbf0add148fc885aa9bcf9daafb2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62255acbe4534c3a96822d3847a4dcf2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "623f3935e4cf4c23a09f5eb4a5b5f75b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "62489f15f3954d4ea078f8e1709242c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "62680ab2a35145979d22f2ef079cd3fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "62692e48e35e43a4b1223d360bd464d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9364d370c83940da876e0a5faccc2440", + "placeholder": "​", + "style": "IPY_MODEL_c3fb04813b3d4b049e65a29b0f5447a4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "626f5be4b8a34439893f6a6bc8045c2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_824a788c0ce240fca3d0ec82f24a9a8a", + "IPY_MODEL_dd58fb5ab2534f84ab0cea35ebd2e711", + "IPY_MODEL_13deb3ecf7c449d596cb3124f440eb7f" + ], + "layout": "IPY_MODEL_87c6109b27244a39817591b790942da5", + "tabbable": null, + "tooltip": null + } + }, + "62894db5035b428695134dcf86835d38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_48b83b88c8ec48208ad333c709b3bd3c", + "placeholder": "​", + "style": "IPY_MODEL_cf4d7044f9a24f308fb37d97d906a703", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.02it/s]" + } + }, + "629f41faea684a50ba38a6af439b2f20": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dafa5bc29e18479b86cdfdac4dcaa1b1", + "placeholder": "​", + "style": "IPY_MODEL_a9faba5b4092402e935339d98576245a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.66it/s]" + } + }, + "62a959434ec04ec191969e96236bcdaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "62abf2ba4b5447b7a21f53b9a8c67b33": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62b7d724fe3f471ab3d72ab1012dec7f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62bf01a6b3004f079b999cba66c95245": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "62c5769a853a488b8e8695f2bd5d1a4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "62cb9c9c61c24c4d8c253add47abe320": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62d0dbe3cdba4e1a8669fd8d394f5c80": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62d6f8eff3db4b91b1b4819fe5c8eca7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_12e6cdc82c1b47a09f4958bb88aaed9c", + "placeholder": "​", + "style": "IPY_MODEL_c76a785f3e7f4c1591aef5e08b2216a2", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 987.51it/s]" + } + }, + "62e0a3c689d2488f8ef53fae528ebef5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "62f3a293f6a243a3870f50fb2d8693e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_780706ab61214b40b9337e1c058dd951", + "placeholder": "​", + "style": "IPY_MODEL_58fc9ec2f4634359a075028db53288a7", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 670.29it/s]" + } + }, + "62ff541279024e5f9545a872599117a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b9aa19b739c242ebbf5ea5205adba2ef", + "placeholder": "​", + "style": "IPY_MODEL_1a40cfacd52846c3bed8b50665dbee1f", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 695.13it/s]" + } + }, + "630e902429a84390949ca50d10ec1e67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "63175a4a7ac042c2ab56c9ab46595846": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6318be6d27aa4e3083c2a5d29dd2c3bc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63216f9e7ca841d1b77b9390db1a01dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_fec892a128da41f79019be2edeb62d84", + "IPY_MODEL_11956932bd8b48cc9aaca1e686afa3f1", + "IPY_MODEL_a2457948d06846b08add500fb15b67f4" + ], + "layout": "IPY_MODEL_1d0bc5f812d7474d8c1b627e84c1bb94", + "tabbable": null, + "tooltip": null + } + }, + "6327371eae424a9abb814f2d6cd78226": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9bf2cb4ac582498f8acc35b4ed56d247", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_02bf54b6a5f545d9aed97b0cc7c0655e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6328a31ec6ef4805864798a512d968ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b01630a4cc67490d8816e57ecc0953d9", + "placeholder": "​", + "style": "IPY_MODEL_4c18becf2959497da74704eb02dfd8b1", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 384.44it/s]" + } + }, + "6332e3596fb043c09a2b962f4d9499cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a45653c82700405a9bf8ea1eae312712", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_80705b826de7414bbd3993564b971fe6", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "63345eccc7ec406994734cdfaefc0d2a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "633f419840344fcc9e04a0e7c7fc0aea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aa27f250c9f24f06af8625c6e410cd68", + "placeholder": "​", + "style": "IPY_MODEL_aefb28d1efb742b9b1561fe37d511499", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "634db9fc9bdb4dfb9139c31112a3ba10": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "6357463ea1464043b3aaa481d08ec4dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_896c3426cb634945b60e0d603e2f2b71", + "IPY_MODEL_b1f54a47ce004a45a344c77f5a2a8556", + "IPY_MODEL_ad15283d6e67483f8e8c542b99102dbb" + ], + "layout": "IPY_MODEL_8cfa474cefd34c0882a20a64982d791b", + "tabbable": null, + "tooltip": null + } + }, + "636186e5d3ce458d9dd8cd91510cc8f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "637ac1072a304f6595c24edd401e117e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_978e8b3b473448ad8fbcd7f8c6a2c5ab", + "placeholder": "​", + "style": "IPY_MODEL_73bab9b1b8814dd29b5ade721b73be7e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 380.89it/s]" + } + }, + "638c6501b263446fba2700ab68476e0a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_de83975a2dc4487dbea29ccd64062f94", + "placeholder": "​", + "style": "IPY_MODEL_dd25ce2e705645ef921801500579459f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "638cb13aa5de48c7b825dc991a007453": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6391b3efda454af283f459d0d7eccc92": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63931418586b4041b2b6a3ef7f8c9325": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6394108ce81b4a2d9079b3ef0eeba7e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d2549a5d2ec942f2841135650f7e2a89", + "max": 84.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6b1b54c196454e048c278ea86d11f330", + "tabbable": null, + "tooltip": null, + "value": 84.0 + } + }, + "63956312e3014c9a9e17c78bd3af2385": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8a735ec2da514c719f022d36013caed1", + "placeholder": "​", + "style": "IPY_MODEL_5430198446ed4a6fa88002a7cfed662c", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 350.76it/s]" + } + }, + "639df8ca996e4867b33e18cd563e2447": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63a53bb6342a4474882b792d21879dbe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "63acc5fa9da64a398e6d18f925f96bd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_04c38ca1dd6849b5bfccd0813de7c54a", + "placeholder": "​", + "style": "IPY_MODEL_2975815672dc4dc88c2c345ccc4888e9", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 387.35it/s]" + } + }, + "63b3386c76e740b9852940d007352db3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d622e87165274f268acdbd2839a29696", + "placeholder": "​", + "style": "IPY_MODEL_bdce63d85fb74c89877c12b74fad36e3", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 481.81it/s]" + } + }, + "63ce160168e643daaa2fb477449c5ab4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63dc3674232e44bdaef5341780bf937f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_05ed2a6e31b7406c86ef3e8ecf256ab3", + "placeholder": "​", + "style": "IPY_MODEL_6155e34319fa4436aed3574cdb83ed62", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 61.64it/s]" + } + }, + "63df57862e174cfbac1b87dcdce84e5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e4ad4b349a48408ca30b9b11b2a95c2b", + "IPY_MODEL_c15314f579ce4816ae5124e9b8255140", + "IPY_MODEL_f79b93467f1542aca6e8087f76174f01" + ], + "layout": "IPY_MODEL_3f18fd6ef44f40f5bdf7d3b49326b3c5", + "tabbable": null, + "tooltip": null + } + }, + "63e1227ae2e746dcbe5620dc841349aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63e678a3a9714f4ab670a80d3fc2883f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "63ead565f9a443318e9e267cc44dbc67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5c7549a3f4dc4e10aa4f769264734757", + "placeholder": "​", + "style": "IPY_MODEL_ea6b75ae656341f692117126ba92be6e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "63f3adab82f145429f2de105381de9ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "63f3b2476e6c490a99134edf457c2e4a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6421e74cfcf24f29bca670e4cd23f1cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6c7cb5d40a664bc781daebe607d406a8", + "placeholder": "​", + "style": "IPY_MODEL_743157ee3ed14bd195a515cffdaf8841", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 372.98it/s]" + } + }, + "642ecf55c36242f0879fd6ab9753138a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0d022f84189a4ed0ba5a26b6bb6fafe3", + "placeholder": "​", + "style": "IPY_MODEL_ecb544e479724206a965c194eff494d1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6431907c28404b3888537361a54f5154": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "643203adf9ea418abfe16ee71d12c7e7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6437dc82d36048c0aa6e29d7179b802d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_91f69b3d2bbb489a80cf271d3967e1c4", + "IPY_MODEL_af4bac0cdbb44def853e9e3d711315fc", + "IPY_MODEL_e555e177ec8f4cd9ba49b72b005b36d7" + ], + "layout": "IPY_MODEL_568ced3c32aa4b62b3e3f91c66a6f22f", + "tabbable": null, + "tooltip": null + } + }, + "643d267af18c4b0c988e89281e0c0d12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "644566f59f51470b956fd341349c5e88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4a1951b330854c84b77c6c72d011296a", + "IPY_MODEL_5800b3f851634d19bf61ef2baf3d5a79", + "IPY_MODEL_b0bc158199a746b9a5b2a6f2259f08db" + ], + "layout": "IPY_MODEL_41455f0fc9664926acde150aa1b02104", + "tabbable": null, + "tooltip": null + } + }, + "644d1658d5fc4487bc96ba4ea27931f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1f17683fcec34704b3fe3759c50bab81", + "IPY_MODEL_3b7e9b4473e6417c952b49db67dbd953", + "IPY_MODEL_fce9ea9d50164efba08aafae9c26a404" + ], + "layout": "IPY_MODEL_eb26c1df793b4050b70b575b3b502caa", + "tabbable": null, + "tooltip": null + } + }, + "645607a44dd041c0b489551c96e7fdff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "645652af372d47d29c61b58a45b07da0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6458be5843ed4945af2aea6e99a218d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "646af56c4d65484d918214dc39d9c137": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "64764687bf4e48b28e9e7cb2c6ba1bfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b2a029e9faa441b98151c0ab3c58cf15", + "placeholder": "​", + "style": "IPY_MODEL_f90266a105ec4dde89c0f8031ec0be5e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "647ec9f067f64474aeea0e9f2e883259": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_81d3884b68ef454d8a2cb33a9d11035a", + "placeholder": "​", + "style": "IPY_MODEL_2f0b066a921c478aad08222c53d6dabd", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 514.48it/s]" + } + }, + "6483def096944cc0a8459bfd32b31309": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "648ea47ce78245788c8cd94617c359f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "649d42929548436a88664f768dd3aecf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "64a0c394baf649c4821c2e8ef55b3029": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "64a1c333e273470cb9f8fd67badea44a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee8ac1256ebd4079888b36fcfd42dfa1", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fb6b573913964baeade22c4e5442ba62", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "64a2352eb6dd4b9fb9db52d9a5cc68c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_db976412d6aa4ec693192d6e484ea55d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fab2a2a694e44fcf8c652c6ee98ece8a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "64b0a67f63834d2d816d50c8f2d65bfd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "64dac01b400d42328f758858b089671a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_88e1a75fcefd4c0fb987159af20e022e", + "placeholder": "​", + "style": "IPY_MODEL_0899b7df751743ccae01c8e6208dfee8", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 874.42it/s]" + } + }, + "64de8a94380541ee8d11e4c1c161ae60": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "64e432dabb7149fbbd70ba27b81c14b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "64f5fe6822eb4efcbf31f932bc5f1b34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "650188d2e1cb4998ae8767eda8954790": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6507dc28d3bc478abf68c092228adc9f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6513eec4f7e74d28becdedbf1423f0a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6529dd19179b45919462c447413d8679": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_91378a4faebb48739038996b796a1db0", + "IPY_MODEL_74320e022ef547c2af2d4eaf9acfb8fb", + "IPY_MODEL_6421e74cfcf24f29bca670e4cd23f1cd" + ], + "layout": "IPY_MODEL_444ffdd05f34466e925881e340674223", + "tabbable": null, + "tooltip": null + } + }, + "652b9712efa04ab2a0444464fb7aef43": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1789925bd7b9442dba905d3ee45549c8", + "IPY_MODEL_919dc493c0ca4451996b119973451585", + "IPY_MODEL_f936c846dbb2468b8f1b2abad3d66475" + ], + "layout": "IPY_MODEL_ee2591c0e0fa4a01a83b1b5882a3aba8", + "tabbable": null, + "tooltip": null + } + }, + "653dfd397781466b83f8126804ccecdb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1b1ff9b9fa1a47e091ce32163f54c20d", + "placeholder": "​", + "style": "IPY_MODEL_ef8070de53a54b7e8b3769bab50e9e1b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6547787dfb5d43bf90256b2919813fef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "657bbbb28bee42049ce06151ab9dc23f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2d79a69ffbbe4ee399ca9c79f3708781", + "placeholder": "​", + "style": "IPY_MODEL_6cc55ea9b10e4127a85ac38fb63e7188", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "65822f6a8b14412c9f23f8d5c5b49b06": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6582eef687554cb9a14264b35f1d9d1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "658a252b3ba74677aade1a881d421325": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6599f79277e24cc6948213f0c18cfb93": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "65b4d4c2f50d4b868824a91b36a45949": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "65c2bc237cf2401da8816914799a397a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "65cd429308434b8caac5c1073ca4021c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1f3f5613ff664b3c9de24b5619486d20", + "placeholder": "​", + "style": "IPY_MODEL_81291aaa03984c4382fadfd0d6174c5f", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1044.92it/s]" + } + }, + "65d5553c519b463280b2123b9ac99ccc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cd809a399a2a4b23b7f2ddfc39025ea1", + "placeholder": "​", + "style": "IPY_MODEL_1d858fd02095412896b145728b219bbb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "65fa7a64f9a24181bc49d165007e4aa4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "660086cda21d4ca78be56eaca394831d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7143979a348d4559ab518a9a5db23591", + "placeholder": "​", + "style": "IPY_MODEL_c934542047e042d3bcbafedee744460d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6605b6ab97e049809242b7ef36fdcbea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a65728c4b9754bf2b5393b0d26f45da2", + "placeholder": "​", + "style": "IPY_MODEL_f02578ca998b4723950e33bb8bae7394", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "660e4b505c224f50b8a17b13639e9fb0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_861f2c37d1ed4d83b8248a984cd8eadf", + "placeholder": "​", + "style": "IPY_MODEL_d85cf5c61f1c45639fe2e31f7ff13766", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 371.13it/s]" + } + }, + "661a6d56dc5e4cec8a9f779c68a2c1c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6621954481bc4074bc0239cdb6f8a354": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_29902a65d790435993f29a02d0e459d3", + "placeholder": "​", + "style": "IPY_MODEL_43c2726319d3426ea723a7ff41deedce", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.72it/s]" + } + }, + "662b0c014efe4427b82b1e6720d3d618": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "663ab3fae29f4b579919821ba5af362e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0702a2c4a6cc43d5964c5e48d39bf971", + "placeholder": "​", + "style": "IPY_MODEL_e3a84a28962f4c09bd03706cf505446d", + "tabbable": null, + "tooltip": null, + "value": "Epoch 29: 100%" + } + }, + "663f1fe21fcf4b80af639fc84ffdadbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ec6df35ce4f4c8c84a589a12580e8f4", + "placeholder": "​", + "style": "IPY_MODEL_2243803741e748c483af31e18817a618", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 372.21it/s]" + } + }, + "6646295179c549a49de5ff9d42e3ec16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ef69dbd1c4774076be35c759d7a24f42", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_26789de48852446cb9fff95c0f3c1046", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6655c36ea12b4153977001d9c2a40898": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "665903de121c48caab28aa6b74a33d17": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "665dfa23a0414effb1900bc11198ede4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d26231548c6b43de9017231bddb5aa4a", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0601da5f773b46e887739171edf194cb", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "6662db61bb9c41e28ead146aa7318a67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8883a06bef5a4b118358e72a5509159c", + "placeholder": "​", + "style": "IPY_MODEL_0fef1008b21e4bdbb8064c84a2800c6e", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 74.03it/s]" + } + }, + "666ab43010254f0f9d6c891ac2d82fa5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "667ec1c09fdb48b78596daf1a1d5261d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_af3de0bceb4c4b5686115f80c9456e62", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2c44d5eff49b4c05b4dcf4d474bff34a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "668912f24fff4246b901946345ae3f9b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "66a469df6ebc4e87b4156f48d840f18e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "66b0b1bcd52d415d9bbf5e83bd7c2718": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "66bb1915859f478fa19350430bc741d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5aff711cc9b94bf9ad4b4c16fc0645bc", + "placeholder": "​", + "style": "IPY_MODEL_0093612a496042719d67db8dad3d3ab3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "66c41e119f474b5e8d358ea875a461cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "66cac9a7383a4ea3a51327cc4a617011": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4e9e31cd8a4c41949186ac83ac78b3e8", + "placeholder": "​", + "style": "IPY_MODEL_9c0e248b1f424ec8ab63da974ca8a7de", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 198.60it/s]" + } + }, + "6702f8a725634397bd1155714379e9de": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6704e547a43b4dfa8c2e57175e157fe9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "67156447a1e649fc9d08cad573041ac0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "671743e2735b4f13ba44ab2b637d5ac5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_db8ff67afe564cbbb63251cf1c3526ce", + "IPY_MODEL_40570a4badea401cb9d24b6147b802a3", + "IPY_MODEL_916407224fb346b8a9f93e23d4848ac7" + ], + "layout": "IPY_MODEL_3d8d325c64dc4bbe841daabfe45a38f7", + "tabbable": null, + "tooltip": null + } + }, + "6723679bcb44486a9044b6d78a6987a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "67241de9466848aba6b90a9fa73c3913": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6748b106a95a447d9dca681059774bde": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "674e56fd9046498ba2c118c241f64a3a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "67582f9ca7664b62b3e9df13db9e15cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e633399efbc4c9e9f4abd4ef4eca669", + "placeholder": "​", + "style": "IPY_MODEL_07314a42a8be46be9ed5d5ae9caef04e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "675daafe34cc40a2b6b0eba0a609fa04": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "677062af62704c8684ec44e81fd4f4e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "679534e56c0c4cfe8eeb13339d346dcf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "67984abb6b964f9d8b0be1b693f739dc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "67a1d8e3e0514d10b6d87512aeafed04": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_78342b2dee114c149b6b96df691409c0", + "max": 49.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_02ff521d545e487cb728ef99f3533f8d", + "tabbable": null, + "tooltip": null, + "value": 49.0 + } + }, + "67a5acfd25764476a110b79dd1199357": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_835812533ab44c56a3515b51313710f8", + "placeholder": "​", + "style": "IPY_MODEL_7175e0ecb4e04b048919659c35173f03", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "67c226bc2c514d60ad1dfd2f4a881028": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "67cdaeb56bb348fe8af9935c5c8935c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1216ea6accf545b9994bb678dcd813f2", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_830d9da4f132484684956e8ffad85129", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "67dde5956f7843c88b84a1d8bdeeb32a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "67fd73951b7e4e33817587b8b40fd1e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cd420cd10bb84831951a1c5f336924c8", + "placeholder": "​", + "style": "IPY_MODEL_fc12212a2a444c88b79d7e30c8393ef9", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.35it/s]" + } + }, + "680db1dc869c4a399a2147f83832c821": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6813b7f3eeab473ea3232bcb1a8b805e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_447bb7a9a3cc430f93dc5385f4cc939d", + "IPY_MODEL_d9b8562f1ff54f249248465668047ddd", + "IPY_MODEL_a26967c391fe45dfa7f03b160ef8a72e" + ], + "layout": "IPY_MODEL_df1fe867b3d244818f163e0d6fb999f2", + "tabbable": null, + "tooltip": null + } + }, + "6822559380234e17ac41b7a980b0208e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e1ffef847316464b88c84fa923960f80", + "placeholder": "​", + "style": "IPY_MODEL_3dc6d35eb2b3411ca0d14950852a3bca", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 376.09it/s]" + } + }, + "682896a944cc43cbae643b26833b76d4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "682bb80733574b328c40c5c5425fd810": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "682cace449a244c487290a0d2ddd5a56": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "683270bf9fdd48209d803550fd98d8b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "683ef442ff65401b8f1bac76639a300a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dea04da6468846e58782b2afaec1414d", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fb930aa3c6374f5e81f5f04294a70cdd", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "683efc8c4867488592eb9541f4081df9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "686f9b9595ef44dba0050385e3aacb4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "68729e946ad9420291eeedd29094d8ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_410699f98a8e49749a5662aaf6466150", + "placeholder": "​", + "style": "IPY_MODEL_84acb46948fc495c82505422a3a6e574", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 649.10it/s]" + } + }, + "687cd53b81464381b582f57f046193ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "688c86f8e7464424a4394b1b7f236dcb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0145ba3ae2274d7686a7919ba6efd2e8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_680db1dc869c4a399a2147f83832c821", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "688fa0153ab447b8ab1ab9675c43236e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c8cfbfd6625a4c6b9238972a9e49f77c", + "placeholder": "​", + "style": "IPY_MODEL_f1381e271215413fac3f68213f0a4d2a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.43it/s]" + } + }, + "68a6bfdb383b44a78a8c914b1b4f4826": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "68aee2b1e1be4c26932147638835d922": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "68e6d03a3d8c4a45bd6d787a0f6384b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "68f106f793944ae7b5d20001fcb4f855": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "69162f7af7d446e9892f3865f6f3c204": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_78dac77e87f24e1897fbca2c5a91962b", + "IPY_MODEL_7363a0d749e648068e4292a9ef5be68d", + "IPY_MODEL_3542660c68114fb7832c9038c477df1e" + ], + "layout": "IPY_MODEL_3dddfb42c1c94fdf90cbdbb8671e2f07", + "tabbable": null, + "tooltip": null + } + }, + "691c204989854debb9cfd17bd37983e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6924aa48fd924eb58ed2617c40cc07e1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "692df84f9d2a4e3eb3d93071048b4b2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b74c82b81974a3bb45e4d822bb67f92", + "placeholder": "​", + "style": "IPY_MODEL_b195982212c340009c47f5a96be99c32", + "tabbable": null, + "tooltip": null, + "value": "Epoch 19: 100%" + } + }, + "692fc0f9d4a14ff6ab17e58cf19a0713": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6935e568cc5441f18a68b5aec86de06a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "693fa9e3df954cc6a649184d74f75c9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6950bfefd4c045dda51367d220b66e86": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4274f25012264949be68ce37440d6fff", + "placeholder": "​", + "style": "IPY_MODEL_bfa0013683424a43933340a4b87e7bfe", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 70.55it/s]" + } + }, + "6950e7b330e84ece9ba824ddf34c8f5d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6959784ed10246328e8d93ad8d4a3199": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b45569ca97c1456699e9822e8c4ce2f5", + "IPY_MODEL_d7f9717f1b34403aa6bd8084bf07779b", + "IPY_MODEL_f77aa2bd32bf46e69524be3adca09965" + ], + "layout": "IPY_MODEL_50d126eafe9444059cbdad5c0bfa140b", + "tabbable": null, + "tooltip": null + } + }, + "6961319db5fe4f3e828eb415983b2d35": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "696b67adc1954c30842d0083d4a02a60": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "697496dd8af54eefba6b74a119627c02": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bf9bb1e892314eb98dbbc19b66252a64", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ee7be7c353ae4da696787b33534edf8e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "697fa30f6aa14e25bf423b4857079b88": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6982b8cc7540457ba8667b98c99ba48f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d654fb86ce3b4dd6ab2a6e23a9a34084", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_160c8720833d46e9ab60fcd053b33757", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6992cce613784e6ca9887924ae664a10": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4f6e16925d724624903eca6c09039cb5", + "placeholder": "​", + "style": "IPY_MODEL_9889d9f934984dd690ccd9c74bbad42c", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 359.60it/s]" + } + }, + "6995f5d5b5b64263a6bd9ba8d4d5450d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6997ea8069d54dcd870258953e4b4512": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "699e3522a4124bb8b4ab36001a56f1d3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "69acd86f5097427985a8d5704d686ff7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9cf70571404548f2bded23d9d31e3a32", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_43becb269857412b86bb2ffc94b2d7f3", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "69d29bc47eec49519ee8bebeb354f107": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "69d6a8f2dcf246d68b701a220b04bec3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "69d97580d58b412f8347b98abf9b5668": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "69f4df7d11fa44e5a1cf81dd10c2c0d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_26f0d5681d894dca92be016732f64449", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_93d0f1cbe6c4441d91d6d8e132013ef4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "69f5c7733d09487ca16850f87974e2de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6a17690483974d05b815651993a8c64a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6a1b5b84037e43d69f0479115927bf34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6a1ff27103f441398309903c7225390e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6a310cfeb17b4014bce21c95e41713d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_da2d1c33a6184e3ebea09414056578cb", + "placeholder": "​", + "style": "IPY_MODEL_3a62a9bdcdf142ec8f19f8bf211af765", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6a416d37fff94d9f9bb88734cb0f16f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a69d304e99b46ddb74b089ed6de41c4", + "placeholder": "​", + "style": "IPY_MODEL_6086e513dd0f4263ab7624dfae5c8852", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6a5bca00b3fa44b5a9053f1b83ed1ddc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6a5ec5cc83f4429e994b385c294eb8f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6a6d8a4c1df94fb2a922551bc7a75ec0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6a74ce72d5b64b3d907dff2d4ad033c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6aa3fd1d10f244b0afe55c65678ded83": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6abe49839fc54f898227ed77c93e993d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5c625cc48015484b865dca3539bb729d", + "placeholder": "​", + "style": "IPY_MODEL_0228d530cff34442a86132b89e5b0f50", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.18it/s]" + } + }, + "6ac25eccef6c496299b44ef22800844c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f531af4a10874126aba9e8fe897c0878", + "placeholder": "​", + "style": "IPY_MODEL_91dc1ba662184287b66e46dae936f1b9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6ac7061e9d29460395ba804975c5be71": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d5bdc04bb8bd4bcc9641ee7aca5599a1", + "placeholder": "​", + "style": "IPY_MODEL_371095e9b4264eebbf481cf0ee14f800", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6adef7a5af9b48dba84684b58c4c3772": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6aebfed07c2e46cfa293145c0b1d8ed2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6aee9816d78c4b888de15ec834b39f61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6af5350af02242db95399e3f1ac0e805": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_37c5f92c1f3249d8b40f6a821c7f8a90", + "placeholder": "​", + "style": "IPY_MODEL_1f3a56b9514d4c3a9ecd5388c9bc5273", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 486.14it/s]" + } + }, + "6afd307537b741609ae63efec74579ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6b02933978cb4b3589fedde08ae1b520": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_77866f8c811c44028994c105e189b2ff", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_18b03eaf95e24b9c8596940881e02342", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "6b030a8b77ae420fa03f4109f0093692": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6b1b54c196454e048c278ea86d11f330": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6b2202b33f7548fbb6b8ab31f327d545": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6b229e2b97e341cda6086d41b669e0b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6b2f2765ad3443de976fe1c8ea6fbc99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6b2f40b37ddf44b183883b26383c5ea8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6b32451c766f493099cf87076747b3e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6b37722b0da34baeaefe56daae4187b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6b40d62d572d4d66be8e14e69c26fd01": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6b489374390d46c8bea4b2f83f489f1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ae114e5e1c304cdb85ec63adc0072d3e", + "IPY_MODEL_f5bc32fb9e354f43a4ee697b388ef262", + "IPY_MODEL_dc0d6fa4893a4238ba6ab0cabeda4a7b" + ], + "layout": "IPY_MODEL_6a5ec5cc83f4429e994b385c294eb8f1", + "tabbable": null, + "tooltip": null + } + }, + "6b4efebd356b41fc90765e74e1fd597b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_57c48172f6524b1e8e6b9744b04f079e", + "placeholder": "​", + "style": "IPY_MODEL_72c0a11c4e4d48839569454a6e484d3c", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 784.53it/s]" + } + }, + "6b6969fd1dac4e1f8d4b5f2d89de2ed5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6b7201de17db4566abe69b7fdda5944e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6b92553e893a4997aa939ccc033de154": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6b92ee1b2d09494d9c8f9f9e4f3be246": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5f3aca025c85473588dba4bc8906667f", + "placeholder": "​", + "style": "IPY_MODEL_99d0f16a110a4b4d88382787da4a72e7", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 360.40it/s]" + } + }, + "6bbc36d3790e48e6b22a3ddf49cd5b9f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6c01327034f34540830e0810fc97d553": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_487a4fca468b4158bf19ae125985c3bb", + "IPY_MODEL_697496dd8af54eefba6b74a119627c02", + "IPY_MODEL_14f3e15952fc44209d11a8e45a248cfc" + ], + "layout": "IPY_MODEL_8aa1ced402a94a9f85502d5d082d0335", + "tabbable": null, + "tooltip": null + } + }, + "6c054433fb2443e1b0a0bbb7da2cda75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6c061254829740eb9258c746e87acf95": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6c08d29ef66c493aaaa0c581eb502bfb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9919e6c1ce714daebbbf8c7ca44987ec", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_db24d21fb33f421a995a758854f1c58b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6c0d3fcf89244a209928dc453b94749d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6c137eb5bc8b488681a61feeb8361ac9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6c1a9365c34d45a0a5207b355e67a50c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6c33bba2e5aa4dc6bf5a6e87fa6ee44a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6547787dfb5d43bf90256b2919813fef", + "placeholder": "​", + "style": "IPY_MODEL_8ee77fcdabf748509f22ed3da08f9b32", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1037.34it/s]" + } + }, + "6c3a525ccaa0498daeeb53be3231434d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6c3d849676c942b3ac3a2dca19180276": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6c503e21390e49399c27f71265155a82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e48a2b8562034167a30bfbc3960b516f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_26377cbcc0064477a9db224efb7c272d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6c534749c61546119485e81bc9f60a74": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6c69d1606f5e43d399996acdd4b275fe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ef45c30b3875436da9db5a367363b86f", + "IPY_MODEL_ec635a920aca4b1f89848eaee9a1642d", + "IPY_MODEL_63dc3674232e44bdaef5341780bf937f" + ], + "layout": "IPY_MODEL_2431158ea6c9439c8d39bbaa2ba31ed5", + "tabbable": null, + "tooltip": null + } + }, + "6c7cb5d40a664bc781daebe607d406a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6c921ede26254f9db1423264ed871e9b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6c95b685831d4057b6281304f47016d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c730ebc0f94349f5a677807ab8be6b81", + "placeholder": "​", + "style": "IPY_MODEL_05e622ca2aab4d1893523554b067bba4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6ca6b428051d487dbf82c4a0b7f2fec1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6cb63ff1bf014092922ca86474f9c929": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6cc156f0ca724500b25ebd9e8f9e11df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0c54618e5405413a91c1ab3a22a9eb7c", + "IPY_MODEL_0ae76a3225e44f07b03f260fd88e02f0", + "IPY_MODEL_39131103ec0a4fa7b1ed665fde5dedec" + ], + "layout": "IPY_MODEL_8a823c8dec724b068c8ec7530ff9d3a9", + "tabbable": null, + "tooltip": null + } + }, + "6cc55ea9b10e4127a85ac38fb63e7188": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6cf4b6f2bec645ab81c995d82f7cca8a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6cf8434645124eab86e79bbb7c73947a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6cf90a1d7a244e82af80393c967aa8ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1eef9df671e94b67890ede5030438b50", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5482e7075b1a4707bd2b51690316cdb1", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "6cfbda3fc4564ca6a8e678dbad152a7c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6d0a18c9b3c347f78a768b530cc9679d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_18de34ab71a542a2ae4b12b4230295a5", + "placeholder": "​", + "style": "IPY_MODEL_1783da7ef1f84feba8051346dc4f8311", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 514.18it/s]" + } + }, + "6d1c3af41e1c4f70929d5c203f58df33": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6d2f7717829e41f7b2bf0842e89948fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cdc58c0264fd456ba55cb14851f9e9ea", + "placeholder": "​", + "style": "IPY_MODEL_0f6bbf84bd484d758e6d758be0c562d5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6d35724953514371bf18fb47cbba73cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6d3dd1f4233a4e779585e1be6aee8943": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5754ff6113554b50bc53cc63181cc669", + "IPY_MODEL_6fc4496ecdf24c02813a2ae1173729f9", + "IPY_MODEL_97fa34c08ef6463cbfca6f64de9c685f" + ], + "layout": "IPY_MODEL_50286ea23f89470685ff960585263374", + "tabbable": null, + "tooltip": null + } + }, + "6d5b500d25ae42529a157dd37dd8625b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6d60a679a2b64c0a9046ade92948d2b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f3535ccd2c7473da4be43f5d766cd0d", + "placeholder": "​", + "style": "IPY_MODEL_716d634e43b44cdcabeca2c0d7dc0443", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 661.13it/s]" + } + }, + "6d7220fdfa9a4984baf2c42352feb977": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6d8115c6a7924e39a14534d25840f6ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d8e185d04396487c9ea543c7050238a1", + "placeholder": "​", + "style": "IPY_MODEL_f4db1556d569446f9d3b3c029676f648", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 343.61it/s]" + } + }, + "6d89fc9d347841139c61b6c9f07be63a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6d91b5e799c448e08b04911e4d5359b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6da47df685224f99bc258ccf383e171b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6da6364feb2d470587cb46285b6a6e8e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6da63af3c9794ddb90f8e4a533a915cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5ec24e628daa478da28c45d569bf9694", + "placeholder": "​", + "style": "IPY_MODEL_13f09f8d0e334fd6870adbb414a39de4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6dc08f6ce60746de8e06c573620a67d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_740e431467694c1f8fe2b791b2adfe30", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_aed3bc5e38a244c5af7ef311911a4f22", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "6dcccf7c6b0940b9b700a8be324a27d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6ddf289a72c243ffb3a1672bac0d5c72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4ccfd2f958743aab5b269a86e4b83cd", + "placeholder": "​", + "style": "IPY_MODEL_03d934f5b9314a85aafbe01d315c0437", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6de9074e60d645f3828bb4c95cf5302a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bdf8af60adc64cbba4f526e7405d7e6c", + "IPY_MODEL_83cb838e1f1e42d9bf5fdade58663f12", + "IPY_MODEL_78cf327af6bb42589b36297bf8727e2e" + ], + "layout": "IPY_MODEL_d7b68559e11f41069a6446cdb8f1e12b", + "tabbable": null, + "tooltip": null + } + }, + "6df2fb0e349e408686ebe5e0706e1a95": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6b2f40b37ddf44b183883b26383c5ea8", + "placeholder": "​", + "style": "IPY_MODEL_2e2c87bae2d7414b9339c25991bba2be", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 662.33it/s]" + } + }, + "6dfed084d8d84a089fbbd8341e1029f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e1570459f0747e4985a28944a4f3c76": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6e287ef277f141c9a8e2516ca0228c18": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6513eec4f7e74d28becdedbf1423f0a8", + "placeholder": "​", + "style": "IPY_MODEL_743ebcda145a41e4b512b3317d37907f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6e3e6321d37442cdbd40ed2d1baafde0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6e404ac3b2ae4a98b97e1029acf9efc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_374757980efe4d4cbd00b19a11787c97", + "IPY_MODEL_456feb3bc10e420080ad7815525634d9", + "IPY_MODEL_a2327cdc5b6541e5b5972ce6b3fc7878" + ], + "layout": "IPY_MODEL_e1f4a72c61de40cea5edbe6e7ea0293c", + "tabbable": null, + "tooltip": null + } + }, + "6e570fd0a8ce499b91573764386c271a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e595b86082f443d9aaede92f0e30e23": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e5fd6827945407eb336dd78d7644509": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6e66f4b051624fc2b61cd7295b4a9f6b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6e6f25f865354b57b12aa7159708affa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f221f2f8f9be4ebda2706a20356c5c0c", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f8bdc219aea843e68c3e8a79e67645ee", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "6e6f8542b0c64fcab15c850c1ce366f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b9400c470c854581a4b6decc383da8d6", + "placeholder": "​", + "style": "IPY_MODEL_daae88ca46d0462089a5606755909322", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 356.03it/s]" + } + }, + "6e77242e431e4be483ddd9f276695468": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6e7b3357f8374010af22c4196080f727": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e7f1599dc7d4684b9244a58b9f08e4e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e8456b9dd194ff7b18ac53c0b0791f2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6e8ceb6d8fe34d46ab0040dd20150533": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c48441cfcfec4730ba7ab50ad26a2819", + "placeholder": "​", + "style": "IPY_MODEL_172bb876b90e40618f2fd85213998180", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6ea0ff843e8b4a63b0a30572ba129594": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6ec66d48c6cb4c3d946961e005a8a479": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f38e21bda1f54934b68c8409d5668f44", + "IPY_MODEL_dcb5ac0251104facbbf62a89ba5b03ee", + "IPY_MODEL_407e331e90af461c94690a6a665ce5c8" + ], + "layout": "IPY_MODEL_3d38d0df87db414381bb87f460f3d714", + "tabbable": null, + "tooltip": null + } + }, + "6ec8c35f0bb24aa3ace714e6015837d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6eca0b80d4454bb2854eae3cdabbde64": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f949e67937ac4fb7ae820149597d4c6b", + "placeholder": "​", + "style": "IPY_MODEL_1ff910124749464b93b837b421c0628f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6ed77cc1e3a84044bedae3ada0a38531": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6ed78796737f4b5a89d881e16b922006": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6ee727dd312947e895644c7103d041b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f08bed65cb0242ea978a8e7c94f9d419", + "placeholder": "​", + "style": "IPY_MODEL_e7d116946e134bc5841826b31173f617", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "6eea5795ee4e4d02a2a3b09780080a2d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_05bd892a53ce454ebacd2d950481e05b", + "placeholder": "​", + "style": "IPY_MODEL_1ba8c5fa29df430d9ee961785ae5a304", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 224.53it/s]" + } + }, + "6efb64b9ae5d469998abedd4906d89ce": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6f0aa795144b4e61842a05cbe06ba5e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_860a6f1067c0435a93647b19ff2f7c80", + "placeholder": "​", + "style": "IPY_MODEL_df52e3dd74394fd0a843081c27efa124", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 532.34it/s]" + } + }, + "6f0d3ccae21e470f8fd11a41b0ce77b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_47d3217629fb4665ab39a6528db79ec3", + "placeholder": "​", + "style": "IPY_MODEL_9dca045f487f46b1bb3b0b249b5323a3", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 401.80it/s]" + } + }, + "6f27f368cb1246748e1332748fb7775c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "6f2abf1eab76481e8a4377992a9f5e4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f9506453a7a94a90819582425176d442", + "placeholder": "​", + "style": "IPY_MODEL_c8a352e5e7e042888219986d265acaca", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 358.18it/s]" + } + }, + "6f32b75149d14326bce1294c26dd2d55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6f34c24168bd45b2affd155b51b705e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_545a6052e4004f37a8e9c6eb6a37e5bb", + "IPY_MODEL_05e53170eb5f49599edc0b554c77d1b5", + "IPY_MODEL_d8d25689814646d9be833c87e7240003" + ], + "layout": "IPY_MODEL_c4cc49c244f14bacafc18bcd5f803b2c", + "tabbable": null, + "tooltip": null + } + }, + "6f4787b7ba3a43a0b3b37a5185b12e69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6f5b69fe6c2d4b6386879d4a592f4b81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6fbdd309684548e1b04024b6498b5f19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "6fc4496ecdf24c02813a2ae1173729f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a39dd1cfac8d4e0f9efd388db7753f77", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4fab51a062c943b19ef3824f9aabe3c7", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "6fd68a75051942f1831791f1a8f3ff5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d4468f4d108641aa95a3e2ab3fa53eab", + "placeholder": "​", + "style": "IPY_MODEL_9200f9d15f114007a713a0662d497a19", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 347.40it/s]" + } + }, + "6fedc0ad925e421ca10376a678473125": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_76da1257f679450e8de365796b99d0b7", + "placeholder": "​", + "style": "IPY_MODEL_9c2f0c66a10240858004ce738e40e952", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 525.28it/s]" + } + }, + "6ff1cdc4702d4be8858e4976aa6c3284": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b5dbceb931c84f6480f30c8b2f05b9a6", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9efb554f3f804a76aa8ae59c24948610", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "701751bc646647efba99547dcbf37700": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_14453db639fa4134969987d5f1e6c5de", + "placeholder": "​", + "style": "IPY_MODEL_cb15e94218f44832875c30354881839c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "701d650d739f4868bf7b7c4b5827a380": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "70221c4c6ce74f50bcae74a4c2bf216e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3335e76222184b02907cf9995045bb8f", + "placeholder": "​", + "style": "IPY_MODEL_21978e51b51146be8528ae90e5acf8ec", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "70419818d506407a8108f3bfc8a3550b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_732c82efe1f146348fcdaf93f1d3c4c6", + "placeholder": "​", + "style": "IPY_MODEL_4af815caa6874de589be91d48d7f63d5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7045a2336cec49bb9d07f6b0ca678b3f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7052ba98d4ea4bcb859035db58a88b88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4ed1510eff7d440ea37181312bc9715b", + "placeholder": "​", + "style": "IPY_MODEL_f3fbea2c82e24d26a8cbc5b1f91a9af1", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 338.22it/s]" + } + }, + "7059d67022b74cbe95efec10bbeb90a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "705e9608333240d0b9e0fcb3ce46b936": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8e92efe2b3254610ba87337709a86144", + "IPY_MODEL_cd39b58495284113934dd77acc14537c", + "IPY_MODEL_479abf738cd945459d06da8bd01948aa" + ], + "layout": "IPY_MODEL_2f776a5c0276493c83729157fc3f7acc", + "tabbable": null, + "tooltip": null + } + }, + "706dfbecb09448ff88dc778c27cb2cde": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "70730f1757744379be05e94b7a50ea08": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7085f18b311a444dad809a11cbb292cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "708ad11b789c4f92a2b764e33d8a67de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d3fe98beee354941bd3b1695ed636b9e", + "placeholder": "​", + "style": "IPY_MODEL_7a4bcde9375c4fa796c67ff631a0137c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "70aeb801b5f146b8bd95080744140da9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "70ee0f5ce7c640a3bb27a7e306504c42": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "70f8e0174d4446b38d65ffe47e971367": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "710efb8aace342a48ef6148920857667": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8f4634c6de11409cb6524b2688afcc24", + "IPY_MODEL_f431ed59a3e043eca8a801c5a25fede5", + "IPY_MODEL_7336d46d0bbe4449bd0527c76ea58f8b" + ], + "layout": "IPY_MODEL_48fdff26f49d43739269dee5a19845f9", + "tabbable": null, + "tooltip": null + } + }, + "710fa8b9de5841ef862869fab521d055": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca08ddbaca7b48fa8c9fbf89ccbac96a", + "placeholder": "​", + "style": "IPY_MODEL_cf99fd45780c486fa0b1040aec028b10", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "7130f188d1924868b718bcb91afba8cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e10c3b4a5c9a4212856e2d33bdc60f80", + "IPY_MODEL_3eaaa8a1a0b04ea1a4ed8b6b04a6d0ee", + "IPY_MODEL_62f3a293f6a243a3870f50fb2d8693e8" + ], + "layout": "IPY_MODEL_f7c2cfc0556b4172818b1385ebe5e148", + "tabbable": null, + "tooltip": null + } + }, + "713357c21df1458388a4347baee1febe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "71343eb23ad943ba8f6f6422de1579f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "713ccd7e3bc648b9bdc038a92701acf3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7143979a348d4559ab518a9a5db23591": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "714b6c4659164787a4f114dabaaebd0a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "714fd8131d8b440a8d9678b8dc6fa20b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "71624769725d4449a0dac16e7eb5e7c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "71625d5440ce45e09697ed48d1144f4b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7164982cafcd4f37a525d71d57fe38f0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "716d634e43b44cdcabeca2c0d7dc0443": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7175e0ecb4e04b048919659c35173f03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7178ef193df24448aaa3981e3228ebe8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "71821fa5791f46a5b3df061cc662a5f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "71b93136938343ebb51ba8a9d0580332": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "71be82ebaada400f9b600bef79b57099": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "71c37618507c4da79ccc6dfcc9eb1066": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2db862c4dbe24e90a80ec6f0def490c1", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1f66dc7d41134ba0b3f4e12036ef70d2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "71c53fd5913a46ac82ca0aea0d28ed96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4d0d1f9f30a48468c5082859ad6f476", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e10b0f8931c24e1ebf8f8e2500c5c98f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "71cd2b4f1708473b9d10450c03971f0f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7203e9e237d340d7b1f04c129c5296ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3f743e04a7984eadbe8c150c15418465", + "placeholder": "​", + "style": "IPY_MODEL_22a2a4f8e0f14f6b81c9f91df9146e7b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "72140bc5d59d4224a9b3a1acd0dd8fa5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "72309e078e194f9199d470c816438196": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "724048b0650f469a838513f1c615d7a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4f25611ae5c54c528de39b470b879e75", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0f04bb0d4c4b4cdfb04eb2df10c959cd", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "726258b83f834e4aafbc45b39d54d837": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5061d692605f4ec98f10288698f603cb", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3e32bd3ac3364152bc3bf9976befc8f7", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "7272314fd93f42a08b50f4fcd4d3cdd6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7285e07caece474cbdccd95bc9cba0e3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "728dbc66ed57469485cab565ef2f96e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "72b36373d1284236a21af76af3c4deb7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "72b7eee360f64b0fae6db637fcf50ffb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "72baa4d48cfe439684010549dbca4419": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8c0a3e9fde044e1e97238876eeb9e560", + "placeholder": "​", + "style": "IPY_MODEL_2b58068c4ebb4a9393ad15c441b2c3a4", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.12it/s]" + } + }, + "72c0a11c4e4d48839569454a6e484d3c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "72c6bb36e58d4b77a5794e398fddfc03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_05d858db917f4fa3b3b3e59bf9a4800f", + "placeholder": "​", + "style": "IPY_MODEL_57bc0b49674f4ca99999dcbce173d320", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 188.97it/s]" + } + }, + "72e45ead177f483c894eb678c1efce80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d9d3837a6d054e56bcff94e58b11656c", + "placeholder": "​", + "style": "IPY_MODEL_b729c23625d8410784291d47f8f58a35", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.94it/s]" + } + }, + "72fa41a873654201bbc2bbb922da9bc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0205195bbcab4894bd6690fc0870d1ab", + "IPY_MODEL_1c8c828fa20646dea4082175935a5361", + "IPY_MODEL_c35ecc2f0a6e4c138b78b81c1ea7d8c2" + ], + "layout": "IPY_MODEL_28f4cb275ca34b7cac34a4c54686697d", + "tabbable": null, + "tooltip": null + } + }, + "730b14edbc94407a958598a93a952e75": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "731353ba2161487aa00275caadfad2e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e87d9dc92f8473b8ad96e1fe05f4cdd", + "placeholder": "​", + "style": "IPY_MODEL_10bc5b936e404960badada559a510b26", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 902.26it/s]" + } + }, + "73166f3a66a44ef7bff476d4c466535a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7317343963b94f878864547c6fc16c95": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe1b8090d59441e5ba6ccd4932629df8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a3c3bad58d8b4649b859300c2ea1e473", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "73202ecd14224720abcf3395b2e4f3f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_62abf2ba4b5447b7a21f53b9a8c67b33", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9cfd3eb40a3c46dd9d4d3a438a3e4d5a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7323a506e3bd4357b583736506ee808a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7323c52dd8104e1a93b443dd1b118c76": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7326cfebee474a9894244abcc49f62d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dfc951d0ab534126a581022f09a1ff48", + "placeholder": "​", + "style": "IPY_MODEL_190186205dae47dcb64f8fedcbbcf6eb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7327843c1e5149aaab1d2c48a44fa07d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "732c82efe1f146348fcdaf93f1d3c4c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7336d46d0bbe4449bd0527c76ea58f8b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4d2757da4f05441ca28dfeaa0be23bf5", + "placeholder": "​", + "style": "IPY_MODEL_f4db5e3d8b76407da686e8b087947d0d", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 460.03it/s]" + } + }, + "7337c8f1883345af9d92fa0c4dafc3c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0e82a6fde7d5496a935687d978af8f4d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b4354ec06ca84d0f8acf53685241fc69", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7338f8e819b947759c71d72ddb25c994": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "733bcce394364359a4f1377471a556f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d473f95b6984404f9254ed08ff5e7535", + "IPY_MODEL_cc3487820aca472ba38bc316bc610242", + "IPY_MODEL_9655281351bb4362ad12d1cf3bf9ba09" + ], + "layout": "IPY_MODEL_c04f57037d4f4b289ea581d9468add17", + "tabbable": null, + "tooltip": null + } + }, + "7363a0d749e648068e4292a9ef5be68d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7045a2336cec49bb9d07f6b0ca678b3f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a6cc0113d1d5449d825723c9f8bf16c2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7368a331021c44d9b285ab4ceb653055": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e9e7dff05cc44e80984e56a795486e6e", + "placeholder": "​", + "style": "IPY_MODEL_a98fc2e64cd64e9f970bd4d8954580cb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "73725992efe743248130b95b8fca65a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f13377de35f14dd588de8c7de362f3cb", + "placeholder": "​", + "style": "IPY_MODEL_0d812fb1f87143eb9543113ac80cffa0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.04it/s]" + } + }, + "7395f1c99f624a35adc15484882519c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "73a20d7c6c5e449bb23ca46b626c0cf9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bb67edd383bf45939d3f16e3f533acd9", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_aef86b8e576340b7b49848b7ca059ea3", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "73aab1d17e3a4b5da42e95943cc9db9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "73ab40d13fd54b3eb2ced8e08444f82a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "73b5fd1007aa4b0cb7bb7d08d3c17aad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "73b6f0d310e1429f9debe44217a734f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d3043c8034904a4faccadfaa9bc2f06c", + "placeholder": "​", + "style": "IPY_MODEL_1f5315a07853423880805359520dc4d3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "73bab9b1b8814dd29b5ade721b73be7e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "73ca9166c963432d962d3bb5bd9b4739": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "73d414f8bea243e186942c9de3b8c049": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "73db6407dd9748db8f7901303376f11d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "740519e5cf09418fb849097fed4d1e8c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7406f9ce1fb248808066d8f08616d8ae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a70f70c509d24819a9a7f7d415034d9a", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fefc6715443b40739d6a0b07abd5a995", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "740d69a62cef481eae149694f26e2d7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5df1558285c94d748a32e91e2a642caf", + "IPY_MODEL_f2cb605132a546bb86bfc62e8fe490df", + "IPY_MODEL_f59da39977ce48ae933dc5123464e440" + ], + "layout": "IPY_MODEL_e771006455024cf5ab551731c0960747", + "tabbable": null, + "tooltip": null + } + }, + "740e431467694c1f8fe2b791b2adfe30": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "741fbb3b9bb34571acfbe63d2cfc83b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9d92518546a942ddb9839b073146f570", + "IPY_MODEL_a71cf5c71bc744069977a7c0c055fc8a", + "IPY_MODEL_6129aaae66b64566b5955f8ecc11c973" + ], + "layout": "IPY_MODEL_8b15973898ce425d88a4e9e87d5af6a1", + "tabbable": null, + "tooltip": null + } + }, + "742d364beea84bf3980b81906686944c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1b996fea0f4e428e880e7ff7b74acf64", + "placeholder": "​", + "style": "IPY_MODEL_c25ff2659805402b9fc1f58232ec579e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "742eca87092344a6a8073daeb45b78e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_52404f74eca34f35a2c97f027b858d09", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_277a6e2abbab49e180fdd843da7e30cf", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "7430ffa117e649c0b7fd1e9953173fc2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "743157ee3ed14bd195a515cffdaf8841": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7431a5f0c4a04a74991d9bd0016b4088": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "74320e022ef547c2af2d4eaf9acfb8fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4eb8e13ddc89432abdc734b068901d2e", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b93a267e993049db9b0eb876f464bd9c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "743ebcda145a41e4b512b3317d37907f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "744504bd2dfe4135a0759d079d67de51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "74754a163a0248289e40025c911edda2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5d29999fd2c941f890de80d5b8272755", + "IPY_MODEL_8fb2498ce21a448da4bd24e0250690a8", + "IPY_MODEL_3a97fc023b4c488c82e7aecac0685552" + ], + "layout": "IPY_MODEL_bae6c11c85eb402dabc798a9b9551152", + "tabbable": null, + "tooltip": null + } + }, + "7478707910e34754b4a5194f027ebcbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7b4e81157d394744bcf4c48a6199886d", + "placeholder": "​", + "style": "IPY_MODEL_0459ae97166346329caa43805d2b1176", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 388.73it/s]" + } + }, + "747bb358c6ab4c32bed478c1740f95ae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7490ed2c47814d598bc0a4d6ea37e2e9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "74932d29e6ea42b3989a0c13d0cba15a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7495775d32f54f34918ff6a5abf805ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7496bbc19d554ecd8c2b16f3c22cd424": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7497436f314e4d7cb4ccb219705e3677": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "74bcb5d289014865b4e9e20ed87f5ae9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eaa24e513149432099650048dcba8716", + "placeholder": "​", + "style": "IPY_MODEL_838489d19d9f4509b9ea1b1bb3bdbce4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "74c3c3d036394b729679bb50be07979f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_50da508805ff4d0883777d02a7d7c049", + "IPY_MODEL_1b821ead6aaf462a84771c26373d10be", + "IPY_MODEL_25f7791d8970442dbefc813fa925373d" + ], + "layout": "IPY_MODEL_490bbf47a32748a3878d59105474938f", + "tabbable": null, + "tooltip": null + } + }, + "74e1d6b8ff384f87b8d1d029ba041ada": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6c054433fb2443e1b0a0bbb7da2cda75", + "placeholder": "​", + "style": "IPY_MODEL_ea89cca4b822402ca5edc78f72ab9f51", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 536.42it/s]" + } + }, + "74e4e89c020f4136a320954bcb636acb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "74e7acc6a783455f9e38e4c399a1fa16": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "74f80b2748054370947e20aef204d640": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c8e965cddf2049e2bd6ea9bfec4acd73", + "IPY_MODEL_561a4bc817e64afaa7125b30a236f6db", + "IPY_MODEL_8afe9622a7bf4d3cb9895171d2a5661e" + ], + "layout": "IPY_MODEL_5e18d58382034b17ae7df0b62c4d6fba", + "tabbable": null, + "tooltip": null + } + }, + "74f9475936474efc877f014f67d9b710": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "750665de7bcd4f228f504b7afc1944da": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "751708e6e05b4de2a47308f302b08811": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "753b5c5b53b1418cb40772b88ac5d0d3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_07183c80eebd415fad79999117744385", + "placeholder": "​", + "style": "IPY_MODEL_7776b951808b43c2a0dfd64b42718e8f", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 533.43it/s]" + } + }, + "753cdb9cc1864b34a050a7fb0db7bfe7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfc9f33a0167405daeab71fb27d60796", + "placeholder": "​", + "style": "IPY_MODEL_ba9dbf41d89844b9aa45b848bfcfccaf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "753f844ee1b34ef18c3599ffd5badc8c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "75429cbd76bf4f2e9485d732c225b90e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7548c68472a74ce789029cc0256d5ebd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7555f84825ef4fecb6f48abf90e3b308": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23abd2ddca094374a056b0cc3626da51", + "placeholder": "​", + "style": "IPY_MODEL_cba81afd311a4ec19cbbf9731d475dc1", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 69.85it/s]" + } + }, + "7573d869f1624ee5bedca0df253c3258": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_51941885c32f4958876ccd8a1f26c7b4", + "IPY_MODEL_a3f11c6fc79343c684693ed2eefb7ad7", + "IPY_MODEL_f34cf63ad6c0496ab72abcb837e17f90" + ], + "layout": "IPY_MODEL_892cc708f36c4ee68bedd987fc2cc980", + "tabbable": null, + "tooltip": null + } + }, + "75874e9cac2a4ac7bd5fb04be99cfce6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "758f258102814532b42dda1f53b094a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f1c2d21b738f4eba98be3821b4b2f62d", + "IPY_MODEL_09673204104f4b0ba1866fb13098f9c6", + "IPY_MODEL_6992cce613784e6ca9887924ae664a10" + ], + "layout": "IPY_MODEL_0669997e19f5451886e03b41412cb43d", + "tabbable": null, + "tooltip": null + } + }, + "75975b87ab87454c94775fef59f3da95": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "75aa089cb2a2427992f0907060a65b0d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_48f07269431a437da526b05800dc1daf", + "placeholder": "​", + "style": "IPY_MODEL_0d2db4144ec943e1a7a4cf8f7a798647", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "75ad0f0841d94974b70c77918b8b3eb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_82ef8a05eb8247358edf38a8a6efc880", + "placeholder": "​", + "style": "IPY_MODEL_2824d0945d3244898350f3087ad2f5ea", + "tabbable": null, + "tooltip": null, + "value": "Epoch 29: 100%" + } + }, + "75b066e005824876afa02efc4391a50f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "75b3376f0ed441fa9ccc89f3c3b95168": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1dc05a281f004ce99a1e441bb17ab745", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_36b261c6fbf0406684f42348c04fff27", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "75b7acebafe34804b068d68c6b72f6ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "75c4704cee0f4c6a8ecad3a40b8574c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9cf52979771942b5aaf9124d8af894b8", + "placeholder": "​", + "style": "IPY_MODEL_7495775d32f54f34918ff6a5abf805ed", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "75da25564d624f4691112a4acf08a1d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "75e4bb5251e7426c88c747055baaec88": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "75f26bea217748b1b0bfb0b97b06be25": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6e287ef277f141c9a8e2516ca0228c18", + "IPY_MODEL_3791ee1ab07141f5912286c8970b42c5", + "IPY_MODEL_bdd954b66a0245a0ad05f5752b7fb353" + ], + "layout": "IPY_MODEL_f765c9ead24047628cdcc221ce773d66", + "tabbable": null, + "tooltip": null + } + }, + "75fc0647d3db42f08a69184906e77645": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "761399a82e9844498f693190a6b6b794": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "761823d088b54402a0bc1674849fba24": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7620dbe35985495cb244cc611eb72392": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "76233c891f764212ae0338e71a446bdd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "762b5d1dd3e44e4185ffe25368127f59": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "763ea0250ad74883ba96dd4d828ae9e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c56806e745024bc291511d5ce771ce28", + "placeholder": "​", + "style": "IPY_MODEL_7c1185cfd6a54b3599f4483e87f77ff1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "766015f0cfeb49dd8c1fb295069430ac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "766750cdcd904c979991877d198326a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7690e9fd24d04adebaf64afaf9add23b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7696efd1cd264710a9313de7a2f685e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_313143ee7f844943a1da691f40ca5414", + "placeholder": "​", + "style": "IPY_MODEL_0a64b3d12b4d4dc3ae53b73f8e9907d7", + "tabbable": null, + "tooltip": null, + "value": " 188/188 [00:01<00:00, 183.95it/s, v_num=58]" + } + }, + "769c3f73167a4b92bc722528fa448e8e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "76a692be26214c24b591b0ab36ad5d92": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "76acae4130b7469091cfb29b9030dc92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac0c6645f91f45e3b11eb390cbbbb1e7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_baf1c42432874c9fa4493f79c534ce88", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "76b33e9bef414293bb704b7740bc25eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "76b5d6645ca7415ca6316ac3ace9fb51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "76b886e121b645b5875a1235f2b46fd3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_66a469df6ebc4e87b4156f48d840f18e", + "placeholder": "​", + "style": "IPY_MODEL_e883a21f27d3436b86f94ff63d9456ff", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "76bff136ef1547ce9f6f228326dbba5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "76ce0897c79f48febf172ee4e2ced078": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "76cf13fdea3f40a28a863d5233731dc0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "76cffc769e5345fd958582381593ea61": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_da6401a979df4482baf497531cd48b73", + "placeholder": "​", + "style": "IPY_MODEL_1232f30e41a041d38fe7f3e2e7e42dda", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "76da1257f679450e8de365796b99d0b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "76f06fc7d8284333b0038d0ccc0fc5dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "76fc8abb3a3e4855811ece183935a10e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7730a09aadc44de89d22a36b05fc267f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "77450f9684cd42ac9ebc992dd86590b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_eee114d760a44ce89e70f6cbcfcb2da4", + "IPY_MODEL_3748dbd8aaa94cac873270dae2c1608b", + "IPY_MODEL_451f8d59a673464e9bbb5d8115a777c6" + ], + "layout": "IPY_MODEL_0280e72e259341998480052010d59431", + "tabbable": null, + "tooltip": null + } + }, + "7745c9d26c6e41b78b1a2efb916d78e0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7753a64173364147a625580319b7d789": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "77566b22eb944317a19b6d2a59e8f37f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "775a23cdfaaa41f1ba3828dbc192cb83": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7768322b7c13455a848a232da1b002ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "776e0ceb423947fab047fa0a36f1a649": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_579fdd28e99b4c92bcd826cf1b5b6bd5", + "IPY_MODEL_21990d85faea42a3a62fe366b96221dc", + "IPY_MODEL_c904482dbb3c446abc99f97815ced080" + ], + "layout": "IPY_MODEL_b9b23322e7b14ab8b5758108ac47bb91", + "tabbable": null, + "tooltip": null + } + }, + "7775cab33c1b47b8a67ab4ad42f34f84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_56f8d3a498874ee8993407e28a847f26", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_665903de121c48caab28aa6b74a33d17", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7776b951808b43c2a0dfd64b42718e8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "777d9b9e56bd4172b5be189e9a481cd0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4d3ae50641754c1ba07e626cc7471aa5", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b4c03b67ac094ba5bda2410a4a5eec09", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "777feac25bc24e619ecbc60c835c124a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f0131c7824984245b47d614becf42c54", + "IPY_MODEL_da5338ac20294f6d82ca2c74b0fb3fcc", + "IPY_MODEL_29ae859fb331401da423ad6479c3bcea" + ], + "layout": "IPY_MODEL_1b4149bdf6844a25809093ff9d127249", + "tabbable": null, + "tooltip": null + } + }, + "7782347a868a4cb09ad084e0593fc921": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_06f9009e2280472fbccc718a20e930ea", + "IPY_MODEL_ad1191c04f894e8b96965ebd9d88de99", + "IPY_MODEL_cd243232cba542cfa58c150d77759755" + ], + "layout": "IPY_MODEL_eff2252c4aa54fb8b71abd1760b50884", + "tabbable": null, + "tooltip": null + } + }, + "77866f8c811c44028994c105e189b2ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "779afbd60d2845208770291018e38b06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9049f474f06c40d08f09bab4b0619186", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1a014869a5ea4b7fad4295fb2774276f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "77a57c6ec8b44764b6e55a581a7c2685": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5b107b3241f74960a64adb61e453340b", + "placeholder": "​", + "style": "IPY_MODEL_c60ac6c5cfea4d7f88acf62b2fb9be87", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 356.69it/s]" + } + }, + "77a71d92be6345c6bec50b24fe4785a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4d0fbf746bb248338c0c0b850731eac9", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1aa2b4c7f5f0419abd9eb0a7ab0d314c", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "77cd0969e220409c91c57a0b87512ae0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7e7851db8f2c4a7eb8b2b55728d95488", + "placeholder": "​", + "style": "IPY_MODEL_2fe6fec4b48d45e796620eaf206b2189", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 893.86it/s]" + } + }, + "77d99b9a82704f7b93cc6cf687dca43b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "77de1a41dac14d039c8c1d02ae02f3db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_266637066e2f4ce498cb1a11bb9fd8e5", + "IPY_MODEL_99f70dea3fb34df086335f0557911306", + "IPY_MODEL_b0d1ac50b619465f892254c3d2485342" + ], + "layout": "IPY_MODEL_f36e77b96b944d38a552f04994cba0aa", + "tabbable": null, + "tooltip": null + } + }, + "77e01c6858004bf2833be58be1e3026d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "77e091e51d644bd7a898ae5b249be6aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "77e4af6005e44295a52118cd96c1d993": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "77f66b2d01864d219ac5412129098de7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "77fa5be697dc427fada83a686b4e696b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7800264333384749813931fbde9a454a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7800f2b6b0234d4cb2a42046d2976d1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4223594427f474ca23652dc2a8b19bb", + "placeholder": "​", + "style": "IPY_MODEL_3224cefc90f5402a9d802d305da9c5db", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7806fa8a24d843578b6306884687251d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3ac366a803af4e148c271c50bdd1ea1e", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_20703e2e57b140c7b7ee3bec5d5fec90", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "780706ab61214b40b9337e1c058dd951": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7807c946f32340759e9ff4e8e4e9cdb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "780d06762691400c8c7e80c7496fc6e5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "78123190b7e2489f89d7e56af80f09ca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_827f573d9fc0405f915d64b5cd342845", + "IPY_MODEL_35f92611dfce417b8655a0d95b408c70", + "IPY_MODEL_580df86c617a45b9be706a63bece2704" + ], + "layout": "IPY_MODEL_2d016392f8af4ef391b97cf23303fd66", + "tabbable": null, + "tooltip": null + } + }, + "781a1d7dd346434cb361755233d1c625": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_11eabcc6699d4e3b997ff97e4f3bce68", + "IPY_MODEL_35a6e71f90194004b668ff7b6c5b0ab1", + "IPY_MODEL_2552574b18854d95ab7476f576981261" + ], + "layout": "IPY_MODEL_54a7ff315dfc4a56a7606dc7c7fe5137", + "tabbable": null, + "tooltip": null + } + }, + "78342b2dee114c149b6b96df691409c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "783d9f20ee234e10a8661c821fe85a58": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7842a3500a7946409a683a80a88baed7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "784570d524454a43b58bb300d5f9f7a5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "784f3a2218084b8b8158999d881a4817": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "786254f968ee4746884d618efbd7cca8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23398c7735f64f35a1e44898d535676d", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_714fd8131d8b440a8d9678b8dc6fa20b", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "78635497e9c0419ab0634fa0d4a97d54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d9ee38b378604859a7b268c1c63cdbcf", + "placeholder": "​", + "style": "IPY_MODEL_ed64e7b8ed984e60949b2c9675d1a6b7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7875d07614a44573a176a0f743f1fcd0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_03ef513e556047e7b97ffed57050b52e", + "IPY_MODEL_ee25e92f66ee437193b5ddf7b2794c5b", + "IPY_MODEL_0e7e0a8ffd844489b486e43a450dcdb3" + ], + "layout": "IPY_MODEL_025a26c204e7480984c48d15c4b95125", + "tabbable": null, + "tooltip": null + } + }, + "7875f74595774158885d9fd85bb311ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "78969a5ef40c4ef7a3a5e5a4bcc55ecc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7896e0eee1334b64a5cf39b4ccfdb5e7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "78abae3ab19b47f088892354d75abf56": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "78c6ee1bcc304f9fb0ba3a0c00cba015": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "78cf327af6bb42589b36297bf8727e2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5ab624302eda433d9a6c535d0883d67e", + "placeholder": "​", + "style": "IPY_MODEL_4f8a6b6969c649808ad16a72844f12bb", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 347.12it/s]" + } + }, + "78dac77e87f24e1897fbca2c5a91962b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8f94d30d76624866824ad064967aa834", + "placeholder": "​", + "style": "IPY_MODEL_acaaad1de0f248c6841ac616a4296c19", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "78f9bddc78844e258946a10085a175f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7903279bea6e4818b3cf2ce2893f3018": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "791a95633fc5410abe63b02fd93609d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79203fac042a4e6db3602486c2492376": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7927ba8cbc514263bd7e2e4742af0329": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7928d2c72a404d32bb81670cc1a99d55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d56a90d5a91647c38fc453b8be85683c", + "placeholder": "​", + "style": "IPY_MODEL_09e213804b1241ed8ded621d4c197211", + "tabbable": null, + "tooltip": null, + "value": " 45/45 [00:00<00:00, 97.77it/s, v_num=14]" + } + }, + "792acdca0b59429984893e5b3420f1c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4ba7d5add10940ee83ff406193495386", + "placeholder": "​", + "style": "IPY_MODEL_5a1903b1e6c84cd4a3830578427287f3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "79352764e8bd466fa24931b98d0e30d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55d495f21c814545a2f008ef9d1d09f3", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fb824271c10c4b2f8d25c533dc7e941d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "793538526a7c4347ae69cbeca9107c3a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7945cc73d2384d149fc07fc53f83d699": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "795333e5d7b84fc6812fcf3dd6391bfa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cc426a8d02fe47aabc42bbcdead84827", + "IPY_MODEL_a315aea742b74494a9679ffdbe6867a5", + "IPY_MODEL_f75f44b7641443d8b35f3f82341c4e54" + ], + "layout": "IPY_MODEL_14da40498a8249dd96f868ffcdca2d4f", + "tabbable": null, + "tooltip": null + } + }, + "79539942f00e445c8b2402ed33fce6cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7962dbb2a9664c30a66c0ab5a035c072": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "796ddefdc85c4574a23d4c9bc97c0f22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f73a1d8aba44465bb0189a15f9c0c297", + "placeholder": "​", + "style": "IPY_MODEL_965cc244cd0d44c58b2cbe719c1b95e3", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 752.62it/s]" + } + }, + "798708740be24dc8b000b975287015b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79874de5b0b94f44a9989e9991d6c7d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "798fb86dd1b3494285bc9d4359881eca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7991a26897f74fc2a7dcf8f8eb5abd27": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79ab73695b6a4784aa08dc7f845297a6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "79aeb8bdcafe406da6c6f7b7b2d3361a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee7117dceeb04990a61c35b4683a51a8", + "placeholder": "​", + "style": "IPY_MODEL_c4d3605101f645ef9388caf44a2a2aa0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "79b6a28abb4a446db507f3f1a5b54e35": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23f37325acb8495790d17fd7ff99fdb1", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3fd706cdf3ee4469bc9e6943a228cbb5", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "79c2a527d9a64787af9f668b2f330111": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "79d4fcee5151413bab9fd31550bca9ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79db360c98a34391916b61b4db86c815": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79edc8084ed049ada20b44512f3de4f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "79ee1ce32c1a46bfbf3736d3b892d6fb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "79efb069dfd041d99133af2cf84df6a4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "79f33c3272b447d7ad689fc10400248d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "79f6509215a743558f0b094710452b4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "79facab3174e4171822ed68a140115c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5a0e8382f10f4ee4b3f8aca02dcfaf1f", + "placeholder": "​", + "style": "IPY_MODEL_09c3a1147fb24dc19c5059aed1fd443f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7a0d80d96f63496f8a93ad77a5a137e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7a12423597454716a573375be7583ec9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6dcccf7c6b0940b9b700a8be324a27d2", + "placeholder": "​", + "style": "IPY_MODEL_b17e76e6a52a4b609eac21dec16ab930", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 314.69it/s]" + } + }, + "7a239e6768cc4647a273d9fcdb82c402": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7a3ebdf36af44298afc2cb5e3908f1a4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7a4b6820418b41faa3d24c135b7fe5ca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_42a955a3ef344523b8cbd0614b74d150", + "IPY_MODEL_dd0a94c30a69405588076dabcbac92f1", + "IPY_MODEL_515e4bde89754a13ba32ad61064f1920" + ], + "layout": "IPY_MODEL_79efb069dfd041d99133af2cf84df6a4", + "tabbable": null, + "tooltip": null + } + }, + "7a4bcde9375c4fa796c67ff631a0137c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7a4c56c34e754b33844dc470116147e1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7a55727eea3b4830be91dd5f70dd74d9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7a585386006a4c878ea3130b20f64828": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7aa421102bc64389ac118a02c1c669c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7c44a728bdda4a558638297cd5a2b6fb", + "placeholder": "​", + "style": "IPY_MODEL_3b3b3d9318f84970b75b90d6b4e6cef0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 347.42it/s]" + } + }, + "7aa64f8361484f908dbb6bbbc18f08e6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7aca029ff1bd4a159fa095fe2a761a79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e671732038714edaafb5f496f0f37acb", + "IPY_MODEL_4d5ba868c52d48438e8d31fefb76b338", + "IPY_MODEL_a5cc28d7f6644102bce2d4ed5c5c5e37" + ], + "layout": "IPY_MODEL_20d60d508ff440eea4877515f1f3a8cc", + "tabbable": null, + "tooltip": null + } + }, + "7acef41c900d40bcaa0a215d9a5daece": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7ad231ef819943fea0f68783c6e0ed4d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_fb1a1a71d63f44a1a38f17711190dc8e", + "IPY_MODEL_a906d1b808dc4540b01d95b91b899478", + "IPY_MODEL_7c8a019926984aeeb55c391bebfb160c" + ], + "layout": "IPY_MODEL_12b65e066a0d429b9feedb9b7736bce9", + "tabbable": null, + "tooltip": null + } + }, + "7ad903bf5e314f69ab21d2b32331e0f7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7b04328164824529b61e61d5312d6275": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7b1b6269da4d41198f824ba9f53028ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7b3201d692db499ea8f548ac32642193": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dd201cda16b949e09bcd9594b899708c", + "placeholder": "​", + "style": "IPY_MODEL_92a2d743100b4e008b5399b8ac1a6d47", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7b4c390655294c95a31dae811f2b441d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55f996ae88e14ebe9e85f18189a83cb3", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_543c287aa5cb43bc98b292cf2ebbe57e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7b4dc5642d4245059c6636012d1c7796": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8557f84122ee4859b5120569be12d584", + "placeholder": "​", + "style": "IPY_MODEL_53660970f3614b9cb4b66e02cf61a6c7", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 381.97it/s]" + } + }, + "7b4dd56db7734252b132b1264d3280a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_27a1f22c7d674dc990a604e7c87c0de6", + "placeholder": "​", + "style": "IPY_MODEL_fc19ef74fabf451bbf3e5e28f5c4cb13", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7b4e81157d394744bcf4c48a6199886d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7b5a5c35c2db4c4fa9684b18919a40ce": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7b624c04baf348789b6feda22633b964": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_43b43627b16442308002e2266e8969d7", + "placeholder": "​", + "style": "IPY_MODEL_8b136a98f00f4d909f277476dfe9ab1c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 527.75it/s]" + } + }, + "7b6eee21efa94653b83a2179a15693d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7b71651228d0433b97b1e13cd8ddcb53": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b9a0579f06c542f5bf735056ed5aafd9", + "placeholder": "​", + "style": "IPY_MODEL_f01feea5db884e48bef172afc5d4f13c", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1028.77it/s]" + } + }, + "7b76756858714090a4195f0c937e5d07": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6a74ce72d5b64b3d907dff2d4ad033c5", + "placeholder": "​", + "style": "IPY_MODEL_efc4bb86a1f145d4900c3deae76eb440", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 297.77it/s]" + } + }, + "7b7a427029714a67a4a3dbbb1e8a2b06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7b87db80404d400bbf9f810ea0e2b230": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_643203adf9ea418abfe16ee71d12c7e7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_eb86a9596a744ac38d19fdb0e51f728b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7b9dfff0e15645c6995cdef8d3c48782": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7be538723b954d1ca6cfcb9553db50b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7bee78203ffa4f5b932f7ba7a8daa0ea": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7bfc4cbb191f48d99c2006d7e5b149c7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7c0cdefc947a4385b1448767b54ae8de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_50a44ef76f60487b8de5b3e6ced1fd23", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d2bb62b8056a4a7a9da5c3b54a097c9f", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "7c0e8600afc0480a8c56e25e476b5136": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_094629da086d427abcd184426016a230", + "placeholder": "​", + "style": "IPY_MODEL_8d8869a8d8364fb9b3d92a4b15c98bc2", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 197.20it/s]" + } + }, + "7c1020eedc514a28bb9e22e99bc449bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4f813ddc6c914b0c8e0e8b4e0e490632", + "placeholder": "​", + "style": "IPY_MODEL_fd5a1aa67500433ba58f05045eaf8248", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7c1185cfd6a54b3599f4483e87f77ff1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7c1ce82c29a644f68f5706783e08927a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4f4645b616c54694bd0756867e6a46a5", + "IPY_MODEL_80d23e41ff6043d68013418fde7f1ff0", + "IPY_MODEL_7928d2c72a404d32bb81670cc1a99d55" + ], + "layout": "IPY_MODEL_02a78bea925e460a95604d1c8d4aba51", + "tabbable": null, + "tooltip": null + } + }, + "7c265e3e36c94d0196236e5ef3aa587f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b8f001f2f17849828737a6394b4d106c", + "IPY_MODEL_fc7f82c58ea941f3807e1008add75f80", + "IPY_MODEL_18f224d1865c4538a4d059e7161f4934" + ], + "layout": "IPY_MODEL_150428aad7064182845f34ac99497c35", + "tabbable": null, + "tooltip": null + } + }, + "7c2c49de7df44192b0085998f4ba1162": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3bed602c288c43c6a02e2f46692f5754", + "IPY_MODEL_a186a3b43463441192777de830649b28", + "IPY_MODEL_63b3386c76e740b9852940d007352db3" + ], + "layout": "IPY_MODEL_3f1f3f493d834d0382bbccf614b0b40a", + "tabbable": null, + "tooltip": null + } + }, + "7c44a728bdda4a558638297cd5a2b6fb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7c53b0d9a2f4481697f5e2143a8c7579": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7c55d8ebce804f51bc924b445aff9f6f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7c646cd13d624925b9cf5d88694435ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7c660bd7fdf04aa8a07c17972ad64792": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c209bda2033f4d918816b786e231731f", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fd8fac6f3d0d4b5f8cff4aa0909c9127", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "7c68f2790a23436883f1bc3a3fbd8fb1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d6463a8fca51427db96fec246f5b745d", + "IPY_MODEL_0dc61718a07f4ea9817bcbadc946ecc3", + "IPY_MODEL_24d02e314b974b078ea3511227abcd32" + ], + "layout": "IPY_MODEL_a4fcf406a3cd45f5a88c5909c94ce76a", + "tabbable": null, + "tooltip": null + } + }, + "7c7a980c38e44862a20b8d370770e2df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_78635497e9c0419ab0634fa0d4a97d54", + "IPY_MODEL_8263086b536549a4a1f3f2f905a473c8", + "IPY_MODEL_f9e56dd1bb6040e68c8abe4da9157f7f" + ], + "layout": "IPY_MODEL_2cfe75df2f594fd598dee4738c338007", + "tabbable": null, + "tooltip": null + } + }, + "7c80dac6906e4422b2fe2682aeb1edb4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f56ed7a8d5ae4ee685ee5f2585501444", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_90e3a817094a477d989dd1a9d0e143e0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7c8a019926984aeeb55c391bebfb160c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_33825b8437d5442bbe179e37aff78d36", + "placeholder": "​", + "style": "IPY_MODEL_e4f69444492340aabfda6aed0265321c", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 222.16it/s]" + } + }, + "7ca72e4597c54bf2a9298bde1f1b47ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7cbcfee59b3846779699e51b6e3c1523": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7cda94b719804a4095c4baac643a7961": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_97d9ded5e4694208bf4e2f74d2e024fd", + "placeholder": "​", + "style": "IPY_MODEL_761399a82e9844498f693190a6b6b794", + "tabbable": null, + "tooltip": null, + "value": " 67/67 [00:00<00:00, 89.01it/s, v_num=60]" + } + }, + "7cdfa10727174451be575b992ff27e87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7cf4f2057e5042879ce8a786daebde0e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bbe02366fb5a4fd8937bfcbf3259f281", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2340598c563347a1b6f8c1f01355e8bb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7d284330815f4777ba0eeaed1e683456": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7d395c5566d740b5b86b9b59bd34deaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_235c64c806d641efa49d62f04040689a", + "IPY_MODEL_ce08dfcda79c46f79d1888f66ebafbf3", + "IPY_MODEL_637ac1072a304f6595c24edd401e117e" + ], + "layout": "IPY_MODEL_a7548242cbe240cca8a7f6487fb7da6e", + "tabbable": null, + "tooltip": null + } + }, + "7d460e7dfc0b460eb7281e622c20514f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7d60c1710a58415383234b14c171f2d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7d62a4338b824f6b8394669ed7057e1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7d6662871d6941bead411e19fb0e9c1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1675f109b56a4e5aa7feec66f01b04d9", + "placeholder": "​", + "style": "IPY_MODEL_1a0c635e4099401d9e3e42dbb49b9ba4", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 396.19it/s]" + } + }, + "7d6b9e60287d4eb4b94e38f5c95ca2c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7d93a3234e0c4029960a4272510d0ff7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7d992d3d2f4c42a19871f4bff88c3af3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ce88c825a77245f29414a1c453abca57", + "IPY_MODEL_8b62598432894687ac5d9b7fc71624d6", + "IPY_MODEL_5a6f673179534ac58eba7f3cfa38c8e7" + ], + "layout": "IPY_MODEL_aa637aa90a644cce9f28c4707a491c7f", + "tabbable": null, + "tooltip": null + } + }, + "7db3b75a263f4ddda899eb29f5cfaef3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6ac7061e9d29460395ba804975c5be71", + "IPY_MODEL_b8ab930759c649f3997d7bf67753cf85", + "IPY_MODEL_64dac01b400d42328f758858b089671a" + ], + "layout": "IPY_MODEL_f5400f584121419da0f756c1d7ce7b28", + "tabbable": null, + "tooltip": null + } + }, + "7db747e948b141ffb46d4d65b90f1dd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cffa75a4197f4e50b2f1eb693b5fef66", + "placeholder": "​", + "style": "IPY_MODEL_c0b56f0139c641f98dd8a67792944211", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 357.25it/s]" + } + }, + "7dbdef88fd474ea0a6688736063202b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7dbfc9661b4b4206884a58cbd4978247": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "7ddc435094a2488bbb67d3eb83ef8598": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7dfa03936e50465e977819f7c16b5817": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7e0ea0b1ad5a450797e613b858c7604b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7e2516365fa548438b146a650622e245": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7e5d23e64b4f4ed4b967f666ffca3241": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7e645af3a5c74f639b0a7b7a90ab66a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7e6bed22d17248e595c74cf54762310c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7e7851db8f2c4a7eb8b2b55728d95488": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7eb56e2ce7684183a4a901f00e2e1b60": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9cc797d7c4bc4d6ba6ea2cfdf6924dfc", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b2f3e7dc468b4d68932274ed41c3d8bb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7eb9f2a85b5d4339a7e03377b1ebdecb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9e4f9e1975ed41cbbd56412d736050c3", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_093f7a8ce1b44a9cb9deb56a6d98e330", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7ebea3f57bbc4e9ca79363b6cb6e023c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7690e9fd24d04adebaf64afaf9add23b", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fafeeee928e145ec9bfd62f82ed2afe2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7ee1a0004b81412a88c54cd9a73b2a31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7ee4e4d9ff5741e8af75dd4eb598d0c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_deda5eeddb89434c8747cded80a1124e", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b3050b35536745beb07940f092fd4301", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "7efa0f66e29e4078bb18deb0509ff3ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4921f34099fb48b1a80b176db6a676fb", + "placeholder": "​", + "style": "IPY_MODEL_ad69fcff3a484856803d6f922cbc3902", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 573.47it/s]" + } + }, + "7f065af4f1a1452f93990fcbd90ff8f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7f204210db3f40adbf7aaad5fec4703a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cdd4c5f6c16c40c38da2df24ceb3fb31", + "IPY_MODEL_92212d85d6e5437da975c02e9b64022c", + "IPY_MODEL_7478707910e34754b4a5194f027ebcbf" + ], + "layout": "IPY_MODEL_ccea40fea620481da3b5c7c6f1705ee8", + "tabbable": null, + "tooltip": null + } + }, + "7f27155136f64056a8a53cad5e91895a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6dfed084d8d84a089fbbd8341e1029f9", + "placeholder": "​", + "style": "IPY_MODEL_52fab53538bd429fa8c9550ef83c6093", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "7f3c7ca221324ed1a9029d4174f7ea1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7f4e533e3b8149d78f176cfe70a0507f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "7f645b75c59042ef8063ce60d69f9d47": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7f74eac8e6bd4731b7f8efd123b01d1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "7f914f8e037a42478acb2701feaf295e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3d29a2c476d4760ae1f4119e6fcfddf", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_44619c0eed084a30b9ac6c7e40fd27e1", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "7fb8a34eab1c492bbecd7325a0954c26": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7fbae615b699446da175c6ba480ca97c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a24c5e111ba745069f18185947eac3bf", + "placeholder": "​", + "style": "IPY_MODEL_23fa77f2b28841b9b3e2565a3339f17a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "7fc63f3c82e4480d9fae95934782709a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "7fd036cec4b1443f91dedbf94f161755": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c0ea6fc92e5b4d08a57e6ccc5594714b", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_df5af61f50d743a3bd418d765296c2ea", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "7fe1c55e1fc44c49be4bee4f341617dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "80000f8a613b4d43a12d3d1c5ca2c986": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_56331da15c4e459c876a63d617d9b32b", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ee3299c06b3c43adb759725208b2e65a", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "80091681ff774a49abd1e3a3289c6818": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c02acf963c514180a3b824c7d337dce2", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_be92e115a17542f0ab9e3b16c456774a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8026dd9c930949638633088f7de81da9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8041db5bf4f045ffb2daa1eba65c7733": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "805803763e8a404aa88927ac08dadf5c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "805cae606817463e8c8e2371671348be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4a2e0bbb714a41d9bb869ce073889570", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f9f668534d614174ad07a89c0ad4becd", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "806b3de7e7254f87a6ead51172f5b8d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "806e44019f074e95b02040fa8b9ee1b0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "80705b826de7414bbd3993564b971fe6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "80737a27c8a44f1b9f19d81a6e9f0f29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "80842ef23e8d4bb691e58f3fee4c334e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "809158c3a8ab4a5786ecdbdfd5a74c49": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "809bd1d1e1af4fc79c3043e9ebee9c37": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "80af4790517d49b9af3a2409c05d0dbc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8c41f665d6a44407a800af2dfe8491d8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ae98c0bdd74643e19a30033196739357", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "80b7dbc2c85140cc9170da40fc41b068": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "80d23e41ff6043d68013418fde7f1ff0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8ace662e8b3643baa5665337468333bb", + "max": 45.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_21715b730aea4e9da0856a92a9efd2d0", + "tabbable": null, + "tooltip": null, + "value": 45.0 + } + }, + "80dfb4abe78c409a85544860113a4d68": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "80fcc5f6755b4480adf1337d1a5ad1fd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3131697af67a48ed8746dcfe3fb9b187", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_da585e0273e6488d9532e56f17b8afb5", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "81085358139c45fb8470a9b9992cc87c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "810ee5c3af124328ac9f9731add97f47": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8123afc09a9e4d16aefe9f8241b4f644": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "81291aaa03984c4382fadfd0d6174c5f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8129283c80a0438993b9393825486b67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "813893e0e94742c48d1813566dd3f65e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8147697416044868ba1d4a6b90f20251": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1850e8f5f47c48c2b0c3bd382cad60c0", + "placeholder": "​", + "style": "IPY_MODEL_f591d6e81abf411cb1a4d9b63082b838", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "814cedc37fdf494a8f37ae75f786a488": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e7cf9bca937c4dc4b8267870ac7476ed", + "IPY_MODEL_c44f8224a5ab4aa5a5e58d7c02f4bb53", + "IPY_MODEL_14f86049632c402eba7c4d617ff4b1e7" + ], + "layout": "IPY_MODEL_826ef6245139472086797c5ee0d28ae8", + "tabbable": null, + "tooltip": null + } + }, + "8153bf2e17ce4c8a9eaf548b321b8dc2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "81549fe1c475498396d50cc1e4cf2df0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "816460a958234409bc807b2e36a382c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8175654048e0476a8e1c956e36cb78f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "819b374a8d22449c9f530a6fd7d8f409": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "81a62eca313141bf9bdeeff14542051a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "81b0a953ef854e98ae98615840bcbe3b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b2bef714e4bc4a1e898860c71d0b87f6", + "placeholder": "​", + "style": "IPY_MODEL_d1fc94baf8434018b0391fd156052bf8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "81c4eac21ab742e283101c6842611664": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "81d3884b68ef454d8a2cb33a9d11035a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "81d915aff22b4bcbbdbdb42defae3c7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac7d3eb9edfd489987e8caf6e58df19a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bbc7e5d7ccbe49be9e1d71c3a24702ac", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "81db4d5f04364febb00214f334ddfb6d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "81e2e91005ec4fddbd2a6a35d0010579": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "81f02f6e9d24414682c204e262edd088": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "820328770a9e4c899de0a88cf3fec0a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a81edbde7fa6478fa0de18920a9318ef", + "placeholder": "​", + "style": "IPY_MODEL_4e5465fa70ec48d28b29f03dbb3e7242", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 335.39it/s]" + } + }, + "82053fb4d20345168b8074a9b0a80a49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8212a3cc032d4c9ba784d32fa8274845": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "821ab76f177e416295ba34d0491d8abe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8220309414a143509e70800cea62c0eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "822a6a9eb3c646f2a75592df1997a8d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "82362f32563b44aeadea44c062900fa5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "824a788c0ce240fca3d0ec82f24a9a8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e9413c629f0b4f3ea57048d2d79c1e3a", + "placeholder": "​", + "style": "IPY_MODEL_e15eb409b21748dab9d948dfaa66e299", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8255c81986bb47d58507fb0467382c6a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d7635d515b344bf182bef3701bdb8b6d", + "placeholder": "​", + "style": "IPY_MODEL_56ad5ceca657483b984ea9e6ec25acd2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "82620adbdcd64fa192a67fdc19a71f93": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8263086b536549a4a1f3f2f905a473c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_035bc54cb3ae4da5960f67bca3610ddd", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a52d86b0480e4bebb0ff7b3539645b54", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "826ef6245139472086797c5ee0d28ae8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8274b6b403074f3f989056a4b30ce802": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bc583d914858463189d3e45cde1f285d", + "placeholder": "​", + "style": "IPY_MODEL_a5a89038f0ab4e10927891716e14b30a", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1100.48it/s]" + } + }, + "827f573d9fc0405f915d64b5cd342845": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9b19da1bc3404928a5e1721f1b8fceb9", + "placeholder": "​", + "style": "IPY_MODEL_a5a0c3ecece44b5db7f7e2ae7648fd81", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8280777b706346f0b755d4127fd03376": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "82a609f759f14c27ab39f1f41400998d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9468476ede444cd1a2765d79502308b7", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3a6132aca4d3410e8f2eaceb7c630935", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "82affe5f493047629cb2551d769e2748": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "82bac11afbcb42fd9a1c3dcd6eb820e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_17899437e9ca4bc083c5fe8faffe832e", + "IPY_MODEL_9034195ac577478e87f4de36883d2993", + "IPY_MODEL_72baa4d48cfe439684010549dbca4419" + ], + "layout": "IPY_MODEL_ff467da8aa6149d6b2490802c0d811cd", + "tabbable": null, + "tooltip": null + } + }, + "82bd1083e4c547e79a05b333d12c1eca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3621e1586f44159856d85f8c3416ab8", + "placeholder": "​", + "style": "IPY_MODEL_04ca9d47702e40ac9dddf69c0a5ad748", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "82e3050581d0431b9c46ee73c5633e88": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "82ee4d3b5732490fb6e1e12052a9f929": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "82ef8a05eb8247358edf38a8a6efc880": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "830d9da4f132484684956e8ffad85129": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "830e3c7088144bccaef0b97acc4efdd7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8316b1e918db4534b6a4d6387526f4f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "831af929eb0c49a7bbc862b8a44498d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "831d29d6782e405a9f06b7a8e9a54e28": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8339a9c0b00b470cb5efed60cd7236f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1ca31e005bc047e3b142035224d24512", + "placeholder": "​", + "style": "IPY_MODEL_91df1449003f4c43bc254472787a3267", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "83494ebd90004099a1100338aa491910": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8349d5bffed84bd1ba59ec29ae135017": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8354aab430d94e518cd1d3e94911337f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_028c1a0f7567452fb42676aac9513cb0", + "IPY_MODEL_e62743eb01c8490b8c1dd3a9d7a4b99d", + "IPY_MODEL_51b4b60459da427e8d20a6e4a4747179" + ], + "layout": "IPY_MODEL_fa8d9d0c3abd437ca729f43307801354", + "tabbable": null, + "tooltip": null + } + }, + "835812533ab44c56a3515b51313710f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "835ba159bd8844168cc2159a9aff9e76": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b6517a20d3214e9bb0da31f3fdd25298", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ecbd322493d54888a4011fda05146c84", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "836f179f7121413084e370b0c21ade8d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "837ad5101ec64bc4a32334555e57e735": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "838489d19d9f4509b9ea1b1bb3bdbce4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8385dfd40baf40f19241c125d1596f92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8391e031616d446e9e289d25c688cfcc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "83979e87fbd74eb08f2da5be33115050": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "83ac856fd152445f9b5528c607244fc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_77e01c6858004bf2833be58be1e3026d", + "placeholder": "​", + "style": "IPY_MODEL_73166f3a66a44ef7bff476d4c466535a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "83b38bf197334be2ad3a46a50665f558": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "83bc0c006d8245e8b0831baf1bfe800f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "83c77f8cb2764e66993539f1317a7eb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "83cb838e1f1e42d9bf5fdade58663f12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e64e7573ea4c4dc595ac9c6c54885f64", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0ae3b8c0baf04d1fa8156f43558ee9d0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "83cc56760acb46df83ef9f99f684b37a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "83eb906573aa43fb880d0ca26e108d5c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "83f684988cdd46a3af1df9b30c0c1b71": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "83ff097dc53d49579383d593b65d41c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84061abe2bb84c13b533440db38ca93c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f323c00e82664e3dbd4603444af4d758", + "IPY_MODEL_9aac4bcd4a774c1e9ab5684f01837fd6", + "IPY_MODEL_54282515664a4ce0a291d95cfaa44404" + ], + "layout": "IPY_MODEL_c5a9dad2d9544081a7e9fc9188f1ff34", + "tabbable": null, + "tooltip": null + } + }, + "8407cd1868984cc78dd0d52cf5369f66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "840ed9a73d904e86b3275776bd3d6702": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "841ec2d7ce0f44a898b6fa9d79ed4892": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "842cc03f55434d7788da3dacb3087ba9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_679534e56c0c4cfe8eeb13339d346dcf", + "placeholder": "​", + "style": "IPY_MODEL_662b0c014efe4427b82b1e6720d3d618", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 652.10it/s]" + } + }, + "843119d8752348e99d24d84985c0bce0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8447953f5e764bde91b88be807bf9aaa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cde4ef921d934eb3a285cecbeb74297f", + "placeholder": "​", + "style": "IPY_MODEL_9750083790b1445c8d8d40d7c4fcf46c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 503.85it/s]" + } + }, + "84537ac694774d93a7859671dc50c0f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e125f0d734084e38a0039aaf29266ace", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_93e6818b4d53405f8df3c78e8cdc54a1", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "8456dcd0d7b9480a88cf4f888dfa6ce8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "846f1bef2b5c4bf6b000c2c9c412f812": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8473e7cf5d5f48599178ba997a3e4e1e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84946de41d6b4e2e9ef2e35cf3218f81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "849d56773ed04d7ab561c90e054781ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "84a2a5f31e3941ce9134ac385d4e2a12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84a58f60313c4b47ba044d531684d183": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "84acb46948fc495c82505422a3a6e574": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "84b12f80203c4ca2ad86fdef7559efa4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "84b529ded6034e628dec5fc3f7a736c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bf963259323a48b7b144d9c2f8d4d03b", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b6bebadb840d43708e860e57c011453b", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "84be7b88e2fe45d3974cdc7baa5af31a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d028953e19d24edc89c029977b464025", + "placeholder": "​", + "style": "IPY_MODEL_ce9aeb4f3cf54704b7f038414fc4cf39", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 403.67it/s]" + } + }, + "84bf7d36b618409cbae8747ba15cf797": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84bfbc520bf445aa8b732d8b0ed63b3c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84d803829af341f0adba84ee9b253e47": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "84f835fdbf4a47bebef130db31ca9abc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "84fd8a2ac095408c8ecebf63c4969c28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8519d16d04a64731b3c2a833e6a116eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8521b296077d4f0c90128299742073f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_208d19b719264825a0d5727c686aa529", + "placeholder": "​", + "style": "IPY_MODEL_6f5b69fe6c2d4b6386879d4a592f4b81", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "85427e821bd24d0d8f2a7203e4313b90": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "85471b7a2a46418282ac15fd4416016a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ea5128d04bf34d25a3369128e52c39e4", + "placeholder": "​", + "style": "IPY_MODEL_ced1c0da6ccc44f0aeea6badcbe8f08d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 385.54it/s]" + } + }, + "8547f2b3ba29436fa92386d475f09a9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8557f84122ee4859b5120569be12d584": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "855da357641641debaa6e387c0a21b47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8561f251621b4b4bb80996645ee21113": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_edc1117bc0d1402c9ac24016e530b11c", + "IPY_MODEL_f592c4d2ec3e48ce829028131c54aae0", + "IPY_MODEL_487b16e1398648a0a17dd31fb4716c3c" + ], + "layout": "IPY_MODEL_2a2d3e73b38f4dfcb0cae3828299c422", + "tabbable": null, + "tooltip": null + } + }, + "8563dbda09d44baebcaf2cf654f1a6d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_175c85ab03b949bdb33d11b2791ca2d0", + "placeholder": "​", + "style": "IPY_MODEL_b1e7c1a4c6de4e638a40667b22c5e784", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "856884c4ba3140fbbb44c8d3860be17d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_876f425b982c4a07bc83ca63b9185a1f", + "IPY_MODEL_18d9a2b1ae9b4ba99c28ac052ccd410a", + "IPY_MODEL_52006e8ba24644599c8654f1496fe35d" + ], + "layout": "IPY_MODEL_d3fdc39c9c9b4bd5b032d082c1b7f1cb", + "tabbable": null, + "tooltip": null + } + }, + "856a7483ae4349c59ea2bfc8f9fc83e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b5aff98890340b3b267236959730087", + "placeholder": "​", + "style": "IPY_MODEL_d703044f79964ef2b060c79f5a60ddac", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 373.27it/s]" + } + }, + "856d41a3b05e4e56a701b50e80dfaf3c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8577af32ee7e4d7e96359fbd5d46bf45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8577b08dfb83408daa431ebe138d0803": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_032fcf91bd8d445bb7c561efca30b6b8", + "IPY_MODEL_01fe6a57b1684ad189685f07f9dbf7f8", + "IPY_MODEL_6e6f8542b0c64fcab15c850c1ce366f0" + ], + "layout": "IPY_MODEL_d633d8b530a9470ab691605a0e490ad9", + "tabbable": null, + "tooltip": null + } + }, + "8593490a582047709aa57b543d1c9023": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "859ff97f7d9e416da46e67d2bc2203db": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "85a5bacee786418cb407d21753480017": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "85b0611c679b496f95b3a35f6b259031": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "85c0c1258a0c417ba1b7142331ad9464": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "85f0b5b8043942aaa1694367a48b3404": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "85f45c17efe04f8f8dc564566ff6d424": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "860a6f1067c0435a93647b19ff2f7c80": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8616fc08a5d34a5e97d2ccd1a8d11cc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_45af2d2e512a4f07bc22bb2a93070f25", + "placeholder": "​", + "style": "IPY_MODEL_7dfa03936e50465e977819f7c16b5817", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "861f2c37d1ed4d83b8248a984cd8eadf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8632bcc4d11448eb81475b54a787493e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a9b4a675fce54a0991d78118057fd620", + "IPY_MODEL_2fac48c91c9e4d8ebc5b988c6451db5d", + "IPY_MODEL_fae935c13c06461c8241e512ce174ce3" + ], + "layout": "IPY_MODEL_ac8939eed87c46d48ffe4f2ee8a8a089", + "tabbable": null, + "tooltip": null + } + }, + "8638091d7a9844f6818f1f5a07802a7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_683270bf9fdd48209d803550fd98d8b5", + "placeholder": "​", + "style": "IPY_MODEL_fd1f92c465034de89d026bf16f3fcf1e", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 778.18it/s]" + } + }, + "8645db0318084da0998cad0a97d7a9be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "864efaae9ebb4a2cb140e89fb49c4b1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_75aa089cb2a2427992f0907060a65b0d", + "IPY_MODEL_4ca1fc203e2e420c9e54cc29e5e0f774", + "IPY_MODEL_d1b0a6c79cc545b2b12b8f676e156c78" + ], + "layout": "IPY_MODEL_960046f079bb4235bf2d157c41717d31", + "tabbable": null, + "tooltip": null + } + }, + "8656a531fdc14092bf2e26bc00ef8787": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "86601409fbe9425da59120559db27d96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3f125a09625043818326a3e7b3baec1c", + "placeholder": "​", + "style": "IPY_MODEL_2d0dc0514c36492981107c7fc4987eff", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8683f044e7f64296825da417f37b54f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_05a5fea83d0748d092b493fe9ca2d852", + "placeholder": "​", + "style": "IPY_MODEL_79f6509215a743558f0b094710452b4c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "869179422f634cb39bebc56477dad27c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8692d67232cb46939bf75dbab9c89972": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "86ad33abbff742d3a66014271d575da4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a9d8b602d52f4ece99e069ebe1bc1982", + "IPY_MODEL_40a4394346bc4c71a0118a4d0e4d7b87", + "IPY_MODEL_f6e9f5bc8c9a4e53a8a8618271153e87" + ], + "layout": "IPY_MODEL_b9188652cf4447359158cf510052e68c", + "tabbable": null, + "tooltip": null + } + }, + "86b3a3f7f2154b72b0e631408011fd7e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "86b5e3b7319948c58d1a0f287a6a4270": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_22a5804c7fef412f9d3f21b66eb1cc36", + "IPY_MODEL_8b9754527ea44f6e9eec089167b1cb8a", + "IPY_MODEL_8447953f5e764bde91b88be807bf9aaa" + ], + "layout": "IPY_MODEL_7dbfc9661b4b4206884a58cbd4978247", + "tabbable": null, + "tooltip": null + } + }, + "86c59ce412d244228a3efe65e7a200ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bf4d6e2efea34ce195383c2ea0d6a06d", + "IPY_MODEL_0670fd987d934ae891d189e37ac4e371", + "IPY_MODEL_dec3aca5d2f04674a0a486bffc8f7818" + ], + "layout": "IPY_MODEL_7896e0eee1334b64a5cf39b4ccfdb5e7", + "tabbable": null, + "tooltip": null + } + }, + "86ec709bd7a84b878a34c652b5afb8d5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "86ec9cff7c8847a9903902487acca136": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "870854f84a104467be5d8ae6fc753501": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "872185aff73645d08739e66f9794ffca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8728c72146b74e758a2b52fa3abbcd46": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "872c42e3457c4c049aea7d8e3f7be538": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8744f956c88743db8708c45f603a43f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c34566599af9497389a13ab7801c70cd", + "placeholder": "​", + "style": "IPY_MODEL_f14aa879f9af48089d3e54efb67abbe9", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.06it/s]" + } + }, + "87659841cdbb43fb9ebdcc6120785c8b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfa75ad5cc884abda6fd0f866dbfd534", + "placeholder": "​", + "style": "IPY_MODEL_d5ac35e42cef47e4b052d7c265b987c7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "876f425b982c4a07bc83ca63b9185a1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_27ccedefc31d4413907f1028ae98ef93", + "placeholder": "​", + "style": "IPY_MODEL_85f45c17efe04f8f8dc564566ff6d424", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "876fe8a3d09544aab227104e53e85f00": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eaa786015c954218b953ae7a40a1190d", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f7b809f0cdea4960bee36890160149bc", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "8779f436ea0c4769bed697c150a77f0a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "878e121dd7ad496a818210ad627543c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_701751bc646647efba99547dcbf37700", + "IPY_MODEL_0b347369d0bf46e484ece090826328f6", + "IPY_MODEL_a45d0b1c30d4465695c75f0017acd9f1" + ], + "layout": "IPY_MODEL_f86e949da4a04ac197d08992bcdce089", + "tabbable": null, + "tooltip": null + } + }, + "87ad1c890b204989ae6bfcb7ff3fd1e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_18d97b18ea0942cc91fb6ee2bf7ef114", + "IPY_MODEL_47a8a3f2cbb648608f28abd14fc41a88", + "IPY_MODEL_f9777c984f394d01a51898688b9dcb9e" + ], + "layout": "IPY_MODEL_cd9c639307d944249d12a3f42fba3d58", + "tabbable": null, + "tooltip": null + } + }, + "87c1be16527e4dbeb6b3a7fb09a85ed6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "87c4dea1e1cb49cd8405fbbe49ee837b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "87c6109b27244a39817591b790942da5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "87c8b532e10148e1b341886c8f751880": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "87d0be865ca7436783b7a34b16af7628": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e6c4aff719d4c54bc0e7917972ecf36", + "max": 40.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c476541a3ca74781bbfd62e02916928b", + "tabbable": null, + "tooltip": null, + "value": 40.0 + } + }, + "87d554acb8844e6ab5ad5ea5c521eea0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "87d78f160e914e2980849e9595346f97": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "87d9e98a91674e9bbf3f04b2b733e1f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_36c771ca7e6d4f8fbda4ac55ce87fe1d", + "placeholder": "​", + "style": "IPY_MODEL_f14ff952e7874610b7ac724e2118a000", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 265.87it/s]" + } + }, + "87f526f89bc34d5fa2239e3ebb7d002f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4b895c0477c04b5ab2174eb74406701d", + "placeholder": "​", + "style": "IPY_MODEL_3b8133199c7742a88474d007a87c488c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 675.46it/s]" + } + }, + "8804e3a20d1c49958518a664bd63f369": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b43627cefb1a40d68e1fa51aa7d0594b", + "IPY_MODEL_5a4055d566d441ba80aae1d78f913f7d", + "IPY_MODEL_647ec9f067f64474aeea0e9f2e883259" + ], + "layout": "IPY_MODEL_d22e0dd7ced7404fb9fab04a5fe8a181", + "tabbable": null, + "tooltip": null + } + }, + "880c6a4bdaab4ff3bfad19799f211c58": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "880df4b063d64fc58cbef79e94427bd1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "882999a631c4429cbbe2e69d51171a8e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "88422685b66a438cae7d1d34ca697517": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e0c80c27343c4bed99eea0ec251eaa7c", + "IPY_MODEL_cf269be0daf74011b4380d2951c2ff5b", + "IPY_MODEL_8df70704d7424a3abe7e6fb5590886fa" + ], + "layout": "IPY_MODEL_7d460e7dfc0b460eb7281e622c20514f", + "tabbable": null, + "tooltip": null + } + }, + "8850d6bf81f5440aa8a1f780f3747418": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "886f3f3c91d34caf9e0ed63ce9a5e57b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8883a06bef5a4b118358e72a5509159c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "88856984b7554facb7f430a9d12eec4f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "88b6f66d7036431ca994944aabd221c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a27b15198b1f4f1791ee2d2fe0a3bde0", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_75975b87ab87454c94775fef59f3da95", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "88dbac07129744c4b638cc5f542af8c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "88e1a75fcefd4c0fb987159af20e022e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "88ea9f2eba3c49088868cddf5cec2f4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_71625d5440ce45e09697ed48d1144f4b", + "placeholder": "​", + "style": "IPY_MODEL_4d9b97a251934936be394b24d1ed5596", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 661.73it/s]" + } + }, + "8904a84c6957477b9498386edc79e589": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_53bf5773133b4b8c8204cce468129eaa", + "placeholder": "​", + "style": "IPY_MODEL_e65bef0460dd4f179dac2f732afce916", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 223.88it/s]" + } + }, + "890c9f45875a4f1e9a96b6d5261ec732": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "892cc708f36c4ee68bedd987fc2cc980": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "893235b6a8a14357bdb372f547450d29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_67156447a1e649fc9d08cad573041ac0", + "placeholder": "​", + "style": "IPY_MODEL_75da25564d624f4691112a4acf08a1d6", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 98.69it/s]" + } + }, + "896c3426cb634945b60e0d603e2f2b71": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_19ad6853fd3c4048ae681c7495e47837", + "placeholder": "​", + "style": "IPY_MODEL_371051f5b61745f2876435cc30115a27", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "89786bf5f5294be8b8d27e014d737a96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_67582f9ca7664b62b3e9df13db9e15cf", + "IPY_MODEL_1c46c42158af4e87a31dbd1861119e66", + "IPY_MODEL_3dfc07eb8212482ab88cdce0e78dceb2" + ], + "layout": "IPY_MODEL_45e725b7e53b46959701397afe69a61d", + "tabbable": null, + "tooltip": null + } + }, + "897c8d38423e4e3dbf16fbf0d113f994": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8980e4faaf4343c888b1b9c6a91aaa8d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "89863c406f52404390e179f310dc9c0f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "899fe6117be345c8a771da61dea9d5c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "89a5b546a8464fe285f3c6884f8c0d7d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "89afb132082742c1abe0ee7cbffa4e65": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "89b5501d0f4e4e229245ef7383a072a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a1ed4b37d0dd4af988ece7721a74c72a", + "IPY_MODEL_47dbe4543c3f47058805f5fee746e580", + "IPY_MODEL_b8f547a4a9574bc2879e56f702d4b573" + ], + "layout": "IPY_MODEL_df784950d667496e8f18a03f27bc6233", + "tabbable": null, + "tooltip": null + } + }, + "89b61339cd1643579e6a7ef98f5b4e2e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "89bdc518dedf4c02bd82640de96689ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "89c4b33d6510457d8ffc18b5724df374": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "89d129b7b47a42c4b4c70d9b06c62f72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0e77bf1e995c45efbb58f7875b3923d1", + "placeholder": "​", + "style": "IPY_MODEL_3e489a0a864f4755b3e38bd3df9bc72a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 358.48it/s]" + } + }, + "89db7a7e1f1c4fa6a327e4cee908de62": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "89ed47253ac64bf681ef0f889e2dcd6a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "89fc6da235ef4f6a8bb93a80464c2886": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b34d0ccfdb0a4469b7371eaab056c7e8", + "placeholder": "​", + "style": "IPY_MODEL_4569a2cf28ab4a21b8850c0f68788df8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 392.09it/s]" + } + }, + "8a0113cc2414488eb6c7c86caa7f40c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8a343e9ea8e847dda642f290345ce416": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2450386c57f947b8afab4a434f666c30", + "IPY_MODEL_adcf67e324ce4bc7aa8b1af64386e925", + "IPY_MODEL_87d9e98a91674e9bbf3f04b2b733e1f8" + ], + "layout": "IPY_MODEL_cf15e3c5c71d4ad5bf09d5148dd42232", + "tabbable": null, + "tooltip": null + } + }, + "8a5bd5a310d14df195c2504717931dc3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8a5c369a3e08412987b980bb76710536": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8a67b01782ed436c85daf382177d5e0a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8a69f0865eec43b5bab4d01c62ccc2dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1a21bfd2c54c417788dc885e2017004d", + "IPY_MODEL_1830baa0e4544873992eda467ed2bca6", + "IPY_MODEL_eba4709a9b8f470ca64502a766e9f4ad" + ], + "layout": "IPY_MODEL_c05032a0c206430994c49f08a8105b11", + "tabbable": null, + "tooltip": null + } + }, + "8a735ec2da514c719f022d36013caed1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8a79c0a468e74ea8a111599eec165c69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_566bd704ae8b44e29e64b21dea874bd1", + "IPY_MODEL_82a609f759f14c27ab39f1f41400998d", + "IPY_MODEL_149174a193694eba88cbce388ef36552" + ], + "layout": "IPY_MODEL_55781ba499a842a48c3745b2fa66f58a", + "tabbable": null, + "tooltip": null + } + }, + "8a823c8dec724b068c8ec7530ff9d3a9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8a87440cc465478c95e06513e60a91ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_09bdeb9289c6444080c9aec7721834e7", + "IPY_MODEL_7fd036cec4b1443f91dedbf94f161755", + "IPY_MODEL_00903ac2ce064af5982276ec0d8cb90e" + ], + "layout": "IPY_MODEL_b16f9abfd37a4d1b98e464ad1b9c7531", + "tabbable": null, + "tooltip": null + } + }, + "8a92cb92dca549c9b95605a7bca8edec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f1497a26afe44ba4bcd676e76ccf9896", + "placeholder": "​", + "style": "IPY_MODEL_b33c240ccb5d4a429354187164d4a37b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8a93125d62764885827b7555f6b48275": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8a9e9862574547a9b352e04ad5ae2e8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8aa0f095c9f14dc1b17fb00c425b0207": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8aa1ced402a94a9f85502d5d082d0335": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8ab4558240ed43c4857845037dfdf864": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_afd31427f387452aa6d9a12f42f7c989", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ccf93e2c68214a9b9f6c99969e0d1b4a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8ac028dd7c5d40cb947f31d2c5bbde76": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ce5f327546b2497986c9325045648df0", + "placeholder": "​", + "style": "IPY_MODEL_1d6311abdef24ef8b6773881c3c4c4ad", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8ac583a8f0654d4883c0aa68a4ae2fca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8ac713af6a20495a90a3cbb466e98d59": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8ace662e8b3643baa5665337468333bb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8afe9622a7bf4d3cb9895171d2a5661e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cde96396c4e7432cb5703f9900d8fcf2", + "placeholder": "​", + "style": "IPY_MODEL_67c226bc2c514d60ad1dfd2f4a881028", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 356.43it/s]" + } + }, + "8b136a98f00f4d909f277476dfe9ab1c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8b15973898ce425d88a4e9e87d5af6a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8b1bee2d13c04305a452f21128a9c858": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b4887e91f654fbd826a886e28b2097b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b5aff98890340b3b267236959730087": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b5b6c7c657d484098c6d1fcb20c16e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b5dec4c07f148899a63b388bb16056c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b62598432894687ac5d9b7fc71624d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_967a178b891147ed94d35c65b1403ca6", + "max": 40.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8c2415e15c694ca090041132e220b2ec", + "tabbable": null, + "tooltip": null, + "value": 40.0 + } + }, + "8b625ea71aec4e08b1136aa552324fbb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8b6ecdec4eab40e8af27def88a3dcff2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_26d983e7f06e4056ade1430244425bf5", + "placeholder": "​", + "style": "IPY_MODEL_8391e031616d446e9e289d25c688cfcc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8b6fb84b957e4716830887a3b00cdba6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f87d7d4d3a79415cb5b1f7e68e8b2011", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dee3d8fbf47a49ab89911daf6ece3ae8", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8b736ca03635414cb03c284118e079ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8b8dbd9b9f5545a99a2006242c829473": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8b972d94c733440fabfa03df0c882afe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e39d014397d74134b04f3840358b9c73", + "placeholder": "​", + "style": "IPY_MODEL_50a5f10af7a14f7583c3a4565f8494eb", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 918.93it/s]" + } + }, + "8b9754527ea44f6e9eec089167b1cb8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_232b9380974d4bc187690af8c4c5c2f3", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_119346cc89bd4b7d9a97d019993d5bb9", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "8ba24c3651344e0cad2a388c515a2452": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8ba599ae00814aafad77024e7568e778": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_35db3e92c0e54b68a6f972c907909850", + "IPY_MODEL_bc01bebff01a46c8925c1ff6b733e894", + "IPY_MODEL_6621954481bc4074bc0239cdb6f8a354" + ], + "layout": "IPY_MODEL_33b0bddeeb9e49df81b35d2367151cd0", + "tabbable": null, + "tooltip": null + } + }, + "8bae27914733459abdb5e8df79747137": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b0bd113b98dd4d349bd000d8c75b469b", + "IPY_MODEL_805cae606817463e8c8e2371671348be", + "IPY_MODEL_1c45e15921ba44c0998a4ad73b1239b2" + ], + "layout": "IPY_MODEL_6cb63ff1bf014092922ca86474f9c929", + "tabbable": null, + "tooltip": null + } + }, + "8bc33a3592e34bbc830ccb41daf229dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8bde17b51c7a4771b487e2689b9c2183": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8bfc298386824af1a444341505a74aa2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8bfc9ad5d8a44e5e87aed854226e1cb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_04a7123f4b3140ba9a0dc9a27e0e0de2", + "placeholder": "​", + "style": "IPY_MODEL_b3f030207de145adbb8c30e398be8b5c", + "tabbable": null, + "tooltip": null, + "value": " 49/49 [00:00<00:00, 199.39it/s]" + } + }, + "8c043f86793346e6b883d9640abf83d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4cc4018261934b238bd37918bf186eb5", + "placeholder": "​", + "style": "IPY_MODEL_9967ad5ee8ee49b8a20021586191be82", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8c0a3e9fde044e1e97238876eeb9e560": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8c0bc595e44947dc9590f1ceaf54bbfd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f5dbdb66da854c78abf3011731cd26b0", + "placeholder": "​", + "style": "IPY_MODEL_1ce3f48501a048c5bb6e1e553c5bf987", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 582.15it/s]" + } + }, + "8c13d6b97385488287b26a996f0efb5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e4d4170acb4b4ae99ecaab39b0301c54", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f7202f6ee2e74b1dbe84052211d1deb0", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "8c2415e15c694ca090041132e220b2ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8c3e6e88322241a3b6fdff7d66a3c013": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8c3f482b04ea40329887fd6fe9d80d1d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8c41f665d6a44407a800af2dfe8491d8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8c473ccba3bb4eb3813441cbbd9d64d6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8c4c3bfb6e3b42408032514f91a0cda7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8f9c48cc008844c480e6067bd0a6ced7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3324a850dd224e80a3deb477a4db53aa", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8c4e7c277af74a8ca432c48b6960f844": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8c5a1c37bac4487f81e18b881b9666d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8c5a887f0b6849038b79dd085b72acf8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_660086cda21d4ca78be56eaca394831d", + "IPY_MODEL_f044af9af66e422dbf3b603c423893cb", + "IPY_MODEL_dda07c413abd41f4a6068c398c3504c6" + ], + "layout": "IPY_MODEL_5fbe9800fe224c8db23bae73ea958ec6", + "tabbable": null, + "tooltip": null + } + }, + "8c74132d57ea48f2bbd406cc16c2a76e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8c9af19c88714e828da6baa53762f5f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8ca015472e6e49d5bf04f6eb6c147da4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_66bb1915859f478fa19350430bc741d2", + "IPY_MODEL_b029984521f44bcdb32fb49c5bdaf4cd", + "IPY_MODEL_6eea5795ee4e4d02a2a3b09780080a2d" + ], + "layout": "IPY_MODEL_33b38e9fe3c04c92bf750a9a862eeb0a", + "tabbable": null, + "tooltip": null + } + }, + "8ca8d4f0ae6f4264ab4c6a3484a4dbbd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8cab9f243d1948dda1816a5f206d2e2d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8cbceda7696c454599288d22b93c031a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8cf412989d714febb34efe1e68b37a17": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8cf837a553dd4e7eadfdae531f72b078": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bcc5efd5547448f282f6add838d91bf9", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_26668725e97849a296de61dc2c8cb580", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "8cf9f9b278aa45d2b4a83ac03d632503": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59ae02779f37429c88d76da63653c949", + "placeholder": "​", + "style": "IPY_MODEL_43aa56754e404d39ba412341d5d1bcc0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8cfa474cefd34c0882a20a64982d791b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8d04173d877f40278c2c38fecf03f347": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c2e138655c454687b6441ab6f035c35c", + "IPY_MODEL_cfc8301a29374dd3b4c112de2916a758", + "IPY_MODEL_c312dc0c97ea4bf59361072223d5b4d6" + ], + "layout": "IPY_MODEL_3c020e786fc747bf8cd983be42d8c527", + "tabbable": null, + "tooltip": null + } + }, + "8d17f19d68bf4f77b195bacca5387eab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d2ec7e20ac5450a8ac29f96ba880da6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d3bdb36bc924e9ab984488b73cb4e3d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d3d13f7367243a19e15cfd5364917e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_43a431a5d19e4c27a88905f4824e001d", + "placeholder": "​", + "style": "IPY_MODEL_9a6209013f2b4dbe87f78efcf3e9d4ce", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8d4a26061ffc42e1a222d96d829b2070": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0bd88428b3c142e3b4fbb709b25e80b7", + "placeholder": "​", + "style": "IPY_MODEL_d9e401e2942c4765ac2148af0ec33e07", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8d4e242b49e241b193cceb2291bfc047": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d4f1fe7f62e44afa0f56bf384d3ef1a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8d5e5bb0827d4deab2e99d8c5ad10451": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8d5f10445fd84e7b856cd3939b2ed611": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8d6fe1b669e24d49bc5f65556e4e86fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d72d22d3e354ae6a2d8173002eb3d3d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d7719ba03e141439e107faac8af646e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8d8869a8d8364fb9b3d92a4b15c98bc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8d98acc43845489b819a7ff5ae81c9ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8d9ae1d754f44b1694c0acff53fc27bd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8d9f85e84db44c2684ffc3a7ad632dac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8da3508c3b3e4bec90276cad8e7e4951": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8de6ef6b6c2649dfa4258f67b6f2ebcd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8df70704d7424a3abe7e6fb5590886fa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6b37722b0da34baeaefe56daae4187b5", + "placeholder": "​", + "style": "IPY_MODEL_074551e0afdd4bc1b42c9d71f5f8a7d0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 374.34it/s]" + } + }, + "8e09f9c7c76e4ac0bfd01f666eac19b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8e0f857ae1b84227abc28fb054e9081a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8e1d52e596ab43bf99909cadbe00a4ca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8e26719711b348ac865db904269b4171": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b1bee2d13c04305a452f21128a9c858", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a1ce542c9f284ebdbd259095bec50ed9", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "8e2bb89ba44f4d6aba94eae9506d0e76": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e231e959e22e41adaaed2944f5a31a3f", + "IPY_MODEL_0f5d53548fdd4a83b510a141a0e5d1f8", + "IPY_MODEL_46ba90c0fbb945fbb09e0fcae6e23584" + ], + "layout": "IPY_MODEL_1547d590dc054e1c97172a19683c6140", + "tabbable": null, + "tooltip": null + } + }, + "8e39abd6bb6d40d99b56678d3073dd0d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8e5008543d0a48dfb8c5d0dad7b19b47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_506d9d0dda35481e98a5117cb15fb86a", + "placeholder": "​", + "style": "IPY_MODEL_5ff831b2ccfb4b1fa8061cf4c4f59f08", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 314.48it/s]" + } + }, + "8e8041546b2543d6b6e7954d50d2f1ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ef8a53227ede4b8bb34d3a6fd0093f24", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_526734a140f4482098d0030bcc70798c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8e85659e3769441bae9ba746d0e525ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_52ddd21a08f746dbbb8317d51edf1caa", + "IPY_MODEL_1803b2d0ff62441d9bce40218b6693ee", + "IPY_MODEL_d979d14c31fb4475b63d387c3251ff81" + ], + "layout": "IPY_MODEL_3b77d0c6f3674510bf5f984540e21b15", + "tabbable": null, + "tooltip": null + } + }, + "8e92efe2b3254610ba87337709a86144": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9afa325a53b74be69b10cde4127597eb", + "placeholder": "​", + "style": "IPY_MODEL_3a967fc3c43d4efbbea2c344df44ccb6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8eadba5ab5b7468db3bf8a34b49b804f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "8eb824df40044be58b764b470257fd01": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8eb9a3a4d098437682aa659f89f0fec7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8ee77fcdabf748509f22ed3da08f9b32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8ee80795032d40dbbd384549cfc8df08": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8eef361f293a45289de137f861ddb7fe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8ef14fb69b2a4c679d44c850078f0e64": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e632937420614805bd6742c3da4d7430", + "placeholder": "​", + "style": "IPY_MODEL_25479a5b48a542c9942efde8665e47cd", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 402.35it/s]" + } + }, + "8f0b1b4c52a145cdb20061ff3fc177b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bee91f7163834a99b6b3488e134027e9", + "IPY_MODEL_553f0be64b594881bb07a2a5146c50e2", + "IPY_MODEL_0929bcf9aafb412dbba2699ea71a5a48" + ], + "layout": "IPY_MODEL_2b199dc256c74ae69ffe52995bdfb38b", + "tabbable": null, + "tooltip": null + } + }, + "8f17ac7cff5a42238da4984e05d2d712": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_98e80bc9946c4e05b79c02713f4b50cf", + "IPY_MODEL_dbe6a4e4f04040929efb2fea97065c1e", + "IPY_MODEL_cb8374118aee48279ee7ac84558e1ec7" + ], + "layout": "IPY_MODEL_91ba321ee2394f5aaa4e129c363854aa", + "tabbable": null, + "tooltip": null + } + }, + "8f1cad559e5b4f32ad9c666af99cb07b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8f3eb37ec3bd4edc9e99f4b4d84d1128": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3dbba7bdc616458db88cb80415768f0e", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f583887fd6ef42e2831de3dbd80c4a07", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "8f4634c6de11409cb6524b2688afcc24": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_62b7d724fe3f471ab3d72ab1012dec7f", + "placeholder": "​", + "style": "IPY_MODEL_5b1d55d82e314c7fb8f2cf47edbaedba", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "8f4c14a615d94909983f2b0260842174": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8f53e4217b3343e59df9d4bcea1628b8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8f5b4878600c4df293fae1b748b09908": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8f5f708ff9ea4a82bc2c2b1979d7fada": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "8f7239a3a37946888dc15cb8a26ed5dd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8f94d30d76624866824ad064967aa834": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8f9c48cc008844c480e6067bd0a6ced7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8f9cf2bac3e047c7889c541210d943e5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8fa19f79b5b24960a0406b57aec15d97": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3f329514da2d424ca4e77b6b29dc8694", + "IPY_MODEL_bd02cad8760645b280c6d804389ea4e3", + "IPY_MODEL_d47bd226e993453f9513d0000f7668a3" + ], + "layout": "IPY_MODEL_f4a6c5c1bd0145509a35e7519d28644a", + "tabbable": null, + "tooltip": null + } + }, + "8fae262f574a4544a3dd1553a9f0c6f7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8fb2498ce21a448da4bd24e0250690a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55e4009b39e84d9db274694310e729f5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a79b69b7151b45fe8351a83948675d9a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "8fd851ce512b410b8a7c90b1ca2d4d88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_25de52b80037425fb62d74ff08bbd52f", + "IPY_MODEL_45df048b64cc4cb1affade79d3eef289", + "IPY_MODEL_d55fc76c1f504cb094a4e43f369d9cfc" + ], + "layout": "IPY_MODEL_ee5aab6de5fd4520b59789a6f9989ad4", + "tabbable": null, + "tooltip": null + } + }, + "8fe4c7842103421c89821a3d453d97bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "8feee7efbfe14082a76719ffae1b4eb6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8ff6a84b1c614873b2b4148458bc3b5c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8fff3f8e0d0b4174a4512d06c61d7268": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "900e61446acc440eb1203d8f1e839766": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e512ba04ef864d289f9216518191bf0d", + "placeholder": "​", + "style": "IPY_MODEL_a77b23a9db3f4edc91b544eba2f6696a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "901cce1147864ea7910ce6a07d355b4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7f645b75c59042ef8063ce60d69f9d47", + "placeholder": "​", + "style": "IPY_MODEL_4a223d43892441ca894587ad6f64a83b", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 923.31it/s]" + } + }, + "9034195ac577478e87f4de36883d2993": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d6e34901e01347d99b1b2128e7413078", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_28c8c3e88b1d432a916647ae6e6c6a73", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "90419bd228b14fac9a75aa9480ae2733": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9049f474f06c40d08f09bab4b0619186": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9056c4c1ba3e49ab9c20f7b5866d5942": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "907b335c5f6d45a3bf6c44945c25c7c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "90857d8bd6ac4a349c3a3160febd1431": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f56fb9520fb14698a409f3d6e42c54e9", + "IPY_MODEL_ccd129b84864426583d3830d802a3673", + "IPY_MODEL_e0ced6b641a5474bb0b1ba21fff6783e" + ], + "layout": "IPY_MODEL_0dabc833eebf4822867006b5561ce7a7", + "tabbable": null, + "tooltip": null + } + }, + "908bdaa70adb4b4d8c39bc234e2d4a3e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "90aecb2f460f423cbbba5075eca49aec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "90b4d7b3e5f54a33bd8f45b1db5ac9a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4b2779e7fb9f423f96ec6b189e55dc8d", + "IPY_MODEL_f22083405209496d8466d64f8244c716", + "IPY_MODEL_13b72a8cb85c4d07a4461faee204368e" + ], + "layout": "IPY_MODEL_de4040afb8224735b0998501152336ed", + "tabbable": null, + "tooltip": null + } + }, + "90ce2401433444468b911155a4d14367": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_67dde5956f7843c88b84a1d8bdeeb32a", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_68f106f793944ae7b5d20001fcb4f855", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "90d79df7e99c4ab7bd13432653ca94d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "90ddb237cb7c47139a4cd6b1ded70a77": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "90e3a817094a477d989dd1a9d0e143e0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "90e48643b3a643afbd59b13a19ddeec7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e6f1248be786485f86100ee6f39d5755", + "IPY_MODEL_eb0cef2e5f444a549ab38404031df2f7", + "IPY_MODEL_6f0d3ccae21e470f8fd11a41b0ce77b1" + ], + "layout": "IPY_MODEL_32ca8975bca34151aaacbfcd06d74ae1", + "tabbable": null, + "tooltip": null + } + }, + "90ec169330ef48e5a5e3fb73c8fa16de": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "910781b4ceef4dcaa58a96ab704856a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a8cb1f96de584dd0b60a3654d6498122", + "placeholder": "​", + "style": "IPY_MODEL_9d3676877707430a86aa435e5e28116b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.85it/s]" + } + }, + "91096c3df74a4389850274a2bd81f04d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "911a510f3372451f8700a6ce19f79857": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c616c69be7ba4d35a21a85f86fa68c2a", + "placeholder": "​", + "style": "IPY_MODEL_8d72d22d3e354ae6a2d8173002eb3d3d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "912aa95c95f64785b5af3ea7b42007e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "91378a4faebb48739038996b796a1db0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b77d623b7fd400ba06a3b78285fac0e", + "placeholder": "​", + "style": "IPY_MODEL_e0e19ebf6bf342c4bef1637a81c80e44", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "91507b7e66634e1f9dd96d7622322563": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9155d6f983a94105b63a8e6bafac47d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "916061d6a23d437a8cc97b77d87e6d65": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "916407224fb346b8a9f93e23d4848ac7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0395df3427074a9fbff87e77e73b8437", + "placeholder": "​", + "style": "IPY_MODEL_3a09a15c382e4200ba09eccc2c8e702b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 367.76it/s]" + } + }, + "916b824b7842449896c226cc121b3d97": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9179d971231c4d9dacc84fb2ffa0ad38": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9184fe0c710a4857a4eec55b045b302d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1bff8ed148a54b3e87b4bd2dd81eeeaf", + "IPY_MODEL_af67188cb9d643f4a740a0669870f329", + "IPY_MODEL_381ae1d322304ec98228369f0489c2de" + ], + "layout": "IPY_MODEL_0467b804427f408eb143c70d629b84e4", + "tabbable": null, + "tooltip": null + } + }, + "919dc493c0ca4451996b119973451585": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_02bdc545caa046fea46783f8e3a489c6", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8d7719ba03e141439e107faac8af646e", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "91b45a74a59c4120b78b890243990083": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "91ba321ee2394f5aaa4e129c363854aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "91bb14f6f13a4b28a4922c3f2e049d77": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "91c0f28d129b41279f05a21792bda2aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8b736ca03635414cb03c284118e079ec", + "placeholder": "​", + "style": "IPY_MODEL_1d5fe3903f0146b6ab7a7a0f22d6bfaa", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.64it/s]" + } + }, + "91c62b5fec004931a133bdd5d63b813f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "91c7b10c3cc0443995a919981238d627": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "91c962339fe444c1ad1033cf0e149d0e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "91caec183e4b40c99aaac4492fc4476d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "91cd70a065594348978dc6c81e2f74cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0feb9879f6b64a9387c6051ff5a5ef4c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8a93125d62764885827b7555f6b48275", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "91dc1ba662184287b66e46dae936f1b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "91df1449003f4c43bc254472787a3267": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "91f69b3d2bbb489a80cf271d3967e1c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e7e9b92bd6634029bf78e30d6ae4366c", + "placeholder": "​", + "style": "IPY_MODEL_4d2004837bc44ada8899b1824d2093cc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9200f9d15f114007a713a0662d497a19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92080865c33f44ca916464b9b926190d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_decc3052068d497aa5cfd15905834ae8", + "placeholder": "​", + "style": "IPY_MODEL_9a027b1a438a4354b0392800cd4042f8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9209dcff6e3e49728b1391ddd6ed1c24": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "92212d85d6e5437da975c02e9b64022c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bda96cbd13f04156b35e6ee79f5ddfed", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_123334a5cb50490ab8dfeb82340d235c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "924080628c1e4acf82a5eb05e842cd4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0d7884937cd2402aa7d97aa8c9629be4", + "placeholder": "​", + "style": "IPY_MODEL_48ab5ccba71844b8a0fb46edb6ba675c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9251f963e35545be9e7743b5dd3e3974": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_45fa65284a8d46539739f2d227d43f58", + "placeholder": "​", + "style": "IPY_MODEL_a200360cdf0144d680b132b74d0095db", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 663.21it/s]" + } + }, + "926c1245a5b6401eb09392c6db6f37d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "927599ac634e4aa0b7c119b0adaece03": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "928cc117d09640e9b4dc5aeb5055d395": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_56fa649e24174c04a41d6bcb86f3c8e0", + "placeholder": "​", + "style": "IPY_MODEL_aea82e0dce7946c694e30a58681f1392", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9299f97468904efa82c53e4ad971f5c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "92a2d743100b4e008b5399b8ac1a6d47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92a75bf5fbc04ff6821af2526dc7b0f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92ad1307eb3b4c6f911ea5369c65b520": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "92aecbc0483c446294e36d4b9e344dd9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92b032eaf2894017af9c182658ed482f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "92cf213e529d4e34be6d8473a8ca6b23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_369b22041fa7445cae0aad1b7ba9c011", + "IPY_MODEL_667ec1c09fdb48b78596daf1a1d5261d", + "IPY_MODEL_dca4f8273788469ea116128adbf4bdb2" + ], + "layout": "IPY_MODEL_c6f435780bae4a9a9cb3749c9e4a7ee5", + "tabbable": null, + "tooltip": null + } + }, + "92d08f220c374120997d93a0eaad6a8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92d16815256d4b8084e7031141cb9f44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "92d84139e1604955ba99e864388ef411": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "92da9132a89949fda37e684a1c2aa3d9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "92faf4f20b4f4b648131a1287eb58a68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_657bbbb28bee42049ce06151ab9dc23f", + "IPY_MODEL_786254f968ee4746884d618efbd7cca8", + "IPY_MODEL_c263fc60cac64b14bbf6247f43e20f12" + ], + "layout": "IPY_MODEL_182a77b420e14e2fb8802de605315de8", + "tabbable": null, + "tooltip": null + } + }, + "930211cbc10141089f28a283c5e2b0ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "930724cb9c2b4e328234231011c4c912": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9324b288d4244599b4f62c44a5bd5e51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cebfc5c7c7774db2adc454341e75dfd8", + "placeholder": "​", + "style": "IPY_MODEL_1fadff3f3f084f9caeabf44aaf1796c5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "93409ed1e4854c5e8c794b311beb4f0c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "936439376656413bb274a1fd61261f6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9364d370c83940da876e0a5faccc2440": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9393be0bef004e01af2e76c4c885aec8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aa4c3560a21e4b56a83ea4d6d3584a9f", + "placeholder": "​", + "style": "IPY_MODEL_5554ad6d523d4d7791fad7ab9a46f2ea", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 343.55it/s]" + } + }, + "939ac2555b2445aeaa64d811bea9d0a0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "93a4ecb73820401dbf53641e7ba0af03": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "93be7e15294148d98a198b4aa4f9a4f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "93c03aa26fa54f7aa4cbb9c30bedeec9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "93c7335c3c9a4d6f809f55374508b7fe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1d76920646204d8b954506393879cc9b", + "placeholder": "​", + "style": "IPY_MODEL_18e4efa9701f4a42a344c333407dfc82", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "93ccda3030f84eb8a7304410b9bf81aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "93d0f1cbe6c4441d91d6d8e132013ef4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "93d165a8693a410d95c2d567779f1845": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "93d49b91d0c44c4183967f1a3c4c5926": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "93d8867dc32a4846b1ec0cf15b802bdb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "93e6818b4d53405f8df3c78e8cdc54a1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "94011d4377b8479ba0271459d04b532b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_036ed722d25240d89cb81395f4e8686f", + "placeholder": "​", + "style": "IPY_MODEL_6d35724953514371bf18fb47cbba73cb", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "9405307f67314d7c99ce8ef893667388": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8c473ccba3bb4eb3813441cbbd9d64d6", + "placeholder": "​", + "style": "IPY_MODEL_c846bb1082934db78e7508a4c200bd83", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 635.34it/s]" + } + }, + "9408276933bc4723b602101629d83dcd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "940a538b4e7e45e0b8e422f9cdb0dbb6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9410cef0dace46b0bae4f8957ce1f43c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "941669ba9a2447739d8fa4e26e4f39b6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "94184d5c7e2f44b39e0574a312d7c3ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "943358bafd8f4ecf9aab6f5581f5b819": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "943d6e0805d34d7c9be66cbe50d787b0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9443d9fd5d7b45649a37e5cc1f52c58d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1e684d42d8f64387b48905a8ed4e0421", + "IPY_MODEL_369e1d0305a947199de1dd3347408c49", + "IPY_MODEL_d6bdcf1e9d654d4da8097588387cd2a8" + ], + "layout": "IPY_MODEL_e27c7a45271543c8b69280e360c58ba7", + "tabbable": null, + "tooltip": null + } + }, + "9450e8fb4d894c79b451975ed6f16751": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9458c32f2f2944c0a748fbc06ee2934f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2f9dd03e99fd411982677f88b60b88df", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b39a0d8c338445baa85b82ad6fb5cda2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9463e11a12cc4b12a2d0c8d5ad880129": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9464a6e45dfb43738c7874084ac2511e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ec506b7c9d7047ee83792ab1a7b671f2", + "IPY_MODEL_77a71d92be6345c6bec50b24fe4785a0", + "IPY_MODEL_74e1d6b8ff384f87b8d1d029ba041ada" + ], + "layout": "IPY_MODEL_b987b6973395416fbd197e9c973ac79b", + "tabbable": null, + "tooltip": null + } + }, + "9468476ede444cd1a2765d79502308b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9473c71db42c4ccca9143d8836db38ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "948e251965974533ad3d7d1258644227": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "94b428875d684c6da237b5e32210d516": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b24359fea58f4bf9a3d6c21ce9d003d1", + "placeholder": "​", + "style": "IPY_MODEL_5909062a32764981b19dd0b35d7e4d99", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "94bd0142031d4c3394552d65d72e37be": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "94c79ba205f3443aacdb5219d9baa4d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7b5a5c35c2db4c4fa9684b18919a40ce", + "placeholder": "​", + "style": "IPY_MODEL_1083217e256241909c738347f7ede8a8", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "95258fbd51964b9bb39c4df15ae9a61a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "952b540770104706ae1145976e97b7b1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "953840950f084bb8830df24e5e0ed398": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "95417aa13be94e0ebd44247dd1a108d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_47d97db0bdc44665867a752cc803a01e", + "IPY_MODEL_1facdb61ff8a49729dcedeed3cf31a0c", + "IPY_MODEL_f54d757982454bafa6db58221ac3d573" + ], + "layout": "IPY_MODEL_cc4cac47bb1849bd8d2b8a2828b3f931", + "tabbable": null, + "tooltip": null + } + }, + "95443c2be301419da67d2d8b054a7112": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "95523e1a33e74553aa901ca6504da630": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "95543e6ca79d4ccb91aea7f1f9eed2a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfbbf6ea2a474e1f89fb8e0045fd4fcd", + "placeholder": "​", + "style": "IPY_MODEL_7945cc73d2384d149fc07fc53f83d699", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9574d36044fb4e19acfffb93318a009c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9581c17d25364e9da6d28c8f26e99c74": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9593cb66839c4d30ab53005ecbbb72e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9593d38c7ed8435caa1d9404e9762bad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5f40c20a0d9e4982916170c0cbc8d092", + "IPY_MODEL_7cf4f2057e5042879ce8a786daebde0e", + "IPY_MODEL_1fe6f1688a82458ca7dba483c4a54572" + ], + "layout": "IPY_MODEL_e11b69db86f14d778bc3d17e360bf8f4", + "tabbable": null, + "tooltip": null + } + }, + "959c5d9dcfe84f36a459b08c128bb5c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "95a470db4b5943638fdd5c89ecab88d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_97f0016e7c7c4678af2424b7eb9130d2", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8385dfd40baf40f19241c125d1596f92", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "95b6a3cd420043e6b2a2ee4b5c581226": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_377e5b2d9ec1471ca82527018b7e20b7", + "IPY_MODEL_b6baa73f23014515b55cb54440095315", + "IPY_MODEL_4e8c74f88fc444bba32321f45422e7dc" + ], + "layout": "IPY_MODEL_1f999710205142a5abb3406da4a1c425", + "tabbable": null, + "tooltip": null + } + }, + "95b93921079a45778dee660eebbafda0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "95bc07b2e1f746efa303d0d5306993a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "95ca65bc2f05462f8bf9cdc4f301a49d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "95cd8cb3edf24868a4bc949d029493cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "95e913a4d43b405ab89dc36f65d1a62a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2709422f42884b7da1eecfcc95ab2cfb", + "IPY_MODEL_5a401f47aa004e6b80235c95e3c41660", + "IPY_MODEL_eec98e22d7dd43108cc2f943194cd182" + ], + "layout": "IPY_MODEL_09851dd68bcf4e6ab76d9276adf02339", + "tabbable": null, + "tooltip": null + } + }, + "95ff5d6e809741999c1c630d4586d196": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "960046f079bb4235bf2d157c41717d31": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "961dc3db9e7b47a083045d7a0b3ecadd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "96219153d9cf4793be39e66ba18217e3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "962790e87566478f98d5081b9f2fbd3a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7ad903bf5e314f69ab21d2b32331e0f7", + "placeholder": "​", + "style": "IPY_MODEL_2f5de35ed6a84e3f8029a4c66d087e52", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "963121fc528c4fc2813598f546332238": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_381ae0dcf6c64bb5b3ca393c62ff9dda", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_eabee8977b7d440294cd4cc28196c76d", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "9635cf005d5446218181a48399babf9a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "963c93fda8c8480aa514aa5d90665cda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_dae2d5bd97e5404aa22d765c7bedd730", + "IPY_MODEL_9458c32f2f2944c0a748fbc06ee2934f", + "IPY_MODEL_5d2ae5728d684bcdb7fe9186072c5ad2" + ], + "layout": "IPY_MODEL_503527f8d78f4932aa4d362cd01699fc", + "tabbable": null, + "tooltip": null + } + }, + "964375337de64748ae636b89d865efe8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "964604801549496da77ddb476c3b6f76": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "964b5bbec7e24a4591dfdc8ee3c4e16d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "964e7b4ad3bd4298bf688611ad70f75b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bbfc629e42d14c56b3e5efc13c201f6e", + "placeholder": "​", + "style": "IPY_MODEL_65fa7a64f9a24181bc49d165007e4aa4", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 210.44it/s]" + } + }, + "9655281351bb4362ad12d1cf3bf9ba09": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0355c17ec0a4ccb919198e3e323697d", + "placeholder": "​", + "style": "IPY_MODEL_2df8407a32684b4dacd0272c376560fc", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 744.65it/s]" + } + }, + "965cc244cd0d44c58b2cbe719c1b95e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "967a178b891147ed94d35c65b1403ca6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "96982bcac5b246ce894e448cbe944109": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "96c7437c7195487daf88d6d051d5a0b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "96c8a2f1003c4ad392f9c164ed068ab9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "96d054abf3724d6198567f04dc27e922": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "96dabccc978742bbb94a518d84079254": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ecab3ebf7d1a43c5a2c2db5f686c7579", + "placeholder": "​", + "style": "IPY_MODEL_09d96489cf274ca6b1887aad8679c311", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "971468003aea4df09dbdf1bc7de1064b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "971606edf1294f17a56feef43d73bbad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9716a85781074fb4a8c02a77b7d3c246": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d8719f54c1a546989d73713395a5f2ee", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_da30bd16ad4a4649a4e101be45cad7d7", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "9718b5f4477c46e68f7737c391f4d6e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "972a5eabbb80496b9c7af5003212999c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_85a5bacee786418cb407d21753480017", + "placeholder": "​", + "style": "IPY_MODEL_d21a2f193a494dd1b259f1a4c99d702b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "972a8849a395450a8947242910ca03ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_324aeb5f716441499557e9a9ee07ee3b", + "placeholder": "​", + "style": "IPY_MODEL_c6d5e50eb5d54e8984e28273d27ffd38", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "973279a050514ebe91d0fdcab8851540": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_43a7db8f82ad49e185dc6a5ed575b6b0", + "placeholder": "​", + "style": "IPY_MODEL_8547f2b3ba29436fa92386d475f09a9f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9737b9b366c642ba836875feb7d35222": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9750083790b1445c8d8d40d7c4fcf46c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9752977f30eb4c12b2ac52db90ffe806": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_924080628c1e4acf82a5eb05e842cd4b", + "IPY_MODEL_2e241b8013f647c3bb542af986ba887a", + "IPY_MODEL_c95ed71e50d143ed94daa3f72707ddc5" + ], + "layout": "IPY_MODEL_d2defb10c02b4646bdddffe4ad323444", + "tabbable": null, + "tooltip": null + } + }, + "97583aa29ab44f259f26baf7a5eb44f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a2fa75aba0904adb8b31f55e5949b706", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c82ed281b37f49f98932886ab76985ba", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "975dc24ac96a41cb9c0c7a1f0fcd4b3e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9761a2e94cde483c850ba4f37d478f60": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ceb12e40efb6474c983741c4bf29fb99", + "placeholder": "​", + "style": "IPY_MODEL_7f3c7ca221324ed1a9029d4174f7ea1e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 385.95it/s]" + } + }, + "97752d3cc3584413a7e822f96d8d9a68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "977ae5e76c5d44b5b41e8afa239a643d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_21076284c61847578199c8aa8d8b1042", + "IPY_MODEL_3351275589954ddf88bf9834efc74bed", + "IPY_MODEL_e083564cef97476b98c0b29a167d4d85" + ], + "layout": "IPY_MODEL_79ab73695b6a4784aa08dc7f845297a6", + "tabbable": null, + "tooltip": null + } + }, + "9788b49497f24c0dbac87eeb96542f38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1e6d650b4bdd415b9df6e199b33ec1ab", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a51eebd928794b76a9f1774a7185c3df", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "978b53f85e10445e8a9729896379ba1c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "978e8b3b473448ad8fbcd7f8c6a2c5ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "978f680372c846dabc500b9ccb9b80d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6ee727dd312947e895644c7103d041b0", + "IPY_MODEL_49f3834953ae4dd8b483194261ed351e", + "IPY_MODEL_1c680d2823d94835b9299c0dc9a1ff7c" + ], + "layout": "IPY_MODEL_089b0dd228c341fcb5606ca2a7b12e15", + "tabbable": null, + "tooltip": null + } + }, + "97d9ded5e4694208bf4e2f74d2e024fd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "97f0016e7c7c4678af2424b7eb9130d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "97f4da3842e144dc845cf746116adaf0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e920b0e54b74ba2ad55f8ff4c6e9d40", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_500d429c704540bbb46583e0925e726f", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "97fa34c08ef6463cbfca6f64de9c685f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_53a628dde7df415a80e610f3096705c2", + "placeholder": "​", + "style": "IPY_MODEL_85c0c1258a0c417ba1b7142331ad9464", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 56.91it/s]" + } + }, + "97fdeb9eb6da4c47be755652c6f37e79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d186fc675ecf4bb5addcdb5cd9ea02c3", + "placeholder": "​", + "style": "IPY_MODEL_5dd97ad019704dd9b34bd23a8353d731", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.41it/s]" + } + }, + "9806dd3203b546c2a46a9b801ac0f5ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9808da88ef194fac8ea3f0b3a4b605a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "98179c058cd443539aef4557fcba689b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "982a6936c10545f191e14ce515b5f2a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9837d8ea5c944ce7b0915c8c80d37213": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_521c1086431848ba911e7346db9bbb7d", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e3d03bb157bc41baa58dff20f1a9dca9", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "986b48d0ef7d4f718cd258464b2fae4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "98771d1db9244ebe89ea6fff57d6b7cf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9882ad45a0694d1f8ef72b3250996d70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9889d9f934984dd690ccd9c74bbad42c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "988ed62d29fd4db4967557a121023c1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "988f07cf106643f4b6fb80ed8aa342ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e199fc7020464191bc4dd959ce5eff22", + "placeholder": "​", + "style": "IPY_MODEL_e5c9f6ac3b204bdd91a73571225e1ae6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "988fc0e04c964d5099fca9df22760e57": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d6ac8f08e2574cfdb0cddde17fbe6f5d", + "IPY_MODEL_0190ba495b614a40b14aa5a2072d5e6e", + "IPY_MODEL_77a57c6ec8b44764b6e55a581a7c2685" + ], + "layout": "IPY_MODEL_66c41e119f474b5e8d358ea875a461cd", + "tabbable": null, + "tooltip": null + } + }, + "98e80bc9946c4e05b79c02713f4b50cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f5cdf7ab4ab045659440c3e8d6e0919a", + "placeholder": "​", + "style": "IPY_MODEL_304aaec822494b469695bc91abcdb242", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "98efa56b940f4fa6b3911496536d76d5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "98fb16a0d1af45a49d3d21f634cd4ee2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "990897be1925440780b6899e1018c3ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "991969bfb4e14d1aa80584c520103786": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9919e6c1ce714daebbbf8c7ca44987ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9921cf83b1bd423bb7c024f694c931ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "992d4f2d368c498b943615c115629aad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2e2061d0595741689fbcc4d3d876419f", + "IPY_MODEL_0fabd6f4b94841269899eeb40ce9b6df", + "IPY_MODEL_aa4e97eb3cdf4d83b09042d192741ed7" + ], + "layout": "IPY_MODEL_930724cb9c2b4e328234231011c4c912", + "tabbable": null, + "tooltip": null + } + }, + "99380adceaf749cd916c7ccd5096086b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "993ec969b282457fa773024f80a25b44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2be0ce8064ba4f719f8aeed2d07a92ba", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_05ef8e809b104a59ac1d227b08576d23", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "994179ad8f7f4d65adedba46549b8b8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_165f9e7d02d74a9abd39d610bf8b49a5", + "IPY_MODEL_47a7577efeaa4c3cb7dd5e87260b2cd1", + "IPY_MODEL_2fa0c910dd964fe3a775f667f40c80a2" + ], + "layout": "IPY_MODEL_516b15859a3241f2b2d36ae05e59ac4a", + "tabbable": null, + "tooltip": null + } + }, + "9945184350a34eabbfd2dca9e151b6dd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "994b27354f59435e9293c47b1d732b78": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9967ad5ee8ee49b8a20021586191be82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "996a2ebc007d4b3cb07670f328e11bcb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "998a653059a84d2691debaf482569d3b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "999e96697e8f4e0c90e33b90fa041d91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "99bab21b28384b44803b16ab1244111c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "99baca80ad0748b797e1913f3a5aaa85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9be9dce5a39646c7b351a53976c23dee", + "placeholder": "​", + "style": "IPY_MODEL_a9ab3f35b36e403fa83e3be0d23dd370", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "99c2952d97994979bccee09e92924b2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3ca553ed754b40e4bea067716c25a414", + "placeholder": "​", + "style": "IPY_MODEL_cf9c75113b844138b50dbe30c8edde2b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 648.06it/s]" + } + }, + "99d0f16a110a4b4d88382787da4a72e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "99e0dd68193a4bdc8747b5c8376c4e4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "99ec7e76a90e4d32aa129b8a5432f9b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9bbfcd4cd2aa435f84584c7e01bf6804", + "IPY_MODEL_d15d0ccfc36747e0ac28fc4536bb78a7", + "IPY_MODEL_13aea5c58b904280818c569dace7fe24" + ], + "layout": "IPY_MODEL_f096c052f4c7488bbfa0c02fcc862f18", + "tabbable": null, + "tooltip": null + } + }, + "99ef45379c024a3c9204e37004fad7f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "99f70dea3fb34df086335f0557911306": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_428b0c4eaffc4c809e87d0b3c5caff71", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b5efe4fda84146b3bcf76ff2c9cfe56d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "99fdc4e664a549b79c7ef05b99f64099": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e9c813d85cf4557b3f8bec4720c71d5", + "placeholder": "​", + "style": "IPY_MODEL_29747db6e64646de954c14458fd8f465", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9a0001ef28754d8e802e4da5838abfd3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a027b1a438a4354b0392800cd4042f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9a07355c426f4a519088c2312a22af8c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9a387406800b4a4c91aad88c8f83506c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ebd745321b1a48e185369de08d0e7852", + "placeholder": "​", + "style": "IPY_MODEL_8c4e7c277af74a8ca432c48b6960f844", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9a40580553b6450ead41880bc68aa13a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a44ffd48aeb4463abda7231b3c018c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a56cec4ed354566905308ac15b8af3b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a6209013f2b4dbe87f78efcf3e9d4ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9a69d304e99b46ddb74b089ed6de41c4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a6f4636a752479c90e13ba4b84b0ec3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9b7d3189b84f48e4a639103d7f22b176", + "placeholder": "​", + "style": "IPY_MODEL_1cdf7cc6807140c8b7df04da6cd1c889", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 361.92it/s]" + } + }, + "9a834924ef474a63acd9000f1d396e11": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a87977cc35249c39c7668e5c1f52537": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f8682e01336041a5a3ed3e27835db672", + "placeholder": "​", + "style": "IPY_MODEL_53de004e81dd458e8c412cefc34b1d83", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9a8deb3839694672a81b37174c71972a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9a8e5425d9c34ccb9769af77133ac525": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9299f97468904efa82c53e4ad971f5c5", + "placeholder": "​", + "style": "IPY_MODEL_e351f76656494b6f9da5b081153a0397", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9a95bd76ddce48bca5695210d4487f9c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9aac4bcd4a774c1e9ab5684f01837fd6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_053695cd863f46cdb627c7da26a771ad", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_693fa9e3df954cc6a649184d74f75c9d", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "9ab7d7b564314f81b4ab325ba7f81c41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9abd459711d5445a9634d5d52c0cb1bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2cb2eba2bd854e0895430d4a471b1aed", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9c6c076dda3d4b309100327e3f7833d1", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9abda2a572cc4cb0b63afeefd69e0ab4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2d1d023a077f41eeaf9cb46123cc43e9", + "placeholder": "​", + "style": "IPY_MODEL_7745c9d26c6e41b78b1a2efb916d78e0", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 680.52it/s]" + } + }, + "9ad37e201cec4a2fa8843df3020c3b25": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9ade98837b544a32b8ca1b1aa43c66f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f218cad597484a43b3722cc5c20eafb3", + "placeholder": "​", + "style": "IPY_MODEL_bdead6e52f8644889dc25d1546318c11", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9ae21d72eb6e46c8b1eb72ebd8863eae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8eb9a3a4d098437682aa659f89f0fec7", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_cc6d61579aa74bfdac230e5d8ac86873", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "9ae528f880024ef985bcaff3fe0a97c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2b08e549af5e42488109e087e2c860a4", + "placeholder": "​", + "style": "IPY_MODEL_539c1487c9bc4395bac17bc3f32963d8", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 660.72it/s]" + } + }, + "9afa012856d8462886a75e952b3d7617": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9afa325a53b74be69b10cde4127597eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9afb731d4546448cbda176990e25424c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_22aa4684b05e40258b880d71532f62c7", + "IPY_MODEL_7b87db80404d400bbf9f810ea0e2b230", + "IPY_MODEL_91c0f28d129b41279f05a21792bda2aa" + ], + "layout": "IPY_MODEL_6da6364feb2d470587cb46285b6a6e8e", + "tabbable": null, + "tooltip": null + } + }, + "9b06880c59d943d4a36b01cce1689421": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9b09c4eeb1a34566b2877bb8ae4569ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9b19da1bc3404928a5e1721f1b8fceb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9b2322aa11c646789fa2fe42e401f0ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b49ac5fd4fe47adad448ad25cfb99b9", + "placeholder": "​", + "style": "IPY_MODEL_0de4d14856db46f1a2bbb7776f579642", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9b2ba4666cd342359f63ead31d7f3015": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9b385dc054cf4f3ab1328d736c480e6a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9b4fed2faf644c4fb2079113f4432c7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9b55e6ee243d4823bd15fb8f2f495158": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8b6ecdec4eab40e8af27def88a3dcff2", + "IPY_MODEL_9ccee6ccf5054eca8825814309417ccb", + "IPY_MODEL_3f9751192b1645aaaf47aaaf74e93c6a" + ], + "layout": "IPY_MODEL_bfe0af1ed6b74c298c3b49dea92b102c", + "tabbable": null, + "tooltip": null + } + }, + "9b589fb2881845a69302424b95f49107": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9b59ad88149944a98d4cfc21311092b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9b786b6275fd4693b006ef6e529e3227": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_236bdbc3df0843e5a01d4830bb2a87bd", + "IPY_MODEL_724048b0650f469a838513f1c615d7a7", + "IPY_MODEL_2a0525e91de5458aa28368a3708f0fd8" + ], + "layout": "IPY_MODEL_b85cf4844da14d61bbff60318cee4f00", + "tabbable": null, + "tooltip": null + } + }, + "9b78bc184e804622a695ba661d6a4e70": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9b79941ecf2d47629bb468627f87304d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_25b295fe1be94da683ea503ad73e0dd4", + "IPY_MODEL_d6c7251555ba4f98ad500e7e88cc1f9c", + "IPY_MODEL_06f7fe8de4404606a09f54bd4c143c03" + ], + "layout": "IPY_MODEL_7a55727eea3b4830be91dd5f70dd74d9", + "tabbable": null, + "tooltip": null + } + }, + "9b7d3189b84f48e4a639103d7f22b176": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9b856f4dbe2d402996e8e58f4e67d5c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9b8f0f2dac2d41659b09f231f590c5be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9bb7f1501a604b34a1582a3d82d1adcb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9bbd36213ef445618c259309ab109577": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_653dfd397781466b83f8126804ccecdb", + "IPY_MODEL_81d915aff22b4bcbbdbdb42defae3c7d", + "IPY_MODEL_504685447b9e459c95c3e424d77b48e2" + ], + "layout": "IPY_MODEL_5bc9ad46b1294e5aa9f6c63edff166b9", + "tabbable": null, + "tooltip": null + } + }, + "9bbfcd4cd2aa435f84584c7e01bf6804": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f5076d7ee6c74c2986894a18d9c6c74d", + "placeholder": "​", + "style": "IPY_MODEL_2cb79f4b60f246eaaedd528f3a421b17", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9be6d5c8b6914b6984dee209a2f8053d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9be9dce5a39646c7b351a53976c23dee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9bea44cb17b94218bce2249df35109b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_83b38bf197334be2ad3a46a50665f558", + "placeholder": "​", + "style": "IPY_MODEL_fe07eed9c63e4ad4a5ff46976870b27d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 345.09it/s]" + } + }, + "9bec18d959e04b09a24e45eb4358a781": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f54f5c77b85e4243b0ed731ad47e4bdc", + "IPY_MODEL_c20d163d4b834acd8533d74ced60bd3b", + "IPY_MODEL_f0e639787d95482e802a824452985fd2" + ], + "layout": "IPY_MODEL_6704e547a43b4dfa8c2e57175e157fe9", + "tabbable": null, + "tooltip": null + } + }, + "9bf2cb4ac582498f8acc35b4ed56d247": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9bfc6faa9dd2427ab62948295b964e58": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c0393744dfe41b0a557a14f7557b40e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c0e248b1f424ec8ab63da974ca8a7de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c1bc28aacb24776afd5f83c06fc5c57": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9c21769b8ed749c8b8fefbd68df8a704": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9c2f0c66a10240858004ce738e40e952": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c422e114a80450189a8589239938563": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_971468003aea4df09dbdf1bc7de1064b", + "placeholder": "​", + "style": "IPY_MODEL_24cfe1c3470e4fcf90dc6978540aa3a8", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 211.09it/s]" + } + }, + "9c4a1d8390164caebf438541cba5e18d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9c51d40a9029438cb653172843fe718d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c52428b3fb34eb3b81cb1214dbf6942": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9c69a1ab19434faeacaa914e2bc62682": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9c6c076dda3d4b309100327e3f7833d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9c6cb02d4df847beb15792409950d090": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_81f02f6e9d24414682c204e262edd088", + "placeholder": "​", + "style": "IPY_MODEL_f30172ce5a3049edaa6bfacbb695b609", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 386.53it/s]" + } + }, + "9c7282467b974b44ae45d9a160e52ff4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9c8e38ec75f84cdd993199c5ae144917": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9ca6d64566b44c61a6ffd091cd365d9a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9cc797d7c4bc4d6ba6ea2cfdf6924dfc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9ccdb189187b4b05843a0d80db52d2ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9ccee6ccf5054eca8825814309417ccb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1ac2b630376c4051b7d7c4caee5b3936", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d0be1e0550d6400ea69c27776521ae16", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9cd7ed789c274190b932871ba77629a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9cddd75fd6db48d1901a6724a3ae7d8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9ce87caa08154de1a2beac2932019d36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f39bac6be648498bbdd098fab9238234", + "placeholder": "​", + "style": "IPY_MODEL_44bded4e2c00425fbba9de5d5c58a53e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9cee08bd92474d45a030b024625ecedc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_89ed47253ac64bf681ef0f889e2dcd6a", + "placeholder": "​", + "style": "IPY_MODEL_9d459e7600f94aa983375e1465744e8c", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 628.94it/s]" + } + }, + "9cf4ccefeef14521a3c5ccd7c185e8c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9cf52979771942b5aaf9124d8af894b8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9cf55c11573c49fa964f79035a5d3c0d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a2548cfa3b1e4bbbb9ec6ebc1c78020a", + "IPY_MODEL_f70b56504a1a45e3b9555cc9a1177b5d", + "IPY_MODEL_2bb7a75217b24ee691bbf1120835cd16" + ], + "layout": "IPY_MODEL_93a4ecb73820401dbf53641e7ba0af03", + "tabbable": null, + "tooltip": null + } + }, + "9cf70571404548f2bded23d9d31e3a32": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9cfd3eb40a3c46dd9d4d3a438a3e4d5a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9d0f1ebf22804049b7aee6c7e3b6730b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5bf51e9034ca4226a5d6a912d5e712c2", + "placeholder": "​", + "style": "IPY_MODEL_7768322b7c13455a848a232da1b002ba", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 650.08it/s]" + } + }, + "9d35152f54154e5fa489f2ed936841f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9d3676877707430a86aa435e5e28116b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9d459e7600f94aa983375e1465744e8c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9d4a053ce1ee4dd695fcc7ba46f924ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_85b0611c679b496f95b3a35f6b259031", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d329f8515150434e9848c0f475c2527f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9d5d2b88b5ee4b8d8ca4ef07c4379492": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9d5dc07d260646458832c18505726055": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9dc62af062ec415b977eb41055069e8a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7fe1c55e1fc44c49be4bee4f341617dc", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9d5e82c594254c168d7f3bead46759e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5505ffe9104c4ce58adffb9df12bfc5b", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_377f295f56cc498486eea0485def0434", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "9d6b3bbfc9d940369660b3a6a1aac42f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a69d47ce28a748649b5061a9a021152d", + "placeholder": "​", + "style": "IPY_MODEL_0c1e2c96410d4f86a8c41334ac5d52ab", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "9d7e37ac55c94ac58d6ba1335f11139a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9d92518546a942ddb9839b073146f570": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4835dcef41a4408fab07a0c914fc63e0", + "placeholder": "​", + "style": "IPY_MODEL_75fc0647d3db42f08a69184906e77645", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "9dc225ecc72a4195b522fde9645463e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a2ed2fd32fa54ebe9a256a0c5a7d1a97", + "placeholder": "​", + "style": "IPY_MODEL_352556f7e89a436db929862ca7c0f3c3", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.83it/s]" + } + }, + "9dc62af062ec415b977eb41055069e8a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9dca045f487f46b1bb3b0b249b5323a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9df7fe2c31254c11a45100b849f0e7ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9e2154d74b6e4f6b8785c8ddd3054021": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9e4f9e1975ed41cbbd56412d736050c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9e5598bd57f1454d829b5d350c2a5ab3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9e5eaffde5704b27b5afd6802fd6f630": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9e8488285d384857a517bc86352ac500": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3d51167ce8bd42729c7e24dac3e1e7ac", + "placeholder": "​", + "style": "IPY_MODEL_083df138646841a8829a90310a7474ab", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 643.48it/s]" + } + }, + "9e9542ec0f574021a57d0989445d7d41": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9eb24e255c134925b32630e8b04fdb06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9ebb07d18f864fef8b0c10dbe31e8cab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9ecafd5f12a24ee79aced2d4acd77878": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "9ed1badd6c7f42458216610a2bd88f1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_131c47feba5d46a48678bb7e3773fa7a", + "IPY_MODEL_4a2eda2634d342b5b0da46691a51eb55", + "IPY_MODEL_cfb68a4be426438da496abe155c4a36d" + ], + "layout": "IPY_MODEL_8a5bd5a310d14df195c2504717931dc3", + "tabbable": null, + "tooltip": null + } + }, + "9ed1beb7107f46e096a98b37b76b2f05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9ef5b02f482344818b2aeb04cc8ff5bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7368a331021c44d9b285ab4ceb653055", + "IPY_MODEL_7c660bd7fdf04aa8a07c17972ad64792", + "IPY_MODEL_4be60b7a6eaa4ccab1cc91fedcd794ab" + ], + "layout": "IPY_MODEL_0a1afbddc1204cd8ab8f12cf0c40f808", + "tabbable": null, + "tooltip": null + } + }, + "9efb554f3f804a76aa8ae59c24948610": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9f208c90d4d8413f98f9dd92860da3b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9f2730c2b5e44a1d85b561077a3fd7ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9f2ab6d805ef4f0db52ee13ef1f5b660": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9f304c4d197c44de87c946e97edc2caf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9f38e4f1c730475c8f980bd3ce850cec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_53a4560e74414f34a52d2abfc0a11814", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5c0e2af52af949dbb288bc26e00fc51c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "9f54266df6d043b495ba2c462a76dcce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9f6a516f227c44dbabb6b83840631904": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "9f6c9862294443028e21c09f1f77497c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "9f72d63a582d46cba672ce7d54f1eaf3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_090579a1138441cf9380fe3b4c79ab3d", + "placeholder": "​", + "style": "IPY_MODEL_555549164f3d48159eb2b8e268cc3c5e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 368.89it/s]" + } + }, + "9f78a6ecaf2f432d85e009e93d837cb6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9fa4d2f43a9c44fea2698e66f51685d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9fb3278ad45b4033bfb02dabedd67b0d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6961319db5fe4f3e828eb415983b2d35", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_88dbac07129744c4b638cc5f542af8c9", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "9fc7df71910d4ca9aa58e2b918fb53a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9fd2a98ebe8c40e5b260a1c7e0a30284": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9fdf19ac27b145209736e8c9f182d9ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d97b27f404ad412c89c6320564592d1e", + "IPY_MODEL_b90046e7f37245249d9b2493251f8ea9", + "IPY_MODEL_1832a09a7d804b549f345384c9d5c86c" + ], + "layout": "IPY_MODEL_eb99744932fd4fb88669e37ac0c6f396", + "tabbable": null, + "tooltip": null + } + }, + "9fe269a3343142f281315dc02ff9d93d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "9ffa5b62a4a749c89339b78ac4d7d1dd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_79539942f00e445c8b2402ed33fce6cd", + "placeholder": "​", + "style": "IPY_MODEL_a233443ac0184296982a9ea7867363c4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a029ffce164e49899c4fb733f9f5cd85": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a03e1ccb14a54e49a7c568101326182b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_20c4d398b6b943dead1b94f4edb7fb84", + "placeholder": "​", + "style": "IPY_MODEL_b9da41ff441043a8acfe22650edc7caf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a08b9a921d324de08930084cc4f21b52": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_76a692be26214c24b591b0ab36ad5d92", + "placeholder": "​", + "style": "IPY_MODEL_83f684988cdd46a3af1df9b30c0c1b71", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 586.58it/s]" + } + }, + "a0a85393bae949fbb7b87cb16dbe7eff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a0b3a96f81cb41be8bab427137a03f66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a12cb53f2cc14211ab3c12fd13a94f46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e623ba596aea453d9ee5b175c52143d8", + "IPY_MODEL_541ed156a8d34bd7b8b3f979d1cb72f0", + "IPY_MODEL_62ff541279024e5f9545a872599117a4" + ], + "layout": "IPY_MODEL_89a5b546a8464fe285f3c6884f8c0d7d", + "tabbable": null, + "tooltip": null + } + }, + "a14bba0f91af45208971a091910657c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a159dc5af814469c9352417d347087c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a1787e3e0a0f4fb3a80edc7e74d39372": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a186a3b43463441192777de830649b28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7327843c1e5149aaab1d2c48a44fa07d", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_686f9b9595ef44dba0050385e3aacb4f", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "a18943a7492d499c97ef63135f78dace": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a1aba637fd4e4c568215c028f45bbb80": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a1c7810cabe64d17bc172b57db7ec331": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_08c556ce8400431593011a6d32aef294", + "IPY_MODEL_ec2840d714574384a0a30125f14911c2", + "IPY_MODEL_9761a2e94cde483c850ba4f37d478f60" + ], + "layout": "IPY_MODEL_b2eea72852084b428fa0ff50ad736cc4", + "tabbable": null, + "tooltip": null + } + }, + "a1ce542c9f284ebdbd259095bec50ed9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a1d699f0de234af598c2cd2640aded99": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a1dc547a5e09463a8cf7783eb2bb0a29": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a1e8cbd73e79422dac8e0c158be31387": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9be6d5c8b6914b6984dee209a2f8053d", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_17a7adebae4845888e50ceeadfef620b", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "a1ed4b37d0dd4af988ece7721a74c72a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fed5c7a6d1944e1482a8088c0ee2c0f8", + "placeholder": "​", + "style": "IPY_MODEL_5f6a573de80b492ea75eb3028296a42c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a1f70bee955f4b82ac4407c5568f614f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a1f745e6e47c487b9b019f65deab8f6b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a1fadf70963a4b13b4c2ada1baa4de41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a200360cdf0144d680b132b74d0095db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a20cfab312704064a5145dbca4bb413d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a219b22e0c914c0da3b9c9fe481994a4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a231112e104c43e9a04ce30571dbb5f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_307f86b78b754dc9a28dfa12b906077c", + "placeholder": "​", + "style": "IPY_MODEL_db0738efcb7c48fe8b73aedad5ac676c", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 63.35it/s]" + } + }, + "a2327cdc5b6541e5b5972ce6b3fc7878": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_697fa30f6aa14e25bf423b4857079b88", + "placeholder": "​", + "style": "IPY_MODEL_002d409ab4574147a4d5ecf7c4821eb2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 374.90it/s]" + } + }, + "a233443ac0184296982a9ea7867363c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a23f8791d5084c9b9c858d3b0b4bdb52": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2457948d06846b08add500fb15b67f4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3eac3d4e54b84940a867dafeb3ad74c7", + "placeholder": "​", + "style": "IPY_MODEL_89afb132082742c1abe0ee7cbffa4e65", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.41it/s]" + } + }, + "a24c5e111ba745069f18185947eac3bf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2548cfa3b1e4bbbb9ec6ebc1c78020a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0b4f4a644e74c3ab5d2d8dfd5b142f1", + "placeholder": "​", + "style": "IPY_MODEL_0f1c35d659504133be0b1062f1e0bac1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a25d4e90cbac4e3c911083c5dbf58d5e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a26967c391fe45dfa7f03b160ef8a72e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ffb6a4df9d0b471e9a57dcbbdf146418", + "placeholder": "​", + "style": "IPY_MODEL_5988cdf322b140b18f737a4cf2669c5d", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 786.19it/s]" + } + }, + "a271966e4059418b82fae43530154e54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bae4aba7341c4ae0a96fdb27e3f5e432", + "placeholder": "​", + "style": "IPY_MODEL_28a1b558d649449da6850386d4165ebf", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 366.57it/s]" + } + }, + "a27211d050d742dda389aaaa17816a49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_eddbe79377d1419389872c97b17e71d0", + "IPY_MODEL_f26e2af746864f9b96c4a7127086f6e9", + "IPY_MODEL_428724a11c7c4048a259ce330f9da23d" + ], + "layout": "IPY_MODEL_3aed64ad68c542d5a0147669c646d282", + "tabbable": null, + "tooltip": null + } + }, + "a275ce05c0244392a2b5bfeb4c529b7d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a27b15198b1f4f1791ee2d2fe0a3bde0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a286d82e7e0c468a832fe291f631df7e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_978b53f85e10445e8a9729896379ba1c", + "placeholder": "​", + "style": "IPY_MODEL_341c14db8d004545b47be4fc8add03f6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a29bb132392242169e04c9670b470295": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a2a96073de3f4a879e8f66508ed0e404": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2b4727365774b848b49ae4c6e8740dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a2bccd61d8784428b90b88baac30f35b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a2c2345ed10d451bb379a3a62f9e9306": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a2c9a478985d4896924517f8a085d9c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2ed2fd32fa54ebe9a256a0c5a7d1a97": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2f6bc0bdeb841bdaed937440cd81554": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2f97fa7cf6945b5abeb08034a15d06e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a2fa75aba0904adb8b31f55e5949b706": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a2ffdbb5ca1b4a47bef78db82eafd600": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e0eef81df4c24d9b95c0732c6bbc0804", + "placeholder": "​", + "style": "IPY_MODEL_650188d2e1cb4998ae8767eda8954790", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a30605f251eb461aa1885f034d2c03b3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a30d3d1b1791428990f7ccd09807b7d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d395b0d6d67f4178a28f0861a13de983", + "placeholder": "​", + "style": "IPY_MODEL_7927ba8cbc514263bd7e2e4742af0329", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a3143d5c4aa14fde9ff82c1f74fe0db4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a315aea742b74494a9679ffdbe6867a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_98771d1db9244ebe89ea6fff57d6b7cf", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_42f4224e063546fe84acb7c321f726ac", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "a31e964b58f84c3081951acc263b58f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_63ce160168e643daaa2fb477449c5ab4", + "placeholder": "​", + "style": "IPY_MODEL_971606edf1294f17a56feef43d73bbad", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a31ec7735ddc4a3488fedee6465d76ac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3282157e73a4b6ba710cd530f2911e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c92e24411ed940b68fcca665abb041d2", + "IPY_MODEL_f8fe37b7c499432293a3eb05fd41c3e5", + "IPY_MODEL_319ff470386d456a98f4c3ae65aa6607" + ], + "layout": "IPY_MODEL_151749764b424b2e89e895c563edeb60", + "tabbable": null, + "tooltip": null + } + }, + "a337450adb6647aba34e740e6307348f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a337490519084d71a8d999a9ac63fcff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a3394aa1595f4a7fb157b59eda355100": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a342f266863040f19dc17113909dbbf1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3480cc440f84450987b0f961ef4be35": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d293560680664989ac767bb6a2bed67d", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_990897be1925440780b6899e1018c3ce", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "a34a5f8890444fa0829e7d3947eddebd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a35d0251e0dd4c718c27e0e6f8b9e7f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a366613bbed148f99faf7c3048fd5342": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_96dabccc978742bbb94a518d84079254", + "IPY_MODEL_97f4da3842e144dc845cf746116adaf0", + "IPY_MODEL_29134a23238e424791efa93e35afec13" + ], + "layout": "IPY_MODEL_53ef373e81544c779813562162f1269d", + "tabbable": null, + "tooltip": null + } + }, + "a3673c5d56484e15bb009aa6c026f031": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_22108d2ebb50433f900b11531b1c23ee", + "placeholder": "​", + "style": "IPY_MODEL_f9121ca10cff4f0f80ffd517c0df531c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a36eea4422a64af9aebb1b556d3963cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a8bcc973ac8d40419e91ffcbb9aacea5", + "placeholder": "​", + "style": "IPY_MODEL_3577a4fecaf344b992fcc1cf4bdf6166", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 395.60it/s]" + } + }, + "a39178886d21497782a847803d43812a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a39dd1cfac8d4e0f9efd388db7753f77": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a39dede796b0439c8de3ee68cb97be01": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3a8f39a0a67453aa7416e17d87815af": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a3bfe28b07f84600b01c9cc3c787a534": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8728c72146b74e758a2b52fa3abbcd46", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d6bc373c33be40279db09286ce743fc1", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a3c3bad58d8b4649b859300c2ea1e473": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a3d25b360b36418490d40b7837d80433": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3d29a2c476d4760ae1f4119e6fcfddf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3d2c47ac87d4f008b6f9d749ba4faba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_43500552aa41429fb562176536505f17", + "placeholder": "​", + "style": "IPY_MODEL_9fe269a3343142f281315dc02ff9d93d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 645.76it/s]" + } + }, + "a3e7f7e5363c4d0ba99b74dc7db30bd0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3f022aef68f41df9407cb6836470e6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a3f11c6fc79343c684693ed2eefb7ad7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5d319b62e22247a89e56a8f5135e3aa6", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_183f441a68a241aaba40f622ab647fcf", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "a3feecfcb9a74aee82558412cce147f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a418de3038fd4093a2b83e9b8513a322": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a41fd94e8c5d43b5a25ac10db3c661cb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a42245640a1e4357b832779fe90f0dbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ab937d124b74cc1a61036c8cd4417cc", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d1d13a15103344519712e952b8b07216", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "a426da4b528645fbafce9a9d5a3e5a7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a42ee57f445f484f944b8e766236e30e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a43220bd6b3d4fecbe72d6611433b186": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a4523f2ba08d4856bd3378afe29c8da0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_422b29f40ad241c5ab10151feb939710", + "placeholder": "​", + "style": "IPY_MODEL_83cc56760acb46df83ef9f99f684b37a", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 190.85it/s]" + } + }, + "a454ddc03d664fedbfda55f1e0e0c5d3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a45653c82700405a9bf8ea1eae312712": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a45d0b1c30d4465695c75f0017acd9f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6d5b500d25ae42529a157dd37dd8625b", + "placeholder": "​", + "style": "IPY_MODEL_bcd704697cba49ab854d4945518a858b", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 406.01it/s]" + } + }, + "a467fc01c5214541a246b0a91b46eac2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a473cc7828b34fb7b3f3d0e8c74e9694": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a481965f528c44d1aaa3d04f2f60e453": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a482296d2a28462bb677ea7f71be5496": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a4823d045974499e9f037311e226adfd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a4b8e6c12ff24962aea0bcf714baa0d5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a4dfea96a8b74c658c16f180a1243dfd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a4e17276e48843088c576654c0f3e099": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a4ecf1b1582344fb97082ca6263989fa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a4fcf406a3cd45f5a88c5909c94ce76a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a4fd9712a8324365b8f2a017c818eca7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a4feb9c1a2cb4eb0955de81bcb5e22fa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a504b81b5cb24355a5d77b50485964a5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a51b96dc6d4749428f0c8527af80c883": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a51eebd928794b76a9f1774a7185c3df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a52052251efe4048ba49d8da52f778f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a523685911d5430a92d3c571fd86422c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a52d86b0480e4bebb0ff7b3539645b54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a5355de9067447fcbf7b0d661224a693": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d1f2b3240c5d46be8dd1720fd690cf14", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1425bf0ac9f34c8a9b8857d7e920a481", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a56251e1854343e7afc9b17738ff84f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a5651d6107914f21bc97a9fd2c20b000": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_62692e48e35e43a4b1223d360bd464d7", + "IPY_MODEL_d48a5852e2bf421db0de7c155481f5bf", + "IPY_MODEL_5b035e7352e1483a9ecbd0d168a75a14" + ], + "layout": "IPY_MODEL_b8ffec423f94468db0ffb1f2662e1f40", + "tabbable": null, + "tooltip": null + } + }, + "a5856937296c45d4b8ff15c4f3d6ba18": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a58a5a6ec50a422da57a3aa029ac5c8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e7932843ea2c4f18bdd7e9dae188804d", + "placeholder": "​", + "style": "IPY_MODEL_bfa71fe0b9aa498e9fee6a685a14423d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a5939de5d6e2412bba3a5378ff52098f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b517b41522614b3e9b69031cba498e2c", + "IPY_MODEL_7337c8f1883345af9d92fa0c4dafc3c9", + "IPY_MODEL_3ac48deef2464b45a4fffb3f977ec115" + ], + "layout": "IPY_MODEL_39bd084a1324483ea682811fc312319a", + "tabbable": null, + "tooltip": null + } + }, + "a596f3b3d4ec46dfb81d4185875ab9b1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a59887249a0743d2bcb0fecc89664028": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a5a0c3ecece44b5db7f7e2ae7648fd81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a5a824ce0d284a69a3bc408e98f22810": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fade449c16e9445899274ed090126adf", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c1d286d51e5c449eb8d0969b804052bd", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a5a89038f0ab4e10927891716e14b30a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a5aa4097399b458f9ec3627dc37750de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a5cc28d7f6644102bce2d4ed5c5c5e37": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f37d4468e22c401193a52bc30a02463d", + "placeholder": "​", + "style": "IPY_MODEL_e0c743c89fed40a29dc3c2cc03762072", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 655.33it/s]" + } + }, + "a5e510bd37fd4833bb1ef80798fa7443": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23495cb5c66e4c3389b71c6d90ea48b1", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_701d650d739f4868bf7b7c4b5827a380", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "a5e6ece39c674a17819f8252a1e60b4b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a5f9b08c85d349798c4bedd1db6c9dff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a605f64506ce4c7fad0d36413eb98f21": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5918272943e04f0fa713c2dae9a8dc61", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c44a6bba01d6481e8d3b444b0f698b28", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "a606f403b79749f2810204bb85ef2de9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a643ba42d0a642d4935b7b0db7afc6cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6b6969fd1dac4e1f8d4b5f2d89de2ed5", + "placeholder": "​", + "style": "IPY_MODEL_e4f5e8a1351c45c694065febf78dff75", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 459.73it/s]" + } + }, + "a654c1113f08483b812944094977a640": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6a310cfeb17b4014bce21c95e41713d4", + "IPY_MODEL_a932897944a54cb48d221f2a495a8bcd", + "IPY_MODEL_b9209e2e400c4087b3f6cdf8a9e7e58f" + ], + "layout": "IPY_MODEL_a7872a73934143b3ad680033c6a94ebe", + "tabbable": null, + "tooltip": null + } + }, + "a65728c4b9754bf2b5393b0d26f45da2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a6657c6b81734c2d8c8e4df868b66370": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a69d47ce28a748649b5061a9a021152d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a6a6db1e4d2e456e81f6f171c5346a34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a6b06fd536944ae3971183f35ba1e45a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_314da7cc950f43828e975c0cffd4a1f9", + "IPY_MODEL_8c13d6b97385488287b26a996f0efb5e", + "IPY_MODEL_d063eabe46c2469c9f255a26bd7cdc83" + ], + "layout": "IPY_MODEL_b76194c44f644e5d94bcac1f313664eb", + "tabbable": null, + "tooltip": null + } + }, + "a6b0a1f7896c4e25971e01d765945b3d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a6c6967c9f7b4beb9efc2889ec3f7dc4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a6cc0113d1d5449d825723c9f8bf16c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a6d1046790264d589d448358f4b13f33": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a707e3a4127c4ff9957b6bf115d7eb83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a70977397358425283ca17218c586db3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a70f70c509d24819a9a7f7d415034d9a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a71cf5c71bc744069977a7c0c055fc8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bf569a9beb5b4ef299e0f9e2e5f1e398", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c368af5693cd4a25b26d29a623f51e7b", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "a72c6d6b58844fd4b6d3691ffae14193": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_010a133e8eef45928d59947428063af8", + "placeholder": "​", + "style": "IPY_MODEL_95258fbd51964b9bb39c4df15ae9a61a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a736a7b411c84d9bb41c23f27ec02f9c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a74e862dfa64467ca538e1decb34ebd6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5e10d3945f244e8eb84fd2835e7d6f8d", + "IPY_MODEL_01bfcbcb281448c490267b0366aba276", + "IPY_MODEL_3de71c0b6af9485b9818edd381766dc9" + ], + "layout": "IPY_MODEL_2f9da29241ac49bb968f64a6d062c3b7", + "tabbable": null, + "tooltip": null + } + }, + "a7548242cbe240cca8a7f6487fb7da6e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a77b23a9db3f4edc91b544eba2f6696a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a7872a73934143b3ad680033c6a94ebe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a79b69b7151b45fe8351a83948675d9a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a7a4cf620c554b0cbcc8439d0d1d1b55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5784b6701cf5488f812c0e432bc14a6d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_95523e1a33e74553aa901ca6504da630", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a7c281bdfa6d4261b4d1ca5b0fedc8f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_583daabaa752488e863b1eb2a2268447", + "placeholder": "​", + "style": "IPY_MODEL_53908757eaeb4004bfeeefa49960c956", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 543.55it/s]" + } + }, + "a7c8743ba9174bc8a6df2d85b17fc221": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a80df43bcaaf4af2ae0cc1a180f6ba67": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a81edbde7fa6478fa0de18920a9318ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a8290f801571431f990f63ec21acee9c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5dfc59984ec949768855dc1a10017cf8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f115a7754fad450a9d3e3d08605b53e7", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a82f5d0972a04aac900cc7dc1fc805f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f2cca77b619d4841b43873cae2c4fe07", + "placeholder": "​", + "style": "IPY_MODEL_c5bdfa6cc30b41b79995fef2b9c451fb", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 459.34it/s]" + } + }, + "a834bea8acdf45a1a0c40a43711db50b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a839eca31aeb4b8ea74fe121ea8b3618": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a867c1a31814435b985a017541c07a85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_79aeb8bdcafe406da6c6f7b7b2d3361a", + "IPY_MODEL_d4e9adca14b74e94818496e333aeff6d", + "IPY_MODEL_6328a31ec6ef4805864798a512d968ff" + ], + "layout": "IPY_MODEL_72b7eee360f64b0fae6db637fcf50ffb", + "tabbable": null, + "tooltip": null + } + }, + "a86f93dfbb57426bbc945995748d77a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_439acbae5ee14efe8d02f2be683f0fd8", + "IPY_MODEL_2b4c444109a94b6b93655aa3ae5183a8", + "IPY_MODEL_731353ba2161487aa00275caadfad2e8" + ], + "layout": "IPY_MODEL_810ee5c3af124328ac9f9731add97f47", + "tabbable": null, + "tooltip": null + } + }, + "a87b8c03c368440f9816fa9237dbbf70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_23ea4fdfed3746dfa0b8c900579b9111", + "IPY_MODEL_80af4790517d49b9af3a2409c05d0dbc", + "IPY_MODEL_5ce0fad028994b939195d47b9f228d59" + ], + "layout": "IPY_MODEL_f0e6d6d30d37475781faf7dd660fee95", + "tabbable": null, + "tooltip": null + } + }, + "a89adb3d7f66475ba204b24e413f3860": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "a8a0b0980f9042c6805364cb1215fcd0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a8a936263c0145fa802e51cf0b56db79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a8afd4c8139d4f1a85e6755b2e1bfab2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "a8bcc973ac8d40419e91ffcbb9aacea5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a8cb1f96de584dd0b60a3654d6498122": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a8e516128e7f4a2fa36f75b561fc9c31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a906d1b808dc4540b01d95b91b899478": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4dcfb615df3946eeabb1b89c9d0efec3", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_afad29d453c942d181e54e5c741391f9", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "a92595d28e0d4fb78aa4cadfc569d9aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a932897944a54cb48d221f2a495a8bcd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9b385dc054cf4f3ab1328d736c480e6a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c91f3c9c30864cac837aeadca741c8f3", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "a9434f6e114c4c1b87f112fdf7a8c001": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a95557e8216645f3a2615e3dcc9566e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a95766d79c6347d380f7d643d1217eeb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f7ff943b931945a39f061a42afe008e4", + "placeholder": "​", + "style": "IPY_MODEL_32000f4216df4e5195d6beffd52e6dca", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a9617d7dab534d978675473d8dc3a6b8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a963d77e4c2a4011926f05879dc5687b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a96a00848cd74aefa77785edf81f7f34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a9765ddd254e491aa6a62916d97299ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_76b33e9bef414293bb704b7740bc25eb", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7a585386006a4c878ea3130b20f64828", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "a9778179731a4b1f88c81feda8dcfcc4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_061eb20317fb42fa971246c2532590f4", + "IPY_MODEL_fbcaf1faa29f43febdc91c34c0eec0d3", + "IPY_MODEL_f7d3ba847da04916bfb7c8505e724a47" + ], + "layout": "IPY_MODEL_45870bea097c4613aeda68137b48369d", + "tabbable": null, + "tooltip": null + } + }, + "a98fc2e64cd64e9f970bd4d8954580cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a9aa89154bb94a6e9693d31e04060bd9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a9ab3f35b36e403fa83e3be0d23dd370": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a9b4a675fce54a0991d78118057fd620": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3043accb177b4c64acb4e80e674875d6", + "placeholder": "​", + "style": "IPY_MODEL_f7b0e36dd4d74dbeb15e626fe027a3e0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a9b67cc7d06f4ab0a5a5be19fb28f0c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4e28e1ded7d4032bd0caf0e7b39582a", + "placeholder": "​", + "style": "IPY_MODEL_103c9caf34bf48afa2428bde4d7d8b5b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a9d8b602d52f4ece99e069ebe1bc1982": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cab7ecd5a7e04db390f3beb2ecb243f8", + "placeholder": "​", + "style": "IPY_MODEL_93d8867dc32a4846b1ec0cf15b802bdb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a9dfaedb3a404095bf84109a2fb581cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9c4a1d8390164caebf438541cba5e18d", + "placeholder": "​", + "style": "IPY_MODEL_d55dfe39da384f0d9834e3f88edaabf2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "a9faba5b4092402e935339d98576245a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a9fda081af3244dfb0e22f7dc14343c9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa16362bb4fa484aa4aac42d2dd80e42": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b7cb4c7951314b198c360a084ebd5e75", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c37dd5ddcbb148549664f3c7b062ce12", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "aa27f250c9f24f06af8625c6e410cd68": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa282654bee14462bb66e10cac8fca14": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aa3409a399d24090b361811acb73c4d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa3e2889c66649bd99ba94c6c2264399": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aa4c3560a21e4b56a83ea4d6d3584a9f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa4e97eb3cdf4d83b09042d192741ed7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9921cf83b1bd423bb7c024f694c931ab", + "placeholder": "​", + "style": "IPY_MODEL_9574d36044fb4e19acfffb93318a009c", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 396.57it/s]" + } + }, + "aa5a368d3255452592ea1b4c28079ee4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa637aa90a644cce9f28c4707a491c7f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "aa821af94028426c9c6923054a0d7318": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aa9e8694b33e4dab8060d5cc2a872124": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aaad6e2fd6ff44aa9e7842830f2c31c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_12b1d8ed5cb84477ade0220d7469be08", + "IPY_MODEL_32c75ab5751240f6b87d1e95471a1afb", + "IPY_MODEL_0c6c13116e6d4713ab821a850eb1c81f" + ], + "layout": "IPY_MODEL_f4aa8af217434117a57e8e73172b3b9a", + "tabbable": null, + "tooltip": null + } + }, + "aaba8364457348d9beb8fa4d122461e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aac006f980ec4cb5b9b4f105601c7bb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aac282150cbe4ee2ab2262a1e6236a49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55bcc2fb04c1438598f1960446cd50f3", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f78e18529267445584d191dee796d945", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "aad962597bf54f3fb8adf68ac0caf1a3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "aaeb043e6a7d4890a56b1cdb71b7cad2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ab01bdbc450a426b8766f783bb71eb17": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1dc1fada227343c5a2238475e5720a4b", + "IPY_MODEL_9fb3278ad45b4033bfb02dabedd67b0d", + "IPY_MODEL_039b73683a1c48e8a22b22f151460c2c" + ], + "layout": "IPY_MODEL_1cdce3511c7e45c6bff15c3e8196e1ee", + "tabbable": null, + "tooltip": null + } + }, + "ab0715c2a7f1471880888a605ab86282": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0402131cc26c4c8fb4bb39c6fbe89e64", + "IPY_MODEL_d7c86ab152d04d3b89350b871e4707ba", + "IPY_MODEL_06725d04c6b14139bb012327ed357d8d" + ], + "layout": "IPY_MODEL_8519d16d04a64731b3c2a833e6a116eb", + "tabbable": null, + "tooltip": null + } + }, + "ab208f586567496f8a77615908235ea6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ab20df6a83a04e93a8818d2e0faf0aef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_916061d6a23d437a8cc97b77d87e6d65", + "placeholder": "​", + "style": "IPY_MODEL_6c921ede26254f9db1423264ed871e9b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ab35b9b6a5c94baf8d53bad7bd150b37": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_633f419840344fcc9e04a0e7c7fc0aea", + "IPY_MODEL_69acd86f5097427985a8d5704d686ff7", + "IPY_MODEL_9e8488285d384857a517bc86352ac500" + ], + "layout": "IPY_MODEL_232fcb72d4e542b79ebd8b6c50402f06", + "tabbable": null, + "tooltip": null + } + }, + "ab3c6dfd7fa64c60bf5336405e948ffa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ab438d338294490aa2809dbb291da93b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ab77a2e263a64999aff1a3a16d3f0fd5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ab780505f2f4498bbc047406629e7fbd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ab90425664574da7be71c765819f97d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "abbb0ae6dd014c339b6e49ed59f058c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "abca09d01792423dbe50d4e71ea8bb2b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_054abbe52104430cbcf86e1d814bdfd4", + "IPY_MODEL_8cf837a553dd4e7eadfdae531f72b078", + "IPY_MODEL_8904a84c6957477b9498386edc79e589" + ], + "layout": "IPY_MODEL_bc6b35e25c474bce9d0a1538752b8d1e", + "tabbable": null, + "tooltip": null + } + }, + "abccfd94e44e43659aee441f2ca540e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "abd0fc1b2ffa4ad88723dcb4bbef2010": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "abdcc9fbc9c24b7c98816ed97227cf2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_64764687bf4e48b28e9e7cb2c6ba1bfc", + "IPY_MODEL_7806fa8a24d843578b6306884687251d", + "IPY_MODEL_8ef14fb69b2a4c679d44c850078f0e64" + ], + "layout": "IPY_MODEL_cc1b0288f2c34049b88ad85122bafb55", + "tabbable": null, + "tooltip": null + } + }, + "abde3ff2c46049b083b8c09a02050944": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1372d0fa72ac4f3b9df25d95772d277a", + "IPY_MODEL_fb04884ab90a48fbbeac8a9a22994f59", + "IPY_MODEL_209fca2855bf456caf2d81cb7777aa24" + ], + "layout": "IPY_MODEL_f46af723fc4846289c7c87fc0e01de38", + "tabbable": null, + "tooltip": null + } + }, + "abe03f0e1b6041a8bf62ebefdae90203": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "abf5be15ac4745d88cbc66222ec9f4c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9179d971231c4d9dacc84fb2ffa0ad38", + "placeholder": "​", + "style": "IPY_MODEL_86ec9cff7c8847a9903902487acca136", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 883.14it/s]" + } + }, + "ac03f7c299544d9782de7c690c2732bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0ec2b3d092f6481b895407c33bc9d2f2", + "IPY_MODEL_8f3eb37ec3bd4edc9e99f4b4d84d1128", + "IPY_MODEL_fd3ed082cdb847bfaca949065e7d3270" + ], + "layout": "IPY_MODEL_6483def096944cc0a8459bfd32b31309", + "tabbable": null, + "tooltip": null + } + }, + "ac0c6645f91f45e3b11eb390cbbbb1e7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac22e061b8704a4697606e7d7318d6c1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac24092cc8354045b3c2143c01ef5ccc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6adef7a5af9b48dba84684b58c4c3772", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a39178886d21497782a847803d43812a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "ac247997a4c04bfbbd689c46b9a76bc6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ac31d646e5f94246aafc208db1168b6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ac3d524f589848538a6f10187a37cc59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ac458a9d8c53445194c632845cb3b21d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac62c2b62b8b4e20886c7c6ce0bd0f5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac7d3eb9edfd489987e8caf6e58df19a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac87b861c17e4b908c5c78cff305b41c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac8939eed87c46d48ffe4f2ee8a8a089": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ac89c8b40a5d4b53b609d76048892f1b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ac9a9c30854f4607a35ddb6623a312b6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_55cc2548bbf04070b94494095ff06cb8", + "IPY_MODEL_b64812a4a0a944b9ae4ca8bebc3f9e84", + "IPY_MODEL_23139c0d87ab4455aabf7edec9d60561" + ], + "layout": "IPY_MODEL_a30605f251eb461aa1885f034d2c03b3", + "tabbable": null, + "tooltip": null + } + }, + "acaaad1de0f248c6841ac616a4296c19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "acab03215fc748008c9ddf873de20a5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_911a510f3372451f8700a6ce19f79857", + "IPY_MODEL_f7665e6f117844feb8192f4f7bce42e8", + "IPY_MODEL_f413b629f71343ada9cbfea1aad81516" + ], + "layout": "IPY_MODEL_d96cf75ad88f45f4855e2d4325757064", + "tabbable": null, + "tooltip": null + } + }, + "acdb0b3ed8724a00b0bc8b60ee44b883": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_84a2a5f31e3941ce9134ac385d4e2a12", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_84fd8a2ac095408c8ecebf63c4969c28", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "acf39e753a0b47edbb8ab2f3b1612c32": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ad1191c04f894e8b96965ebd9d88de99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f4febd503c8c4be89d07a356418a30cd", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_10d90e94a1cb48cda4fa0ef82d7f6362", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "ad15283d6e67483f8e8c542b99102dbb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_11b202437a514f85a76823198526b78b", + "placeholder": "​", + "style": "IPY_MODEL_07e945c3ac93466ba6b35f5ddb7171ed", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 461.42it/s]" + } + }, + "ad2135ed075749a7902b55c82d850b6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b7708533f6164ddb8f331f2758c965d6", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9882ad45a0694d1f8ef72b3250996d70", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "ad366d6d24b841e7b99a860c41a83715": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ad4d6afd28e64f9290fd32d50c08d80d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0b26bdbd1e9c4b42b42748c5610691ec", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_96c7437c7195487daf88d6d051d5a0b0", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "ad5df9b2fa754520af1210fe3e8e8406": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_fc543a8264fd4938b5dd1d653339057f", + "IPY_MODEL_f4c52ea1b0eb425e9272be302bf6cdce", + "IPY_MODEL_b1b4bd12c8d3472aab26c0844d7eaf6e" + ], + "layout": "IPY_MODEL_fb8bd59ada3749b693a5b4b751262b74", + "tabbable": null, + "tooltip": null + } + }, + "ad69fcff3a484856803d6f922cbc3902": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ad6eea54b84a49c9930e4f6b767b03b9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ad76f346780c4b928726d6b0a8730d55": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ad7b1a20bac14b9ca1f9091219cd5c1a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ad86e3d3eb5c4de4b2ac81711ee44773": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "adaa991c81694a6c994569986d926b28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "adbd36a4d1654a1d9d4de0e765e78721": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a029ffce164e49899c4fb733f9f5cd85", + "placeholder": "​", + "style": "IPY_MODEL_6b030a8b77ae420fa03f4109f0093692", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 743.61it/s]" + } + }, + "adc71f58c0b945fd8d91614ec6a06e46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ddcc2712ca014813b73bcb582bcd88a6", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_62255acbe4534c3a96822d3847a4dcf2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "adcf67e324ce4bc7aa8b1af64386e925": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6da47df685224f99bc258ccf383e171b", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_699e3522a4124bb8b4ab36001a56f1d3", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "add8c3cbe37640cd8770c979879b9d8f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ae078830551543a3bcfca61471771c96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ae0cbcf67545403f8ba4ad04ed02bb22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ae0fe44373c2465787b7e79c3c8d70f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d0ca81a5a2734e01afa59c0d1a034c01", + "placeholder": "​", + "style": "IPY_MODEL_12cdf3dbde244322abc1215577a9fa2f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 405.20it/s]" + } + }, + "ae114e5e1c304cdb85ec63adc0072d3e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0e433b5ff9ce4caf82d49c494c0e2bf3", + "placeholder": "​", + "style": "IPY_MODEL_460192e1ed854f0e8bdbf68f92e6cf14", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ae24b89d004644c8ad8487e7d3e00beb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ae594e431d2c463c8779fdfde1495311": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6afd307537b741609ae63efec74579ec", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9ab7d7b564314f81b4ab325ba7f81c41", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "ae65f24a7d1148399f29dc886a28ad96": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ae85ddf3561e45a899fe8c163b875121": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ae8cee9417db4d198af28f77db3b6c03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e410c800dd74df1b928f71007c6ad53", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_56c15368482149c39957a094b5b3bb01", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ae98c0bdd74643e19a30033196739357": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aea3b326153941a8aec59deac185f51e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "aea82e0dce7946c694e30a58681f1392": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aeae144ddbe047d1af947d07ec58c2a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "aeb53ca4c0f145e59a55ed111db027a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b747ca9760f64c9b827730491b7260e4", + "placeholder": "​", + "style": "IPY_MODEL_9155d6f983a94105b63a8e6bafac47d2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 659.15it/s]" + } + }, + "aeb68c84baea4a9a9e987486c42b28b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_77e091e51d644bd7a898ae5b249be6aa", + "placeholder": "​", + "style": "IPY_MODEL_ab90425664574da7be71c765819f97d1", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 924.26it/s]" + } + }, + "aec20ba239254bbd872cf8e56a0a0412": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "aec218d4ff044f0dbfeacb22426e65b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aed3bc5e38a244c5af7ef311911a4f22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aed4671ac32b4f03baabea251d0c0753": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_196d04239ba740ff875420ebe2f75b6d", + "placeholder": "​", + "style": "IPY_MODEL_6b2f2765ad3443de976fe1c8ea6fbc99", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 204.13it/s]" + } + }, + "aeec18f3aeed4896875933c6fb4a7e87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7842a3500a7946409a683a80a88baed7", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dece916466dd4cd5b3975776a871fb15", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "aeef496d8ca7491e8ac811c40b487551": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0b614f7018a048a9bb971fbfa1a508eb", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_cea4297a2e83463882115436f631c572", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "aef0752209bc4051aa329cc2e4eb4c00": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8e1d52e596ab43bf99909cadbe00a4ca", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0906994019d84323b2a859cc27274620", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "aef0d977920e4ba68fe0e7a607b6263d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_76233c891f764212ae0338e71a446bdd", + "placeholder": "​", + "style": "IPY_MODEL_a1fadf70963a4b13b4c2ada1baa4de41", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 373.38it/s]" + } + }, + "aef86b8e576340b7b49848b7ca059ea3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aefb28d1efb742b9b1561fe37d511499": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "af0df5e73ecd443094c3b4113e3b52f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7323c52dd8104e1a93b443dd1b118c76", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a1787e3e0a0f4fb3a80edc7e74d39372", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "af105dbe506d44378417b450ea2a0030": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bcef891dffa14e1493a37b42c7cc0eb3", + "placeholder": "​", + "style": "IPY_MODEL_bd550a78dcf1405a8a5dbca5add06a92", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 285.53it/s]" + } + }, + "af3006632f194aab9439d44681e5acf8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "af3de0bceb4c4b5686115f80c9456e62": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "af44f3dcf2a3444aa0223f7e8f7cd5bc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "af4bac0cdbb44def853e9e3d711315fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_78c6ee1bcc304f9fb0ba3a0c00cba015", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7c55d8ebce804f51bc924b445aff9f6f", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "af546f5012484bc5a061a81469ad52b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_94b428875d684c6da237b5e32210d516", + "IPY_MODEL_f1feeacb7422447587c4f1c30274990e", + "IPY_MODEL_2ae36157bff74598a823e91e0c94294a" + ], + "layout": "IPY_MODEL_bd2d52314620407c909889195cd8f8be", + "tabbable": null, + "tooltip": null + } + }, + "af67188cb9d643f4a740a0669870f329": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_03cbced2afaa402f897f5e6f9aaa65e3", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_82053fb4d20345168b8074a9b0a80a49", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "af6e9338419b4d03b841a34ef0f546fd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_56a21fc04df14f5aab87a7db940adbc2", + "IPY_MODEL_6982b8cc7540457ba8667b98c99ba48f", + "IPY_MODEL_d8a905e5b2fb437d94769e4df90f0afe" + ], + "layout": "IPY_MODEL_964375337de64748ae636b89d865efe8", + "tabbable": null, + "tooltip": null + } + }, + "af75dd5fd7f14802b24ca378ec2f563a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "af85eec72c1d49b0bc80ee8d48193f2e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "af89a99771114ddea9d69135a37550af": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "af9ec4c0dac04a0b860da938ee1b9274": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "afa3c024d2df4879b35be2aab5026827": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_81549fe1c475498396d50cc1e4cf2df0", + "placeholder": "​", + "style": "IPY_MODEL_e890abb49f83439d8854c768c3bb0ea3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "afad29d453c942d181e54e5c741391f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "afb0a93f0ca44702a7ef14555286291d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2cf6bdc5be4242ecbc86f499e7190e05", + "placeholder": "​", + "style": "IPY_MODEL_2d5575d754d9473480cfe5d9e9189ac2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.89it/s]" + } + }, + "afd31427f387452aa6d9a12f42f7c989": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "afd5fd2289b14774abfecb664ae8f1f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8d3d13f7367243a19e15cfd5364917e8", + "IPY_MODEL_60e3f9231f104a189723bd60c27d6f1f", + "IPY_MODEL_25cad32d47f24bc287490027288d62a8" + ], + "layout": "IPY_MODEL_bc85632f49d24e72ac083e347b6b1ced", + "tabbable": null, + "tooltip": null + } + }, + "afd7842d757e45c38c667b4a3bceebae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b000563500eb4988aaf2cb4497e41435": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f40aee4b89244ee094fb5479e6d26564", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3d933797461546efadc5a87277eeaf4f", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "b000658f0bd14248ae5a2686701a2efa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b01630a4cc67490d8816e57ecc0953d9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b02564a74a224e339edeea3026d02aca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0e4861ec8ec0487cad926e40995a16d2", + "placeholder": "​", + "style": "IPY_MODEL_62489f15f3954d4ea078f8e1709242c1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b025f70774254b02a840cef7d5dbb519": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0279e6a40de48e6a3f661cd2cb91073": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b029984521f44bcdb32fb49c5bdaf4cd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eb71b5f65e72456d9df597d1de4631da", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3857a7d6c1514fe8a48956376e3e4f3f", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "b0355c17ec0a4ccb919198e3e323697d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b042fc58f9724273b0dd1854a4efca6d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b0573e081de7452090be621f711a659c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b060dd5469014486aa62c617d2d47a98": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b062a4dbb1634fc3ba9ba7969606cc2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3475c766dc2a4b2b902ec59f439b0d76", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8eadba5ab5b7468db3bf8a34b49b804f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "b07cf4aa47a84e4186a0184c774f1b62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0d1f83dd1592436fb181ed00f1e3bf40", + "IPY_MODEL_2f8485b5a9014339bf850b5afaf0f17f", + "IPY_MODEL_b92f9e0be5934d0fa3df311377f03188" + ], + "layout": "IPY_MODEL_0709a74744b24305b321bf1b766e4a42", + "tabbable": null, + "tooltip": null + } + }, + "b0806cc08bdd4faab3fb33f30910bb9f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b08d0f7464d94d9886d23978aef2c9c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b08f92d6a08d467f9899e75ddbefde3a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0908899073b4b6bafa21f6c7970ed32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3380fd5ec8214215abdd1bd617085a80", + "placeholder": "​", + "style": "IPY_MODEL_76f06fc7d8284333b0038d0ccc0fc5dc", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 781.45it/s]" + } + }, + "b0a5e90a15a4456296867f37825438c2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0b4f4a644e74c3ab5d2d8dfd5b142f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0bc158199a746b9a5b2a6f2259f08db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_58e7cb86be154b1c9328f84a35fa55fe", + "placeholder": "​", + "style": "IPY_MODEL_38f04f6b56be477dbfb1a0f7bb15de65", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 358.36it/s]" + } + }, + "b0bd113b98dd4d349bd000d8c75b469b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b64d93e53259423d8d3b8e0267367661", + "placeholder": "​", + "style": "IPY_MODEL_a2f97fa7cf6945b5abeb08034a15d06e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b0c1113a9d194f7f81ad872bf4c22cbb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0c2abbd154549e4966d5955f0e2cb91": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b0d1ac50b619465f892254c3d2485342": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5a7bf37a18224cad8ec49c4e3130cfb9", + "placeholder": "​", + "style": "IPY_MODEL_cfb5df4eef404a6396098b5fcc43e719", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 403.67it/s]" + } + }, + "b0d8bd80bc004482b0a17359449ec20a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9410cef0dace46b0bae4f8957ce1f43c", + "placeholder": "​", + "style": "IPY_MODEL_6e1570459f0747e4985a28944a4f3c76", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 669.10it/s]" + } + }, + "b0df9537442a481492141bd3fa9f7739": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_26f0acbac80d496a9ddc08933c4c58a3", + "IPY_MODEL_03cf5bc1d2d046e1bc750f8743edd045", + "IPY_MODEL_73725992efe743248130b95b8fca65a0" + ], + "layout": "IPY_MODEL_2d5433d72f064b52baaf421ee4ff9579", + "tabbable": null, + "tooltip": null + } + }, + "b0e438cb6ddd40468148578699d2c60b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b0ec3413febc421db1fd1f5500da790f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b11c3e33b4274a5f858c3966d394103c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_63e678a3a9714f4ab670a80d3fc2883f", + "placeholder": "​", + "style": "IPY_MODEL_faa3edc8b2014c5fb0f75c577a09ea1b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b11e6c155f6b4b7cbf38157a7e22bfcd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_52f0637b861f4e2db0cbb387fdc53564", + "placeholder": "​", + "style": "IPY_MODEL_0429bb18f2914ca0a6a381036310b218", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.89it/s]" + } + }, + "b146999938c24a5985c11db49227e187": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b15daf48c1e84bfa9f44ccd7650ed07d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b16f9abfd37a4d1b98e464ad1b9c7531": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b1750dde1b3244b0967874758cd60725": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b17e76e6a52a4b609eac21dec16ab930": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b195982212c340009c47f5a96be99c32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b1964f17fd1244aca80190aabe1899f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b1a7365574934889b27faf165698e16c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b1abaa9f4a464683b9874c51f6f88ac9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b1ac59bc49094a708bfa29f4fc194a71": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_501b18071c884f33a2355e7613071679", + "IPY_MODEL_9716a85781074fb4a8c02a77b7d3c246", + "IPY_MODEL_72c6bb36e58d4b77a5794e398fddfc03" + ], + "layout": "IPY_MODEL_3eca998aaa9d4498916d0cfa331b3033", + "tabbable": null, + "tooltip": null + } + }, + "b1b4bd12c8d3472aab26c0844d7eaf6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c3395f903c1941e9a52579eed16898fe", + "placeholder": "​", + "style": "IPY_MODEL_eaf63e2939da4a6abeff5899c19fc6d8", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 749.99it/s]" + } + }, + "b1bd50fcb4a746b1a9fc67c7dc5e9d20": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b1e7c1a4c6de4e638a40667b22c5e784": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b1ea52fd69d14eb286458bccc1c7ead6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2ea4aca8233b403a9fd2f7c9c75a067b", + "IPY_MODEL_9d5dc07d260646458832c18505726055", + "IPY_MODEL_d9e665b5a68c41fea9077d55e180d6dc" + ], + "layout": "IPY_MODEL_c6d118e2228946ee80db0ff984a7dc54", + "tabbable": null, + "tooltip": null + } + }, + "b1f54a47ce004a45a344c77f5a2a8556": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_047d35de61174080b5292838d343c965", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_849d56773ed04d7ab561c90e054781ff", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "b21c2a0884654f7ab3011ee7bf1768b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b22c18caa3c945ec9b5ea2427c8b76ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3ffec96099bf44ca8a2bbc9cd8839c63", + "IPY_MODEL_6332e3596fb043c09a2b962f4d9499cb", + "IPY_MODEL_2dfccca9d8924df4a6678de8574b2ba9" + ], + "layout": "IPY_MODEL_8f1cad559e5b4f32ad9c666af99cb07b", + "tabbable": null, + "tooltip": null + } + }, + "b23ca1a19ceb4933ab5759f1ab379864": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b24359fea58f4bf9a3d6c21ce9d003d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b24a11482bce4a35933a09e6ac421cb5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b26841e7fff54ca3b1261b59e1139ff7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_326ae8e9295f407f8c5d0dc76a9bf667", + "IPY_MODEL_7f914f8e037a42478acb2701feaf295e", + "IPY_MODEL_076c4db637af46f7bae49987386f83a6" + ], + "layout": "IPY_MODEL_4b7a3bec8a5b412fa0068748f99eb4c3", + "tabbable": null, + "tooltip": null + } + }, + "b27312d44d484821b2a08adabbebf0f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b28fcd115a2044a38a423afcc85656f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b296ac0240b14646befca460132c9a6c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b29edf46fc764ab9bc99c17f377d1f49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b2a029e9faa441b98151c0ab3c58cf15": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b2ba66e357764cc3b04ad06c7103b23a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b72f9010a37547d2ae0c5152e3863b0f", + "placeholder": "​", + "style": "IPY_MODEL_deba2cbcb16e4f739094bbe98f4b2f3d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b2be8be415ac4def92bff243e28e5fb8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b2bef714e4bc4a1e898860c71d0b87f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b2c2f4f723ac42cd87ee963f32979ce8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b2d7ea05c82d43a687ffa339f448d33b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b2ddb5a4869e4a6e9b31a3ad71b2df99": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b2e24d88b0234c28b08637454d2b878b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3403417884c041deba0f425057715b22", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_87d78f160e914e2980849e9595346f97", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "b2e91d3e97a643b58fad5e9dfa8f70a0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b2eea72852084b428fa0ff50ad736cc4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b2f3e7dc468b4d68932274ed41c3d8bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b3050b35536745beb07940f092fd4301": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b305ce321c394f5e91a02a8d9f6af7c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b1a7365574934889b27faf165698e16c", + "placeholder": "​", + "style": "IPY_MODEL_d893a1f01dc441b794f28b56d93c752e", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1014.67it/s]" + } + }, + "b310a7deb2c74befa984634a6fb8ded1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b31e31434237492f931cf3f4c8b2cd38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7e645af3a5c74f639b0a7b7a90ab66a8", + "placeholder": "​", + "style": "IPY_MODEL_7ca72e4597c54bf2a9298bde1f1b47ba", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b33074d8ee914d21823cf7d6034ab582": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2c505befee5b4844ac3545f05bc6be11", + "placeholder": "​", + "style": "IPY_MODEL_55f1aa4893e447179e97cea505aa5e67", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b33c240ccb5d4a429354187164d4a37b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b34683237d33463fb3e956721f9e93a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d01aaf50b53d4762804bbe906c936a59", + "IPY_MODEL_8e26719711b348ac865db904269b4171", + "IPY_MODEL_bebc2dd457cb49b882757327b3ed5ae9" + ], + "layout": "IPY_MODEL_40f0104a57394a70b76f53d28a200705", + "tabbable": null, + "tooltip": null + } + }, + "b34740ce36ff478092a5e095ca54ffe5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b34a3f94eaf94a9ea42b8814cd4a1992": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b34d0ccfdb0a4469b7371eaab056c7e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b34ee5bf16b441d5a03fa82b086d8088": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b35d3cf06ae74669afffb67394bf6510": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b37a8d5ca7304c59a1664ab01623ea38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_15cc8b62b0994cc1a3a5cd9b270b19db", + "IPY_MODEL_6ff1cdc4702d4be8858e4976aa6c3284", + "IPY_MODEL_7b624c04baf348789b6feda22633b964" + ], + "layout": "IPY_MODEL_220a480d5df047d6bb752df1d8dd457b", + "tabbable": null, + "tooltip": null + } + }, + "b383a45591a14087a3a3a5ea509fe5fd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b39a0d8c338445baa85b82ad6fb5cda2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b3a7fb65ac2c4bd596c8e0a50f887883": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b3b1539b3c4c48d98fb6a7c07a2499db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a736a7b411c84d9bb41c23f27ec02f9c", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_05cb51ac41224059b3877cb683d2c929", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "b3ddd99fbfb9422499a2a32d35fe4f34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f151670f1116462f812f8dd5d3c0c2d4", + "placeholder": "​", + "style": "IPY_MODEL_15b067839128413daa5ddfd4b485f7f5", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 647.26it/s]" + } + }, + "b3ed832278df423387ca0eddd342050b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b3f030207de145adbb8c30e398be8b5c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b4016d07f48e4e35960ab2a719e72a82": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b4097b378ba040438723763ea426126e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b4223594427f474ca23652dc2a8b19bb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b42b8668eb0842a9b206f0f2c4d2b745": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_daced70e088249b8a9015c12abf8af87", + "placeholder": "​", + "style": "IPY_MODEL_8b625ea71aec4e08b1136aa552324fbb", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b4354ec06ca84d0f8acf53685241fc69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b43627cefb1a40d68e1fa51aa7d0594b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_77e4af6005e44295a52118cd96c1d993", + "placeholder": "​", + "style": "IPY_MODEL_fe78c274142d4dee9b4ad72400a9cb20", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b438f2d5ab2e4dcd807c83bf9f9590e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8616fc08a5d34a5e97d2ccd1a8d11cc9", + "IPY_MODEL_6e6f25f865354b57b12aa7159708affa", + "IPY_MODEL_b305ce321c394f5e91a02a8d9f6af7c6" + ], + "layout": "IPY_MODEL_f571ff5c88794c98ba508e84d7392083", + "tabbable": null, + "tooltip": null + } + }, + "b43f217d6d624c73b1b0d689dfacd7db": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b4429ff7841a4f308746df5b1c00e061": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c3cbfe46880e438caed8a24d8c401a5b", + "placeholder": "​", + "style": "IPY_MODEL_ee8141fa1331445ba6077a28e21f11d4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b4510cb654b544be9ab94c1f2c445cad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b45569ca97c1456699e9822e8c4ce2f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2be2932169e64d7789d35e491915cfb8", + "placeholder": "​", + "style": "IPY_MODEL_ef5a6fe6c54c4b25a4369f071700ba14", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b45f431c8c2e4272866bce099b78c000": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b45f7f7828e34df28d09a3a7a502cdc7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b46ead57da9646829ac19f4b41858d14": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b484eb126d89475298f808eed8ca089d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b487a5d761124133b06f4cde135300c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b49bc7da516d4a37897c95d271cc85cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b49ffd23b11e4a90b5c9aed988204dae": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0def8383637045ddbc68b280dadc025c", + "placeholder": "​", + "style": "IPY_MODEL_806b3de7e7254f87a6ead51172f5b8d7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b4ad08d1b89744cf95f4697a2779ce2b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b4b9532f111545f3b38660a1e0afaf8c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b4c03b67ac094ba5bda2410a4a5eec09": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b4cf599c02a7410c9ec4e05329db6df0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d23481aaedd049e2a4d8d7f368b5924e", + "IPY_MODEL_742eca87092344a6a8073daeb45b78e4", + "IPY_MODEL_6d60a679a2b64c0a9046ade92948d2b7" + ], + "layout": "IPY_MODEL_16cbaaf336a7468aa6b7c92ad3d54e10", + "tabbable": null, + "tooltip": null + } + }, + "b4dadf7144e840bba44919c5819762c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_92080865c33f44ca916464b9b926190d", + "IPY_MODEL_ec3a9b8d629c467c9562e48e13d92941", + "IPY_MODEL_84be7b88e2fe45d3974cdc7baa5af31a" + ], + "layout": "IPY_MODEL_d28488a12c62448a897fa276e4eaa950", + "tabbable": null, + "tooltip": null + } + }, + "b4e15245843f42d19980c6a503e3f8bc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b4e553c99ace4fb486c23178007d4f2d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b4f7c0fc3e6f4481bc20f15c3be37155": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_217223e39fba47c7bd47ac639f70bd70", + "IPY_MODEL_7317343963b94f878864547c6fc16c95", + "IPY_MODEL_2cffe76a58af44128b9aa2bd349b111e" + ], + "layout": "IPY_MODEL_3ae1da45352f490da1c14ac3e6a125f8", + "tabbable": null, + "tooltip": null + } + }, + "b4ff35a568e14327a85148ac47ac9f55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b5159d438cc248ea84b3cb7076f3e4a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b5175acfebf14ed1a722a4613159d0c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b517b41522614b3e9b69031cba498e2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2a414586d02f4d4bbfb4d15bb51fc2f5", + "placeholder": "​", + "style": "IPY_MODEL_d452f28ba3a3415aa7ebf6e431f147b5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b53b0361dbdd4168b3d93ff6e3d5fd62": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b5431b66ebe64916b9914c8e87a46eb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b5460433203542fea838b387894252c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_74bcb5d289014865b4e9e20ed87f5ae9", + "IPY_MODEL_4b14488c2a1e4d3cb19eebdc1c02f54f", + "IPY_MODEL_5e312dad761b41318870e912d1281bb1" + ], + "layout": "IPY_MODEL_3940e0165c8b4dd9aec550b1750c3a25", + "tabbable": null, + "tooltip": null + } + }, + "b5840da1a1d1440d945152089d7295c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b58448824efa48e896f04068e28ccae1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b5a2b688819c413dbb8839688bdd1b45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_352aa658a2ed4352bd88f8925be4aba3", + "placeholder": "​", + "style": "IPY_MODEL_30e81f5ef72d4da88912d602e62c3049", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 397.66it/s]" + } + }, + "b5a45dad69d340b081571726eefbe75e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b5bc5844b266495185e7e788a1fba337": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a1dc547a5e09463a8cf7783eb2bb0a29", + "placeholder": "​", + "style": "IPY_MODEL_f870471946b04a5aab900cb5c89d628a", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 190.78it/s]" + } + }, + "b5c832939863417fbe3282c525dbeeb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b5dbceb931c84f6480f30c8b2f05b9a6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b5dd18c305c94704942beaac2e3998aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b5e50b0ed4f447dc91211cbe07eb4e95": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b5efe4fda84146b3bcf76ff2c9cfe56d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b5f379e01b4d43a2a6aa502939159188": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f0e99b0ea7a145cd9d9b134db136d0d0", + "placeholder": "​", + "style": "IPY_MODEL_527fc604158d47faa2ddeeff05044180", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b5f4380068e74650976631f64c6e86cf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b610933d41ce403aa9fc967ffbcb0e10": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_19a925adefba402e826cd12f014b8cf9", + "placeholder": "​", + "style": "IPY_MODEL_3ce7fdfee24b43b1a6aa923d56c30443", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b61b2062103f41f79565eef67ee4c088": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b61e7836f232486582318e2b04160b11": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b621bb159a074d0398324d798e2fdbb2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8cf412989d714febb34efe1e68b37a17", + "placeholder": "​", + "style": "IPY_MODEL_7d62a4338b824f6b8394669ed7057e1a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 592.20it/s]" + } + }, + "b63abb47b2784ee9ae10837962c76dbd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_33702b87af6d40c5922332aed275ae6a", + "placeholder": "​", + "style": "IPY_MODEL_7730a09aadc44de89d22a36b05fc267f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 247.75it/s]" + } + }, + "b6438d771d084493b67b64aa9b48aa3f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b64812a4a0a944b9ae4ca8bebc3f9e84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fd1e27f5682641a895d1dfeabb523a37", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f3c77555f3504d5baf8d3b1cbe9d5431", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "b648cb3a0440498fa203246723b99a5d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b64d93e53259423d8d3b8e0267367661": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b6517a20d3214e9bb0da31f3fdd25298": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b6528ac6c86f44dbacf66f778021b289": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b6653b2675524ba8b64332ead8f6358d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b67e643dc21d47519e163fd9af6251e1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b6903d56d57b4705bc608c36022cc0d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3c556078521b4787b2d5e121545ec087", + "placeholder": "​", + "style": "IPY_MODEL_8bde17b51c7a4771b487e2689b9c2183", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b6977c3225b24efe9322835dc080a983": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b6a9798bd6dc4f78b9f423dad44294ea": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b6addcbee5334fb3ae77096a22864d28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b6af306e90094bde8933a76b6d6f3f5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b6baa73f23014515b55cb54440095315": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3a4dd2dc206b4bd4b749f549722890e8", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_374761dfc37042ed8786d9a5d44bbab7", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "b6bd1faaceae43b1a5356525c0c32cdf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b6bebadb840d43708e860e57c011453b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b6cd0ea631c4487aae88c79ad7f7f636": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b6fb5202afa3467dbf80f63befb146fa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b70f4a2fca93452e95b0c8da3b71bad8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d8ee64e173584926b21c16107ccf7e41", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d372649706eb4eed9a91359ee7c7946c", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "b71da0ecefdf47e0beca1f5d84baacbd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b71f4978b51d4fac9b15b4de56e5e461": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_48b1e53e65604fa39e7eb0decadde0c0", + "placeholder": "​", + "style": "IPY_MODEL_d26e2a4401af4e43ba728bb5befc3729", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 212.57it/s]" + } + }, + "b729c23625d8410784291d47f8f58a35": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b72f9010a37547d2ae0c5152e3863b0f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b73329d1711d4e3fb9847da52923f409": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3915c694dbde40eb8196b37d8a64a8b5", + "placeholder": "​", + "style": "IPY_MODEL_0e11c3824c1049ae977bf3bc233e7400", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b7334c61a97f491c8d33a81bfd776696": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b34a3f94eaf94a9ea42b8814cd4a1992", + "placeholder": "​", + "style": "IPY_MODEL_a482296d2a28462bb677ea7f71be5496", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b747ca9760f64c9b827730491b7260e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b76194c44f644e5d94bcac1f313664eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b7653f4e9ba149208db82f2cb32820a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b768273a6942470aa03801a07a932afe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b7702315c25b47d881a3a142f560995c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b7708533f6164ddb8f331f2758c965d6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b781646ee9ec4f3ea25023fe4b948911": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_99ef45379c024a3c9204e37004fad7f8", + "placeholder": "​", + "style": "IPY_MODEL_c2b6446d78814802b1eee631cad8dd54", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b7b14883b441456c9bfd3355c27b9720": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b7b5e9dd5c6043ea96d7d4739fe6bf19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9ca6d64566b44c61a6ffd091cd365d9a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_264c38732c7a43e4a5109a630e81294b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "b7c4196a9b5b45ada45355299f377fcf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b7cb4c7951314b198c360a084ebd5e75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b7e741c91850441497d046154d86698c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b7fb54f2dc164be081c6b4ecca9ce2bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b803f5b0b14a46a4807b999bc8da1476": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_880c6a4bdaab4ff3bfad19799f211c58", + "placeholder": "​", + "style": "IPY_MODEL_74f9475936474efc877f014f67d9b710", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 406.37it/s]" + } + }, + "b806f8367c4846a29cd0e626181e811f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f56682900f504524aea1c6635691a9dd", + "placeholder": "​", + "style": "IPY_MODEL_41f2fb9a4ed74a3a8ef1a6cae7c382ef", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 346.83it/s]" + } + }, + "b825cd45ad6042f9aeb2666dba899a36": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b8587bab2d504450a978186b44e1c406": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b85cf4844da14d61bbff60318cee4f00": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b879508009604f32a37d1fed8c824b7f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b889c417a1f54e31a848dda9cf690e2c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b89491869f5f41ff99b6e4582fb4aabf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b89c99108c6b4876913736f14c38a201": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b5e50b0ed4f447dc91211cbe07eb4e95", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_01a80ae4f4ad4c7fa8d14230b3f9f6c2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "b8ab930759c649f3997d7bf67753cf85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9718b5f4477c46e68f7737c391f4d6e2", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a2b4727365774b848b49ae4c6e8740dc", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "b8b55623ee8e4c328f4f18efb1057e28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b8bf8520bdf1469592c0380a3cde5511": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b8dc2e19c9104a25a18691751868da10": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b8dc4d0a33204002938bbe3c886adef6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d82854607538477ba1d4d41249f10d54", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_83494ebd90004099a1100338aa491910", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "b8f001f2f17849828737a6394b4d106c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_98179c058cd443539aef4557fcba689b", + "placeholder": "​", + "style": "IPY_MODEL_ff98a62fa42b42e1b22ab48c85048070", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "b8f547a4a9574bc2879e56f702d4b573": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3f16338ff86431285febc47737d210d", + "placeholder": "​", + "style": "IPY_MODEL_761823d088b54402a0bc1674849fba24", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 398.78it/s]" + } + }, + "b8ffec423f94468db0ffb1f2662e1f40": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b90046e7f37245249d9b2493251f8ea9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4b356cb01eac476c87233ee35a9022d7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_856d41a3b05e4e56a701b50e80dfaf3c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "b907cbe0a1b64451b0780ecfb927e337": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0c5da085a65341a298e5db321219b46f", + "placeholder": "​", + "style": "IPY_MODEL_dc7a473c8cde47ff9822f06c037f0dc2", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 472.98it/s]" + } + }, + "b90c7f3446774ae187850fc7e4a439d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b917f83ef0684cbb80610eb2fb379063": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6599f79277e24cc6948213f0c18cfb93", + "placeholder": "​", + "style": "IPY_MODEL_821ab76f177e416295ba34d0491d8abe", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 529.18it/s]" + } + }, + "b9188652cf4447359158cf510052e68c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b91b8c1c9da04e1ca063911908d923f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b9209e2e400c4087b3f6cdf8a9e7e58f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e556b0a2da10455bb4ade6d957c52b30", + "placeholder": "​", + "style": "IPY_MODEL_aa9e8694b33e4dab8060d5cc2a872124", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 397.79it/s]" + } + }, + "b92f9e0be5934d0fa3df311377f03188": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4d9d202be4e74f5fbfee7cb5ad62bf9e", + "placeholder": "​", + "style": "IPY_MODEL_5b2b8097e9774a4099b67e60317d3a5b", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 439.69it/s]" + } + }, + "b93a267e993049db9b0eb876f464bd9c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b93e38e74b7c4a4b8cbc1917418deda7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9400c470c854581a4b6decc383da8d6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b94bdd3aaecf46f8b319da395b406b76": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b96174525873499a8c79767fb4e1b053": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b96621d846f14a31ac1ffe0c636d01a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d2e0d1ab679c4effbc7ebb51406be040", + "IPY_MODEL_d4fd9cc09fc445118b7c36c93abd1030", + "IPY_MODEL_dd89cd39cf574173a1ee401065d0d1f6" + ], + "layout": "IPY_MODEL_c43f26c5a5f7461290abba9ea6545433", + "tabbable": null, + "tooltip": null + } + }, + "b987b6973395416fbd197e9c973ac79b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b98fe66a49714572868c12d3114bbac4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b993e3e2a545409895349810cb90e213": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9a0579f06c542f5bf735056ed5aafd9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9aa19b739c242ebbf5ea5205adba2ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9af017fdc044a2a86417b9656913f1b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "b9b23322e7b14ab8b5758108ac47bb91": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "b9b66db386cb41cfb1cd64312098fc39": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9b6a6bc4e694e638e05eb65f37e40dc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "b9da41ff441043a8acfe22650edc7caf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "b9edf481486346648ccce2ee26429112": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cf38bbea42f044b0902a6c48778e7473", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b08d0f7464d94d9886d23978aef2c9c4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ba59ff3d2eac41afa9597dd4257e73ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ba6afb0f7ba74530ac18272cdbef679c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ba8325900613445b9ed0d6e42e16092a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7164982cafcd4f37a525d71d57fe38f0", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a6d1046790264d589d448358f4b13f33", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "ba9287045b244fa0b1711b5fca454534": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ba942bfe8b80418290e2a2d43417cfbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e84af3959e9c421fb8f6c773ac32785d", + "IPY_MODEL_683ef442ff65401b8f1bac76639a300a", + "IPY_MODEL_c9a5bb22dcd44c8ca37c73d7715dbe80" + ], + "layout": "IPY_MODEL_51f3b435c3224310aac786961ca1e463", + "tabbable": null, + "tooltip": null + } + }, + "ba9575edfc954abb9eace77252da38da": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ba9dbf41d89844b9aa45b848bfcfccaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "babbf786a8804e7ea85407946951c084": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aa821af94028426c9c6923054a0d7318", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3845f178ef414daaab9de546cc324b44", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "babc9e2bc3ae457d8118041ace1fbac8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5e07a4584d15461aa4950fa94e5e5d6d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_465dce8819574fbdaaee84421a9bc65f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bae0032ace9744d1b564ac3c8ce49cc3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b484eb126d89475298f808eed8ca089d", + "placeholder": "​", + "style": "IPY_MODEL_93409ed1e4854c5e8c794b311beb4f0c", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 379.56it/s]" + } + }, + "bae4aba7341c4ae0a96fdb27e3f5e432": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bae6c11c85eb402dabc798a9b9551152": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "baea31b1cd854800905a4d8a71d1649d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "baf1c42432874c9fa4493f79c534ce88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "baff051f830a46aba2168220bdfaa1cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2906a68c55dd4f5788894d776283eb51", + "placeholder": "​", + "style": "IPY_MODEL_5fb2d772a222466f8936baa76bce5735", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "bb32da9d4e7340698b6d451ae3a0a1a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bb58fb3e895f4b8b9a43e357282c14f3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bb60a15cf0564eceb5d88403bcb4ba6b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6507dc28d3bc478abf68c092228adc9f", + "placeholder": "​", + "style": "IPY_MODEL_40ed7d799cfe4e758279e9b50b2c7bf1", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 458.51it/s]" + } + }, + "bb67edd383bf45939d3f16e3f533acd9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bb69574ef4b14ee59cf8fcfacb60508d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bb704744b08d4dfaa4cc663610cf6083": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bb73e111b3b048cdb0cd292b5ab2e247": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_62e0a3c689d2488f8ef53fae528ebef5", + "placeholder": "​", + "style": "IPY_MODEL_d672d09d202745a1aabba9b56e2df710", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 646.26it/s]" + } + }, + "bb774b02cd0e4d6cbde10e5e79dcbf81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bb7c0fad56a74122bce557f097afd4a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_890c9f45875a4f1e9a96b6d5261ec732", + "placeholder": "​", + "style": "IPY_MODEL_daea7b7945d846f68aed0ae97b93f1b8", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 210.99it/s]" + } + }, + "bb81a24c1224462db69e6ff10f3f087a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b5f379e01b4d43a2a6aa502939159188", + "IPY_MODEL_4c7d60456c7a48328879a77d4dd02a47", + "IPY_MODEL_50cdcf74d92d43eead1cce6521468fb5" + ], + "layout": "IPY_MODEL_b5f4380068e74650976631f64c6e86cf", + "tabbable": null, + "tooltip": null + } + }, + "bb90319b1c9b410a9782656f06ed9f61": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bbb2bde943084e07a0ed3e8dea1acb92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c12fd4580f0c4ab598ffceac66dde9e2", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a0a85393bae949fbb7b87cb16dbe7eff", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bbc7e5d7ccbe49be9e1d71c3a24702ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bbd1f22d73044a64ba10955010824276": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca6cae8d1e3446e9a767e409766cc1ec", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_aaba8364457348d9beb8fa4d122461e3", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bbdc8300574e444f84013f84c05e6988": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cce184f4c127468489d042d11a3595ef", + "IPY_MODEL_271051a0c53041749405aabd0b359a7d", + "IPY_MODEL_7cda94b719804a4095c4baac643a7961" + ], + "layout": "IPY_MODEL_008de6f8b71f4c159f5646f67498ab6d", + "tabbable": null, + "tooltip": null + } + }, + "bbddf00d02a644d4851bd672873a4826": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bbe02366fb5a4fd8937bfcbf3259f281": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bbfc629e42d14c56b3e5efc13c201f6e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bc01bebff01a46c8925c1ff6b733e894": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5fefa2abb1ff435d88e935868e11a47d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2becd62f36f64a83b7073ff56f323e12", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bc19242a43fb49eb9062d01ff455b822": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bc26889b776c4512ace34579f0e8f09f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1c992f3d614d467ebd58e02a64e7b928", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d98d214f1b7248c682d509b3117839b2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bc33efe4aaaf4cc39bc6f674f9677636": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_20e8b09edfc64794bff184cbed8f285f", + "placeholder": "​", + "style": "IPY_MODEL_7d60c1710a58415383234b14c171f2d2", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 398.20it/s]" + } + }, + "bc42053ed1d34f048c1516be3612e159": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bc53ed67a59c48338115475dc24c8b50": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e3810e3b5dda43f8aa4e8924ed34b96f", + "placeholder": "​", + "style": "IPY_MODEL_4434858cca8747c99b45416308ee07fe", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "bc583d914858463189d3e45cde1f285d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bc6b35e25c474bce9d0a1538752b8d1e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "bc72f226868f464280e5cc84c415e810": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bc77a8b02c574130a6ad1ab4196d1a54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9a87977cc35249c39c7668e5c1f52537", + "IPY_MODEL_19dc7d5a212049c89e58d87ac9f507cb", + "IPY_MODEL_2f31b69eef84498daa160e93887c6870" + ], + "layout": "IPY_MODEL_50928bf875ad4e508d84d08f7bfcc5b3", + "tabbable": null, + "tooltip": null + } + }, + "bc85632f49d24e72ac083e347b6b1ced": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "bc87c151a5f24387bd83a9d80698fb42": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bcaf57cb355943eea8d3bab98537b15f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d5fbfee98dc74d5887d54450a1134c4f", + "placeholder": "​", + "style": "IPY_MODEL_79d4fcee5151413bab9fd31550bca9ec", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "bcb610bea90047c1929dcb039be33a4e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4756d53e69ef41a4b181fdda1d2b9644", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ac3d524f589848538a6f10187a37cc59", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "bcb942d6a80f45679194cd105b9a542d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bcc49348b572446f941bcc5874e9c2fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_762b5d1dd3e44e4185ffe25368127f59", + "placeholder": "​", + "style": "IPY_MODEL_e8ed2cec90d24915beda9fc1f7c6bb9d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "bcc4e13dabae4ee4a510d5c993aad239": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bcc5efd5547448f282f6add838d91bf9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bcd704697cba49ab854d4945518a858b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bce44e02e5df444fbffb7d9584c91654": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_00bf8343e26a4a47b436ff0f06677110", + "IPY_MODEL_2b7f5e1712fc46fe908a0c07dd921e82", + "IPY_MODEL_fb0767727cbf41738f19b49268d5499b" + ], + "layout": "IPY_MODEL_3b5ab2cb73b24053846b8ca347a62039", + "tabbable": null, + "tooltip": null + } + }, + "bcef891dffa14e1493a37b42c7cc0eb3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bcf18544ad2d4d3f9237bc1c76381743": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bcf48dcb1e0a4ffead20bd27e0b73fce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e3287fd297de4d238e7dc77f15221123", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dc5430463e414086b2f6e8987c5bb6f9", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "bd02cad8760645b280c6d804389ea4e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_930211cbc10141089f28a283c5e2b0ef", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bd453c4bd9834e7fa60098a82d437314", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "bd28a60302a04033955e6d5fadbc863a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "bd2d52314620407c909889195cd8f8be": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "bd3961811b2b49959dd359c2e4d25b7e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "bd453c4bd9834e7fa60098a82d437314": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bd4ca914e13c4edca8ed64f48d8f6492": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4ddbdccb7cec4b88a919352e83c693df", + "placeholder": "​", + "style": "IPY_MODEL_f16479aff920488e9b007ccad2415cfe", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 308.92it/s]" + } + }, + "bd550a78dcf1405a8a5dbca5add06a92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bd58df2167774f7e9905f55a3faa89be": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bd79b3e38b3f474ea8bf5593feac2c10": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_99baca80ad0748b797e1913f3a5aaa85", + "IPY_MODEL_b7b5e9dd5c6043ea96d7d4739fe6bf19", + "IPY_MODEL_bae0032ace9744d1b564ac3c8ce49cc3" + ], + "layout": "IPY_MODEL_1e555ab24a4e46dea55d0ee129625180", + "tabbable": null, + "tooltip": null + } + }, + "bda96cbd13f04156b35e6ee79f5ddfed": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bdb440d76b0c467cac80da742273c215": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bdcc0adc6f664fdeb8e0b9ac5a8c351b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2f939f1ef2994ece8e0686504f2651ad", + "IPY_MODEL_080bf20e60984b84ba18c108b338ae33", + "IPY_MODEL_d0a11883725842ec86f36be6b22aba9d" + ], + "layout": "IPY_MODEL_e3437d96432c49b4acc5c7abc975cce8", + "tabbable": null, + "tooltip": null + } + }, + "bdce63d85fb74c89877c12b74fad36e3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bdd2b40e41a84614a8fe9b34acec3e38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_58122bcdc5204e46af00909f51efdb1b", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d58e1e05807f40938bf22707c979579c", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "bdd954b66a0245a0ad05f5752b7fb353": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8feee7efbfe14082a76719ffae1b4eb6", + "placeholder": "​", + "style": "IPY_MODEL_ab3c6dfd7fa64c60bf5336405e948ffa", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 156.70it/s]" + } + }, + "bdead6e52f8644889dc25d1546318c11": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bdf8af60adc64cbba4f526e7405d7e6c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dc8ac6011f354884b16684a0c7180c9b", + "placeholder": "​", + "style": "IPY_MODEL_8d4e242b49e241b193cceb2291bfc047", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "be00bbb885b6405d879c6c53ee0dd6f4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3feecfcb9a74aee82558412cce147f3", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a5f9b08c85d349798c4bedd1db6c9dff", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "be08f0677da0446182579b047c1b865f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0c29171ea7d8495eb219d290d1c3b02a", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7b04328164824529b61e61d5312d6275", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "be22d99043a041b98135c66b9eb5596b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "be384b3fd24f4e57b61662c11fcf8d3a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_40a0e89886c1447aa9b01623008c2c2c", + "IPY_MODEL_39bfaf5c5ad646f8b1d413da5502067f", + "IPY_MODEL_eb5d188e0b184067a6175fe64fccf96c" + ], + "layout": "IPY_MODEL_b94bdd3aaecf46f8b319da395b406b76", + "tabbable": null, + "tooltip": null + } + }, + "be3a6f6c809d4b87819e85c434c1d67b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "be3d6642fb2c4770969ce530343ca324": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "be40784ccbba4a2594f40e451b475574": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "be66b3f99e4d469f8e0d25c4aab45aa4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "be75c47c1a8a431b9300b0d00af34886": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f369728feead40a89526cb4ebd4fcf6f", + "placeholder": "​", + "style": "IPY_MODEL_2434ef00bbae45d5b45463823ea50ce2", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 821.88it/s]" + } + }, + "be92e115a17542f0ab9e3b16c456774a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bebc2dd457cb49b882757327b3ed5ae9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_38b9a3fbca4445b7add262184c4679f9", + "placeholder": "​", + "style": "IPY_MODEL_1671eacd7d0d415c84a3e9e7263e6749", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 506.24it/s]" + } + }, + "bed732f7bb8c471ca0b5c4c43a428cc5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bee91f7163834a99b6b3488e134027e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4016d07f48e4e35960ab2a719e72a82", + "placeholder": "​", + "style": "IPY_MODEL_d414fc34a7a547ca8d467cb4d8330915", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "befc8c1b6e984dc5a2bf52c49d059ddc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_58054c441c3a4d458ba824a38e0a8cdd", + "IPY_MODEL_4d0a237a30f34785b78b9280d0e73085", + "IPY_MODEL_72e45ead177f483c894eb678c1efce80" + ], + "layout": "IPY_MODEL_63f3b2476e6c490a99134edf457c2e4a", + "tabbable": null, + "tooltip": null + } + }, + "bf0ed5ebab1140ad8126aae2c8116b21": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bf296c6886d4431982db7f0fe0580149": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8f53e4217b3343e59df9d4bcea1628b8", + "placeholder": "​", + "style": "IPY_MODEL_b8bf8520bdf1469592c0380a3cde5511", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "bf3ed513eacd4971ae713889edfb6c6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bf4d6e2efea34ce195383c2ea0d6a06d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dd89fa0fefcd4f62a2990ad7c27e232f", + "placeholder": "​", + "style": "IPY_MODEL_636186e5d3ce458d9dd8cd91510cc8f2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "bf569a9beb5b4ef299e0f9e2e5f1e398": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bf5b7de1862c4f879e1136d1f128d2b5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bf792c29044d4c38b76f2ad756e03da7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e519f9c0f8b847f9a07c1d72b976fbca", + "IPY_MODEL_e2ed3ff026a541e981e8596a1bb27627", + "IPY_MODEL_aef0d977920e4ba68fe0e7a607b6263d" + ], + "layout": "IPY_MODEL_cd7137ef9eac4e0e941835b4aab96422", + "tabbable": null, + "tooltip": null + } + }, + "bf8748d4ac67479aa3bd430c9ac80f16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_96219153d9cf4793be39e66ba18217e3", + "placeholder": "​", + "style": "IPY_MODEL_8779f436ea0c4769bed697c150a77f0a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 347.96it/s]" + } + }, + "bf963259323a48b7b144d9c2f8d4d03b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bf9942498dfd4608b70be48202d07859": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "bf9bb1e892314eb98dbbc19b66252a64": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bf9d1c070bca4724bf1587803c672003": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bfa0013683424a43933340a4b87e7bfe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bfa33fed0050457ea3e011eed9076690": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_714b6c4659164787a4f114dabaaebd0a", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c2adda5b6f054dfbad7aa7e71c4fdb18", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "bfa71fe0b9aa498e9fee6a685a14423d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bfa8f4398ccb45118642300fa8942d9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "bfb904663981447bb712602e62891de1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4156563103e84cd1bca29e2cca6af124", + "IPY_MODEL_445f602139814c34b1080c520bd57fc0", + "IPY_MODEL_275a210ccf54471eafea6098bf64dcf7" + ], + "layout": "IPY_MODEL_3dd9e64f1abc479ea1100a88b54464d7", + "tabbable": null, + "tooltip": null + } + }, + "bfbe280c2012429f9ebcf7802b4baeb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "bfd9a995319c4bb5a06d93fa59787b8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_51f388e9fbcf4763a768c64352d74d24", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_964604801549496da77ddb476c3b6f76", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "bfe0af1ed6b74c298c3b49dea92b102c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "bff1ed49f1fb4b58b9c26bfab61423e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c0023d558e8249c786bca81094a356e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e2af8ddb4e644fdf938c62fe475cb492", + "placeholder": "​", + "style": "IPY_MODEL_de4d6e96cf8249a991f5343591d514c1", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 675.80it/s]" + } + }, + "c00a7462b8bb4abe93fec4ccf0f952d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c00bc269ab744fe4b8a7ca3ef2fb2942": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c02526a5b80149d381fad6fab6543990": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7800264333384749813931fbde9a454a", + "placeholder": "​", + "style": "IPY_MODEL_eaba3dc072d24bd19eb290f6be84e92d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 539.70it/s]" + } + }, + "c02acf963c514180a3b824c7d337dce2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c02bbbb2ad634a5796658e5a0188d285": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ad76f346780c4b928726d6b0a8730d55", + "placeholder": "​", + "style": "IPY_MODEL_42859309b8894a909a1707e2bad2ddc1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c02e1681b1a247a29b248f8e8c7c141a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d4d9f0b3a3d544b2aa03d8814845e74c", + "placeholder": "​", + "style": "IPY_MODEL_3eaf1c7f32954fe796526dc2f0796783", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.59it/s]" + } + }, + "c036e344e7f24f7da48b3eb961b08cfe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59cc8102a7f149c991a04aeb4179fead", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e2c792fcb64e4a119570a359d6335cb9", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c04a1fe114a141a39b24f8ef624e1f39": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c04f57037d4f4b289ea581d9468add17": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c05032a0c206430994c49f08a8105b11": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c05379f7dffb4c08961f53a04a2c1b43": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_444e2ce70d6a467f9989d4e4e9f27d43", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c2731338ccef4fd4a983a311a2c2f65b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c0568aeaaf464c448a81773342ba38a1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_56e844d5156545faaaaf1edcb19d6452", + "placeholder": "​", + "style": "IPY_MODEL_d9fc0763a6ae4494a941985f7353a735", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 360.61it/s]" + } + }, + "c06e825534814c1f8942b2fd0e719833": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_972a5eabbb80496b9c7af5003212999c", + "IPY_MODEL_c51a351669ed4273aff093333bd8885a", + "IPY_MODEL_aed4671ac32b4f03baabea251d0c0753" + ], + "layout": "IPY_MODEL_b2c2f4f723ac42cd87ee963f32979ce8", + "tabbable": null, + "tooltip": null + } + }, + "c07a0d1af5b34ca790851b9b6c3cc1fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2fd722c6ab5c402aac511db757976db7", + "IPY_MODEL_4d3920fd59c94a76877684760df2d524", + "IPY_MODEL_14c4804e068f42a282fa1334bb4b0756" + ], + "layout": "IPY_MODEL_3318a28604704f2bbae679f7e4bfbeab", + "tabbable": null, + "tooltip": null + } + }, + "c08aa994bbfe41e18f68c132849e61d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c09e2e692442447d801be649af33f5fa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1313ad2a9c18470ba1c9cd5a5907a69b", + "IPY_MODEL_64a2352eb6dd4b9fb9db52d9a5cc68c2", + "IPY_MODEL_0e29675d2d15419ca2f41f88d8e86021" + ], + "layout": "IPY_MODEL_ca8202de135743b8843497d25e00aaa3", + "tabbable": null, + "tooltip": null + } + }, + "c0a721b8e9e449f99a4cea51695f4e0e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c0ae7ab4d1ee4eb49b2b6c1b3d53f414": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c780628f3cfe4c6bbdf40e549ebd598f", + "placeholder": "​", + "style": "IPY_MODEL_09697239de6849e198edd79634cfcb74", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 351.02it/s]" + } + }, + "c0b06c546bf84f3b8dc646bcfa40f705": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfaf653e56304665a5ae159515397e56", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6d91b5e799c448e08b04911e4d5359b0", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "c0b56f0139c641f98dd8a67792944211": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c0c87d49f9634f9f82cdddba5480defb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c0ea6fc92e5b4d08a57e6ccc5594714b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c0fdcb4fc2c0411bb7ae833ca060abca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2d9002835d2a4c8687ba1dbea09c23ff", + "IPY_MODEL_23583a58302c41c38594d0da7bc5cbae", + "IPY_MODEL_97fdeb9eb6da4c47be755652c6f37e79" + ], + "layout": "IPY_MODEL_952b540770104706ae1145976e97b7b1", + "tabbable": null, + "tooltip": null + } + }, + "c103696916cd408688c9fc1e9573da36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1ac780aaf8af42f1bba1245f82584b81", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a839eca31aeb4b8ea74fe121ea8b3618", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "c10a80e94f554ec7aac04a8e1b354004": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c12fd4580f0c4ab598ffceac66dde9e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c130321970cd4ef69d6567c25d4087b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c14485a475fd4b65aa5096a7dd1e0728": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c14d771c2b0741c481186baf83173816": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1c36d8721fe24ed3ad5f9e15de3d12a8", + "placeholder": "​", + "style": "IPY_MODEL_f7018236a3f24471a025c492c7f912ca", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c15314f579ce4816ae5124e9b8255140": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b9b6a6bc4e694e638e05eb65f37e40dc", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_be66b3f99e4d469f8e0d25c4aab45aa4", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "c1608faccb8045ef9c596d20b6ab83d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d426d8fba5764e0ebfbe72d329af5e71", + "placeholder": "​", + "style": "IPY_MODEL_616011a6d0b14a509dd126b411f8b6c0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c169f02b4204490bb077558716d3774e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_28ecc41880174174b506f91d6369e3f8", + "IPY_MODEL_521f26ac1a4d4ddd8130b8ff666af0c2", + "IPY_MODEL_0ea89c62803c45508647e1fad1937206" + ], + "layout": "IPY_MODEL_603cd449eb134405adc8a9063142b0ec", + "tabbable": null, + "tooltip": null + } + }, + "c18c6fac13134dd4adf7bca3156870c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c1add57a26ed4cea91c81f8d331993ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c1bb3b74024a4c54a664e27e525831a5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c1bf928151124e86bc0d1282db032dea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a9434f6e114c4c1b87f112fdf7a8c001", + "max": 6.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_316bb0702ae945d9938eff6435d5e680", + "tabbable": null, + "tooltip": null, + "value": 6.0 + } + }, + "c1d286d51e5c449eb8d0969b804052bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c1e1195f96684354a960bf5aeed20d1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c1faecae60a24cc4b531746fd29fc7c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5325ec552131484ebac5444714323eab", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_00e31d72060947f0ad0b81aaf7681ee1", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "c209bda2033f4d918816b786e231731f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c20d163d4b834acd8533d74ced60bd3b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a606f403b79749f2810204bb85ef2de9", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c18c6fac13134dd4adf7bca3156870c5", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "c20f403f0a0e478a8ada6ba07e9b9c66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c20f818faa0a4128b4e99de14c34980d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_15aada9145a44c6d9d06024a38c96537", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bf9942498dfd4608b70be48202d07859", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "c223a39f85fc4256b165b1a33d078b70": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c22cb3e8ff3b4a528a108cb6eb4557ba": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "c241336a4cc04e2d90181b13b3ee292b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c37ba79ae6a84a028846ac9aa3cd0b40", + "IPY_MODEL_73202ecd14224720abcf3395b2e4f3f5", + "IPY_MODEL_331e2d3dd67043a9b255ab812f07ff26" + ], + "layout": "IPY_MODEL_146c69cb04ba4337ad44eeacf6bc9c82", + "tabbable": null, + "tooltip": null + } + }, + "c25ff2659805402b9fc1f58232ec579e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c263fc60cac64b14bbf6247f43e20f12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c5f62b3de76d4ca5aab810f4d9e711f2", + "placeholder": "​", + "style": "IPY_MODEL_dd825feacdd7416f822ea5cd58f453ee", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 539.58it/s]" + } + }, + "c265cba7e2c94604983e1bf84c30eeeb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c2731338ccef4fd4a983a311a2c2f65b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c27fdee8a15544c5991535a6a91f23b5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ef56308014e8433ea6448b2b9ef346b8", + "IPY_MODEL_13cbd387d2344418bc13470f66458aa4", + "IPY_MODEL_4af95ac2f38044f0bd2675cb80a478d1" + ], + "layout": "IPY_MODEL_3f7a47bb2b3d4d66a175876d94c32782", + "tabbable": null, + "tooltip": null + } + }, + "c280132d2448484cb90c502f9aca0da5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c29e43d296414855bbd42f653292b045": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c2adda5b6f054dfbad7aa7e71c4fdb18": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c2b6446d78814802b1eee631cad8dd54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c2de20e5a8b14849b934a104b23c2419": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c2e138655c454687b6441ab6f035c35c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c71ac65f3ebe40188261b2b1d100c064", + "placeholder": "​", + "style": "IPY_MODEL_92d84139e1604955ba99e864388ef411", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c2f9c6471a4c46ad98d8708ef9e398fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_83eb906573aa43fb880d0ca26e108d5c", + "placeholder": "​", + "style": "IPY_MODEL_02e339fd04d04b1cb37d4a0104ef40a7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c2fecfc08af44d1b8a3f8b7b278b692e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c312dc0c97ea4bf59361072223d5b4d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_30d5becb9bff49518630324d4d63daef", + "placeholder": "​", + "style": "IPY_MODEL_4b1e24c034174cb98663deb28dba2f91", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1183.94it/s]" + } + }, + "c33080cd7ea34fa4b427d7b1fd46435e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c334276ed3c4437cbb3e50c08926f555": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c337343056c147c1835ba6856f456244": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c3395f903c1941e9a52579eed16898fe": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c34566599af9497389a13ab7801c70cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c34cddbe44584f60980b686c12c63b4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_32a0ced695004950991cf6ec82eb36b4", + "placeholder": "​", + "style": "IPY_MODEL_f6c0da7644f844bb85e5b7386e0bf5a2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c35d490bb7fa4db58f22ac0a3d02104e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c35ecc2f0a6e4c138b78b81c1ea7d8c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_07fcabccd9674009bfbbc3fa56b4f28f", + "placeholder": "​", + "style": "IPY_MODEL_e605562b476d487380b213c7e9b872ea", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 192.02it/s]" + } + }, + "c368af5693cd4a25b26d29a623f51e7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c37b540b10064278ab1e971610a63dec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a44ffd48aeb4463abda7231b3c018c6", + "placeholder": "​", + "style": "IPY_MODEL_870854f84a104467be5d8ae6fc753501", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 912.33it/s]" + } + }, + "c37ba79ae6a84a028846ac9aa3cd0b40": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5d269972da3f4486b139118708d3ebe5", + "placeholder": "​", + "style": "IPY_MODEL_d4979e8790e04d8d8395277c04c2f3dd", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c37dd5ddcbb148549664f3c7b062ce12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c380604deba44fe8a873a836b5fbb0a0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c3844353c9ea4d598564c46d9f5915c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c38c180f953644eb876f5587c3a06c91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f75a6024007d4e76a392fd3d20fadd6a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ca4a7abafdc54a7db332a9cfce01f74d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c39a655e363640309db18f83b4ea7884": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c29e43d296414855bbd42f653292b045", + "placeholder": "​", + "style": "IPY_MODEL_e842a4e0034647b59d0fee54f1ba52ba", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 345.42it/s]" + } + }, + "c39c0dd0683f41bf8686fd8b3d728a7e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e46913e570f246d8a81fdc49cc99434b", + "placeholder": "​", + "style": "IPY_MODEL_f64bd9a66cea4762a0c2e8ecddf864ab", + "tabbable": null, + "tooltip": null, + "value": " 188/188 [00:01<00:00, 131.62it/s, v_num=24]" + } + }, + "c3cbfe46880e438caed8a24d8c401a5b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c3d8d20684884ec085f97ccc319ded09": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c3fb04813b3d4b049e65a29b0f5447a4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c40c971491494113bfd3627acdf689c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c414d7c5f0e3498a9906320c53b28d1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c42c155ff1ef4e7b999889f0ed28474f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c43f26c5a5f7461290abba9ea6545433": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c44a6bba01d6481e8d3b444b0f698b28": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c44f8224a5ab4aa5a5e58d7c02f4bb53": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_798fb86dd1b3494285bc9d4359881eca", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6d7220fdfa9a4984baf2c42352feb977", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "c45f32234e5f4e62b1b483b5a43c9cc3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c45fec8ae89b431aad7e9e52615156cf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c46a99dbd4424b5d80167cbf906aedb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3e7f7e5363c4d0ba99b74dc7db30bd0", + "placeholder": "​", + "style": "IPY_MODEL_1920b482c01e4399935706a1edeae099", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c4701190578844cdb3dc0b5542f5a33e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9e2154d74b6e4f6b8785c8ddd3054021", + "placeholder": "​", + "style": "IPY_MODEL_c1e1195f96684354a960bf5aeed20d1d", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 301.03it/s]" + } + }, + "c476541a3ca74781bbfd62e02916928b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c4779e61f9904e1b8a8acab5294d0aff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c48441cfcfec4730ba7ab50ad26a2819": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c48bdb3b4f0e4953838e408b266486a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f58bd49624747b29c9e5a96aee06262", + "placeholder": "​", + "style": "IPY_MODEL_89c4b33d6510457d8ffc18b5724df374", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 750.38it/s]" + } + }, + "c4a101a91be6405ba591527a674d62e8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c4a2e01d30bd43d9baebb3a5d2fd8dc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7bfc4cbb191f48d99c2006d7e5b149c7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_97752d3cc3584413a7e822f96d8d9a68", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c4af19b09ada4fb1969a86cb85ad50e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c4cc49c244f14bacafc18bcd5f803b2c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c4cce5027e4348dab124aba31257755f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c4d0b48fbd0a45129651046e12550bc5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ce5a0aa7588049cba7ce92434d6b08e2", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4a1183cc97024fb483093a5efde19af2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c4d3605101f645ef9388caf44a2a2aa0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c51a351669ed4273aff093333bd8885a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a3f022aef68f41df9407cb6836470e6f", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8a9e9862574547a9b352e04ad5ae2e8a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "c520605694ca49158bca1679e5987432": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2be4d387fc4843a599ba634c1d998ec6", + "IPY_MODEL_4569506400cf4ec3b805966c2ea09131", + "IPY_MODEL_0f3c689f666d40d3962f118f67109ec2" + ], + "layout": "IPY_MODEL_c45fec8ae89b431aad7e9e52615156cf", + "tabbable": null, + "tooltip": null + } + }, + "c52f43e153714f40a919f051ff0c7d92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b34ee5bf16b441d5a03fa82b086d8088", + "placeholder": "​", + "style": "IPY_MODEL_3bd13cac76ac4ba29cbd5f2147e4a623", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c531fb2f7d5244ad8d0c0e4a4ee028c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_900e61446acc440eb1203d8f1e839766", + "IPY_MODEL_aac282150cbe4ee2ab2262a1e6236a49", + "IPY_MODEL_9d0f1ebf22804049b7aee6c7e3b6730b" + ], + "layout": "IPY_MODEL_e162f4dba67847af897538e665cd2ab9", + "tabbable": null, + "tooltip": null + } + }, + "c56806e745024bc291511d5ce771ce28": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c56d7b0a95da44e995bd82eec50152b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c577b6ce25814d15b9cdfcb94ce7000a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c57bc8ba68d144729b19ba47f0d2c05d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9d6b3bbfc9d940369660b3a6a1aac42f", + "IPY_MODEL_87d0be865ca7436783b7a34b16af7628", + "IPY_MODEL_01b5f4673fd54452b957fba9dc7235b9" + ], + "layout": "IPY_MODEL_ef99e34c5f984adfb528fa25c4fc7e93", + "tabbable": null, + "tooltip": null + } + }, + "c5912f206112487eae4aa2a112779a75": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f2081be33ba44036810ad1558c02d608", + "IPY_MODEL_0ad04a891d5d4d7b8606d7ea063b887e", + "IPY_MODEL_660e4b505c224f50b8a17b13639e9fb0" + ], + "layout": "IPY_MODEL_5dcbdf822e384b77a02c2c2e14556268", + "tabbable": null, + "tooltip": null + } + }, + "c59bda451ad14e22a9ea64ba97ee0e6c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c5a9dad2d9544081a7e9fc9188f1ff34": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c5bdfa6cc30b41b79995fef2b9c451fb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c5c542bd371e44bd8bec2dc8abdf402a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac87b861c17e4b908c5c78cff305b41c", + "placeholder": "​", + "style": "IPY_MODEL_6b92553e893a4997aa939ccc033de154", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 365.98it/s]" + } + }, + "c5d6f787ef3542b8a1756c7a8d546ac6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c5da6bc3631544aabc26a90664c9105b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c5e62ef036ba491497ca22be3b1072a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c5e80dca6a13474f89a242536eb9a1ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1d6cc50b276d4adb8ca5b06871612f6f", + "placeholder": "​", + "style": "IPY_MODEL_01c4e3a4288245e5afebe743601dba02", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 382.28it/s]" + } + }, + "c5ea828470e74b17bcf19b595b85c70a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c5f62b3de76d4ca5aab810f4d9e711f2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c60ac6c5cfea4d7f88acf62b2fb9be87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c60fe298973149dbb61443419d75dfe5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6e8456b9dd194ff7b18ac53c0b0791f2", + "placeholder": "​", + "style": "IPY_MODEL_62a959434ec04ec191969e96236bcdaf", + "tabbable": null, + "tooltip": null, + "value": " 67/67 [00:00<00:00, 134.49it/s, v_num=61]" + } + }, + "c616c69be7ba4d35a21a85f86fa68c2a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c63aadda0ff84a8d916c226ec25746ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c64a39778c074f2e815f91d7f1e870ec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c64c383e880b499db2f7999e9d5920dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c65141262d4a4923b9fd66715da7dfcc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c6596f7cedaa4d8cb0728c21b9dc6cd6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d9799842a568443ea7ee79caf7aaa0a0", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_84a58f60313c4b47ba044d531684d183", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "c662735ca7f64e2692cf851f83288480": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_13df1ac621cf4016bc32e033aceda028", + "placeholder": "​", + "style": "IPY_MODEL_447e5dd6d8e0490fb9eab485e3bfde7c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c664aa61fc06400a89721c5000173cc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_72309e078e194f9199d470c816438196", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8ac583a8f0654d4883c0aa68a4ae2fca", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c6657e054c654a10bc5aed92c2546081": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39010ef0ac2941e5a783e7b46ce80c5f", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d6e0170bd82c42dd9aa4b08fb42a820d", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "c66ebc1c27dd473d8fd43f5fbd5d174c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_df7a48a198074717ac31f7e7bef39cf8", + "IPY_MODEL_40c91fe9199044449263986192084ec4", + "IPY_MODEL_c5c542bd371e44bd8bec2dc8abdf402a" + ], + "layout": "IPY_MODEL_6f27f368cb1246748e1332748fb7775c", + "tabbable": null, + "tooltip": null + } + }, + "c6778f0f19b5429fbfe9b3c393f35aee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_648ea47ce78245788c8cd94617c359f5", + "placeholder": "​", + "style": "IPY_MODEL_2e50b54745a34f1da40cf1447d5d0937", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c67de6d754454a28a4eb9da14cfb9b45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b33074d8ee914d21823cf7d6034ab582", + "IPY_MODEL_64a1c333e273470cb9f8fd67badea44a", + "IPY_MODEL_4cd3ea7c87944c51a7d84aa2142069c3" + ], + "layout": "IPY_MODEL_29b480fa2efa4cfeb51c6c0b18ed9d72", + "tabbable": null, + "tooltip": null + } + }, + "c67ff364b9494e0393c940759504e11a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c68cb2ae3cb7470c818018e1cbf99c53": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c76828c62ab34d2a8f611bf6bc4adff4", + "IPY_MODEL_ba8325900613445b9ed0d6e42e16092a", + "IPY_MODEL_54a06d58a8134b59b29b1f9436811c8c" + ], + "layout": "IPY_MODEL_5b33082db8794308bc0a8bff3c8782c9", + "tabbable": null, + "tooltip": null + } + }, + "c690985141334d6cb5927b912433934f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7fbae615b699446da175c6ba480ca97c", + "IPY_MODEL_88b6f66d7036431ca994944aabd221c9", + "IPY_MODEL_c37b540b10064278ab1e971610a63dec" + ], + "layout": "IPY_MODEL_c45f32234e5f4e62b1b483b5a43c9cc3", + "tabbable": null, + "tooltip": null + } + }, + "c6aa2b4fa7f24a299167fd8fc666a222": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c6bb62102d444b0989fe8a45e4c24739": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c6bdaba372b14014a3e7a25109447342": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_01acca08e682446b838ef146e893a5ca", + "placeholder": "​", + "style": "IPY_MODEL_15a49d779c644cbeaa47bc0f81f76c06", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c6d118e2228946ee80db0ff984a7dc54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c6d5e50eb5d54e8984e28273d27ffd38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c6e09aff54ac4bb1b073f0269a6a9860": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c6f0275f33b1453995a3e92145c16767": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c6f435780bae4a9a9cb3749c9e4a7ee5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c701aab8df454b74a51f8f587726700b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c716c87c0c7843879c38eb3f4acda6f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6039a69885fb49e99aa6d80738c5d531", + "placeholder": "​", + "style": "IPY_MODEL_bf9d1c070bca4724bf1587803c672003", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1004.14it/s]" + } + }, + "c71ac65f3ebe40188261b2b1d100c064": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c723cf95f45d462d978c636a8d0e6c16": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c730ebc0f94349f5a677807ab8be6b81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c758ec84de544a449d86d16fdf15df09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c760db4aae69449ea3e1cf86b14d1041": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c76828c62ab34d2a8f611bf6bc4adff4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe7b7f43d083403ba8251e70a408837b", + "placeholder": "​", + "style": "IPY_MODEL_0977426f25b44379911da8fef0ba6de4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c76a785f3e7f4c1591aef5e08b2216a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c7742c5b73c24958a4ddf196a0f1cb2e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c780628f3cfe4c6bbdf40e549ebd598f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c7839eb073664b6ba98ff1c4d1a41869": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b879508009604f32a37d1fed8c824b7f", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f7dd3df78fd94372ac4e579e55f9bdbf", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "c789908edda2491ba457b27c73220632": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c79bcd72253f4c48b3db5eb10b6a997f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c7c5e5f98571429b8dd82815442cd626": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0a196f40a7864503bca013d914afd5fc", + "IPY_MODEL_be00bbb885b6405d879c6c53ee0dd6f4", + "IPY_MODEL_adbd36a4d1654a1d9d4de0e765e78721" + ], + "layout": "IPY_MODEL_0d93d074468e4a1b803748668c236bcd", + "tabbable": null, + "tooltip": null + } + }, + "c7d942ad2d7c447eb68fead583666038": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c7f1649b540a4f70bc06112eed0af247": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c7fe02e0a0814dc881b2406fbd1f6fa7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c803ba64a1e64f8fab05d6de95ba2742": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c80814c7fe19444e9d8bd5269eace547": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c814b9aca13043ddbaa34067c87e6935": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a337450adb6647aba34e740e6307348f", + "placeholder": "​", + "style": "IPY_MODEL_4d603de06f9f4736a532877250e9752b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c821f02c7ee74661b26608f1fc1983fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6ddf289a72c243ffb3a1672bac0d5c72", + "IPY_MODEL_575a806ced1e4ad482049268b121f262", + "IPY_MODEL_d1952fb6cf0c42a09e51e75c9d3b4d23" + ], + "layout": "IPY_MODEL_8ca8d4f0ae6f4264ab4c6a3484a4dbbd", + "tabbable": null, + "tooltip": null + } + }, + "c82ed281b37f49f98932886ab76985ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c833c0fd20ae48de883feeaf60a8ab09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c846bb1082934db78e7508a4c200bd83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c84a97a9fd85433298d9331aed739621": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a418de3038fd4093a2b83e9b8513a322", + "placeholder": "​", + "style": "IPY_MODEL_e5e612e6460442e8a28c6169f9d6d1f2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c84c16e1dd94405e994fff5754378cd5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c87e8eabeb734401bd1b8dbf97395190": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c8a352e5e7e042888219986d265acaca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c8cfbfd6625a4c6b9238972a9e49f77c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c8d2e2b754da4065ae05961bb047a5a3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "c8dcd72c79e84b5ab8faaa3beea84efb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c8e965cddf2049e2bd6ea9bfec4acd73": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4b0894eb6c094b999af4866564d386f0", + "placeholder": "​", + "style": "IPY_MODEL_c7fe02e0a0814dc881b2406fbd1f6fa7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c8f2fdbf6475453db49715428e8ae3ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c8fc8ef9a49a4a4aba32b36fd942faa7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ca32b9d155134ec0baf3e0f45392f26d", + "IPY_MODEL_ae594e431d2c463c8779fdfde1495311", + "IPY_MODEL_05147be19f7f4f50afd1d6ad01a46aa1" + ], + "layout": "IPY_MODEL_e9d98acbf9234de994ae49b77016198f", + "tabbable": null, + "tooltip": null + } + }, + "c904482dbb3c446abc99f97815ced080": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b1221fec85741c2a36ce20be6233d71", + "placeholder": "​", + "style": "IPY_MODEL_99e0dd68193a4bdc8747b5c8376c4e4f", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 366.35it/s]" + } + }, + "c90fb1074d61496cac6bc440eb88eb56": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c91f3c9c30864cac837aeadca741c8f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c92e24411ed940b68fcca665abb041d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cbdc66099c1a4b9280d24f9f0cadf302", + "placeholder": "​", + "style": "IPY_MODEL_0a84710a8bf84b319a2b2e72bf2e9fdc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "c934542047e042d3bcbafedee744460d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c934c5fc9ff24e01ae9f2fc5700885c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "c9378817009846c2b6d386d4198be45d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "c953110112704b7a8966727e105a9fb0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eeab88f2715a43ef8855991e783fcadf", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ddfe3073603149778016e6dadbf67671", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "c95ed71e50d143ed94daa3f72707ddc5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ceef8e784ed84fbeb661a9f5c37f1fe5", + "placeholder": "​", + "style": "IPY_MODEL_2d104b704baf4fd0baa0839cac5678a8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 331.73it/s]" + } + }, + "c9a5bb22dcd44c8ca37c73d7715dbe80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a20cfab312704064a5145dbca4bb413d", + "placeholder": "​", + "style": "IPY_MODEL_2f766ccf9c6f440887fb5a212c0188f9", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 478.92it/s]" + } + }, + "c9b735eaf13749e18b1701a758b78672": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ca08ddbaca7b48fa8c9fbf89ccbac96a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca0d6a01341a41cc84ffacaa43f9ab29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5b0ae84d5efa4f81a5ab2dba6efe364c", + "IPY_MODEL_15435cab2dad4d6087e28e4bd73b34b9", + "IPY_MODEL_490b085de31743a5979732c3e5425ad7" + ], + "layout": "IPY_MODEL_1e4f66f7a14d45c695f0ce182e8dee51", + "tabbable": null, + "tooltip": null + } + }, + "ca12bf88e35c42f39aa3cbdda0823234": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca16933a17ff48c8bb1f4f4cff010460": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_57f14a9c089c4c55854ebab8e4b35969", + "IPY_MODEL_5b23ceb5ebf84d3ab0ecfc42d3cc42e1", + "IPY_MODEL_286f58321af24c4f97f45a932f563a41" + ], + "layout": "IPY_MODEL_8ba24c3651344e0cad2a388c515a2452", + "tabbable": null, + "tooltip": null + } + }, + "ca1c1a95c02f46588c9603928ad2c8eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f36d6d0d5e984c169ef5f50a16419513", + "IPY_MODEL_3baaa3607f194de38d7b5e5267f974f3", + "IPY_MODEL_5ff769452f3e46e4a360a0b1a6da5e95" + ], + "layout": "IPY_MODEL_c40c971491494113bfd3627acdf689c0", + "tabbable": null, + "tooltip": null + } + }, + "ca24a99c51504ec0bf3a1c38a6025f9b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7bee78203ffa4f5b932f7ba7a8daa0ea", + "placeholder": "​", + "style": "IPY_MODEL_e6e607425ccb47768056d4896be2cc4a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 392.20it/s]" + } + }, + "ca315ef81c084243b033bf3d1be2f7fb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca32b9d155134ec0baf3e0f45392f26d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c0c87d49f9634f9f82cdddba5480defb", + "placeholder": "​", + "style": "IPY_MODEL_f9334ab6c4064f9f9b7a18861b8fa554", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ca4a7abafdc54a7db332a9cfce01f74d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ca4db5acebef4dd58dbe1ece0ad0e02d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca6b7ef95fc44d5e88e3db591ddbb3c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ca6cae8d1e3446e9a767e409766cc1ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca721ab4f57f49d987f00db559fef55e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca7aa0d33fb54996abcd2f113c7183f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ca8202de135743b8843497d25e00aaa3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ca9e5ecce6fe44ca9233ae2c7b1adaf6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "caa9fac86ceb4646b7a2223e58136473": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "caabac481ab94afead2169cb88749caf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "caad616a66644153800e5ade86774e12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "cab7ecd5a7e04db390f3beb2ecb243f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "caf7b36b411b402abe084cb9efc576cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cb072b8b7e7f4823acd69e8090be31cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3b7d8b0adb3d4e828f2e56523a734f10", + "IPY_MODEL_3a9f765ef44e429ea443097445fb4571", + "IPY_MODEL_185abaf86e02479db4e8517d35d23dbc" + ], + "layout": "IPY_MODEL_f1c2baf2ef1141c99328dc945f182edc", + "tabbable": null, + "tooltip": null + } + }, + "cb09ac32b2d749a58427fe968abbec6a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cb0b72271177445384ca8ece4eeb8e70": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_91c962339fe444c1ad1033cf0e149d0e", + "placeholder": "​", + "style": "IPY_MODEL_b27312d44d484821b2a08adabbebf0f0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 324.86it/s]" + } + }, + "cb15e94218f44832875c30354881839c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cb21eb5d895245b399f4df963c50eb1a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a2c9a478985d4896924517f8a085d9c8", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dcd8fd96ecfa404287713a6b7fe18f90", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "cb2dc561a81344e1a64e975be181361e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cb48a72771d048eaa5716ca4947bfd58": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cb76283a458146c1a3b1ea093b662513": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cb78fa0f796f43f7b486010b8d8710e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cb8374118aee48279ee7ac84558e1ec7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bf3ed513eacd4971ae713889edfb6c6f", + "placeholder": "​", + "style": "IPY_MODEL_7b7a427029714a67a4a3dbbb1e8a2b06", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 445.45it/s]" + } + }, + "cb950ad1daff48e9970e804b3be4692b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cb9d54136ded492a82bb7eb82a85c024": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c4a101a91be6405ba591527a674d62e8", + "placeholder": "​", + "style": "IPY_MODEL_07d90c62482d4d3db11bca5564311de6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cb9ebf2cfd094df0b0cc5ef6c6c3c1aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cba81afd311a4ec19cbbf9731d475dc1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cbdc66099c1a4b9280d24f9f0cadf302": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cbf73e428d614bdb9187a6939697cdb1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cc1b0288f2c34049b88ad85122bafb55": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cc23610a2bff44898bccc8b2b32ba273": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_99fdc4e664a549b79c7ef05b99f64099", + "IPY_MODEL_75b3376f0ed441fa9ccc89f3c3b95168", + "IPY_MODEL_3e95380434864ddbad62c076e266c26b" + ], + "layout": "IPY_MODEL_682cace449a244c487290a0d2ddd5a56", + "tabbable": null, + "tooltip": null + } + }, + "cc3487820aca472ba38bc316bc610242": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7e2516365fa548438b146a650622e245", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6997ea8069d54dcd870258953e4b4512", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "cc3d2b7942234031b1a2de24d1c72f1e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cc426a8d02fe47aabc42bbcdead84827": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_40ba8d4912d345948269bc3279c42c93", + "placeholder": "​", + "style": "IPY_MODEL_0fcff9a1587f4cc8879a44797b3597aa", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "cc4cac47bb1849bd8d2b8a2828b3f931": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cc596f85b34d478c872a1487d3c2be45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ce211cb71f574ee69931372254564d46", + "placeholder": "​", + "style": "IPY_MODEL_f09ea54a3563481190b463f7106bebc9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cc6d61579aa74bfdac230e5d8ac86873": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "cc87cbc0be3241a0afe73b005a71e124": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cc981b5b2ea84ae7ac5ef3d2c4ee6984": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ccb88799edfd4eb1bfbabbddc56cc0cc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ccbde5765e104768b870fc617d6f40bb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cccb0d4c14fd40e992aa9647cf6d6324": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ccd129b84864426583d3830d802a3673": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e6c8657411914f0d93a8f0f86450dd56", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0878b4250bd44ac9831c0dd57c5ea20a", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ccd68fae82e44412b24844d86e7e8d7d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ccd6f7dbedbd461582909e158dee1c81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ccd92b9a45504759b6ea72a6a0f7c4b3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cce184f4c127468489d042d11a3595ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2b9c9b52d19d4fc39a20f144152bc317", + "placeholder": "​", + "style": "IPY_MODEL_e99a2f28401f40398a4d5207a6f68719", + "tabbable": null, + "tooltip": null, + "value": "Epoch 199: 100%" + } + }, + "ccea40fea620481da3b5c7c6f1705ee8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ccf3040bbacd4f62965fdc78ced12067": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_01f83caee43d448e9a30100d94d95747", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3b79ed0485f54d62bb4dfdbafb41e47e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ccf93e2c68214a9b9f6c99969e0d1b4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "cd1a2f821ea24f73a189b96a9116f28e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cd243232cba542cfa58c150d77759755": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7395f1c99f624a35adc15484882519c3", + "placeholder": "​", + "style": "IPY_MODEL_6ec8c35f0bb24aa3ace714e6015837d5", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 446.98it/s]" + } + }, + "cd2c62a5cf294164a124978e6472bf1e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cd39b58495284113934dd77acc14537c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f99d55da5927462ab61f86aa3ed8807b", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b042fc58f9724273b0dd1854a4efca6d", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "cd3e03fd32fc478da883c3b3b89efe0f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cd420cd10bb84831951a1c5f336924c8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cd4b335bd692418aaa6aeaf512b165a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_86601409fbe9425da59120559db27d96", + "IPY_MODEL_fdd02bf66b08471a8ee5bf349b4022ac", + "IPY_MODEL_9405307f67314d7c99ce8ef893667388" + ], + "layout": "IPY_MODEL_b6653b2675524ba8b64332ead8f6358d", + "tabbable": null, + "tooltip": null + } + }, + "cd591e17200d4e398b3b74ba24c96393": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55862d74ce8843c4a6cf7787eb3bcccc", + "placeholder": "​", + "style": "IPY_MODEL_119848ba1c1a4c1297c3c2066d9a743b", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 862.08it/s]" + } + }, + "cd7137ef9eac4e0e941835b4aab96422": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cd75de1311ee4f47bbab67ec7bc9f58a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6aa3fd1d10f244b0afe55c65678ded83", + "placeholder": "​", + "style": "IPY_MODEL_9fa4d2f43a9c44fea2698e66f51685d1", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cd809a399a2a4b23b7f2ddfc39025ea1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cd82e74ebeec4efc9957320aaf3edf8d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cd9c639307d944249d12a3f42fba3d58": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cdc1327bc884407aa129e72f66f0b6f4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_00e456541eb746178f1d5c2848af6151", + "placeholder": "​", + "style": "IPY_MODEL_e242d1a6f67041bc92615b5da1ba2953", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cdc58c0264fd456ba55cb14851f9e9ea": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cdd4c5f6c16c40c38da2df24ceb3fb31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0ec3413febc421db1fd1f5500da790f", + "placeholder": "​", + "style": "IPY_MODEL_1fad0f1b04e74f8085cc85bc72b16002", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cdd5bcf971f448948be8f8d19f370343": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8ac713af6a20495a90a3cbb466e98d59", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5d1abc1daa1245ce8730a2d33f6ed539", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "cde4ef921d934eb3a285cecbeb74297f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cde96396c4e7432cb5703f9900d8fcf2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cdf01999bd7a4eb289c3bf17732aa889": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cdf7c0fc8e3f40c692b5911a64b29cdf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cdfabcb6171b400c81034077ad73fcb4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ce00caf66b9d4b4a9bef45097da41604": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f7bb11140f0d49919cf5e0514becde46", + "IPY_MODEL_b70f4a2fca93452e95b0c8da3b71bad8", + "IPY_MODEL_af105dbe506d44378417b450ea2a0030" + ], + "layout": "IPY_MODEL_86b3a3f7f2154b72b0e631408011fd7e", + "tabbable": null, + "tooltip": null + } + }, + "ce08dfcda79c46f79d1888f66ebafbf3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c6e09aff54ac4bb1b073f0269a6a9860", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_cf1ede2261ba4102addedfd5c6f2afa5", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ce211cb71f574ee69931372254564d46": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ce4f3c31a55d4afdaabe1ed693b07bd7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ce52107f794845beb559296b8df3ca4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_354bd51927e9489ca9df286509b32b38", + "IPY_MODEL_d10db5ed42e24aaaad93e672936ff1d1", + "IPY_MODEL_15ea108a77a345de9b1fa38b0312eaea" + ], + "layout": "IPY_MODEL_6e77242e431e4be483ddd9f276695468", + "tabbable": null, + "tooltip": null + } + }, + "ce5a0aa7588049cba7ce92434d6b08e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ce5f327546b2497986c9325045648df0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ce7492730b7e4f548694a1f23c9a6450": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_baff051f830a46aba2168220bdfaa1cc", + "IPY_MODEL_38bcd38c7bc546f78f8c4b4781ded9fb", + "IPY_MODEL_d832f5f59cf34b8986ed319e33a42390" + ], + "layout": "IPY_MODEL_c265cba7e2c94604983e1bf84c30eeeb", + "tabbable": null, + "tooltip": null + } + }, + "ce77a1ea00f743b28cf39d5f1dcb9769": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ce88c825a77245f29414a1c453abca57": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0c1113a9d194f7f81ad872bf4c22cbb", + "placeholder": "​", + "style": "IPY_MODEL_33b62a139c4f44f3a113d224a41cf311", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "ce92f452f9314a93afafc2032d615c2d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0f27985d38bc463db8cd1eeb3541ab73", + "IPY_MODEL_e6486a11f61547619fc4fedf9486aa2d", + "IPY_MODEL_42517402c1214bfdac0f9b4de0eaccf7" + ], + "layout": "IPY_MODEL_8026dd9c930949638633088f7de81da9", + "tabbable": null, + "tooltip": null + } + }, + "ce9aeb4f3cf54704b7f038414fc4cf39": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cea4297a2e83463882115436f631c572": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ceadae97a639412daf3b8398fefb931d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f7d35d64288c4301822a5386f9d8c8f1", + "IPY_MODEL_8e8041546b2543d6b6e7954d50d2f1ea", + "IPY_MODEL_b11e6c155f6b4b7cbf38157a7e22bfcd" + ], + "layout": "IPY_MODEL_7a3ebdf36af44298afc2cb5e3908f1a4", + "tabbable": null, + "tooltip": null + } + }, + "ceb12e40efb6474c983741c4bf29fb99": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cebfc5c7c7774db2adc454341e75dfd8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ced1c0da6ccc44f0aeea6badcbe8f08d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ceef8e784ed84fbeb661a9f5c37f1fe5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cef068d51fec4e3fa2ede30f0be6f300": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fd4821fafe3a415e981521bb486cbcf4", + "placeholder": "​", + "style": "IPY_MODEL_fbbb358286164800bceac8f47b8a8d3c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "cf15e3c5c71d4ad5bf09d5148dd42232": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cf1ede2261ba4102addedfd5c6f2afa5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "cf20cc660d70484490f6d80bb1b6fe0a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4be58b1bd1c44129ba92c417c9b6dd9d", + "IPY_MODEL_c4d0b48fbd0a45129651046e12550bc5", + "IPY_MODEL_1193398513e84ea7b093e88972d226a6" + ], + "layout": "IPY_MODEL_dc7db5c9ad1d4a65b2183737035d54e9", + "tabbable": null, + "tooltip": null + } + }, + "cf269be0daf74011b4380d2951c2ff5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b296ac0240b14646befca460132c9a6c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_71cd2b4f1708473b9d10450c03971f0f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "cf38bbea42f044b0902a6c48778e7473": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cf3d9dece3034377a8379df7f9008c31": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cf4d7044f9a24f308fb37d97d906a703": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cf75ac2267f9488babf1c88067185953": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0008428a0c4c48e6b5d70dadbac84f44", + "IPY_MODEL_ebe41f02d1154d7db81bf447c58d1aaf", + "IPY_MODEL_050a72da1590473c889d96a23ab74f22" + ], + "layout": "IPY_MODEL_cdf01999bd7a4eb289c3bf17732aa889", + "tabbable": null, + "tooltip": null + } + }, + "cf760521f4214cd1aee2feac682c48ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "cf95bde69fa14a1eb0a348a4c394f678": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6a416d37fff94d9f9bb88734cb0f16f0", + "IPY_MODEL_3a40d1acb98d4a15ae9a92f892bba8fb", + "IPY_MODEL_1874dc9b8484420bbe9948a019533326" + ], + "layout": "IPY_MODEL_32c689d43db6491f91b5fa9f30766cb9", + "tabbable": null, + "tooltip": null + } + }, + "cf98e95be7b046d393365e110de1b6ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_05d8f3a38cb5462fbb7bc196e2fc91ef", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5d6fbb434c5344b9a28670b6e460d3cd", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "cf99fd45780c486fa0b1040aec028b10": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cf9c75113b844138b50dbe30c8edde2b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cfa75ad5cc884abda6fd0f866dbfd534": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cfac3b55bd1e4ad9a4be6997dc6efad0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cfaf653e56304665a5ae159515397e56": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cfb5df4eef404a6396098b5fcc43e719": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cfb68a4be426438da496abe155c4a36d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f45e3879c82341c39fefda3a458af085", + "placeholder": "​", + "style": "IPY_MODEL_a4dfea96a8b74c658c16f180a1243dfd", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 461.97it/s]" + } + }, + "cfb8e7ad15c04fd78dcbb15f5be0c40a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "cfbbf6ea2a474e1f89fb8e0045fd4fcd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cfc5ef0acfe145abb8a1d2814a832673": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cfc8301a29374dd3b4c112de2916a758": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed6ab37e159842a6b78794de5f5ba48f", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_91caec183e4b40c99aaac4492fc4476d", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "cfc9f33a0167405daeab71fb27d60796": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cff82342b12241e1b4390336cd6f5ec3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "cffa75a4197f4e50b2f1eb693b5fef66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d01aaf50b53d4762804bbe906c936a59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2cf48f8edf48433d8e4f98b1824e4f3f", + "placeholder": "​", + "style": "IPY_MODEL_886f3f3c91d34caf9e0ed63ce9a5e57b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d01bdac002d04c50a0d59e8b291df92c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d01fde054fa545959a55d1b44d0b46ca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b34740ce36ff478092a5e095ca54ffe5", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b71da0ecefdf47e0beca1f5d84baacbd", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "d028953e19d24edc89c029977b464025": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d0349ebbc786461d9b08fd455ac7bdfa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d063eabe46c2469c9f255a26bd7cdc83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5fce01b47c504330b0ef46b3aa6340aa", + "placeholder": "​", + "style": "IPY_MODEL_aeae144ddbe047d1af947d07ec58c2a6", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 668.96it/s]" + } + }, + "d0721062c31a4208a0d0343192bafe67": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e872350d2e7d48d593d2192038a9e9aa", + "placeholder": "​", + "style": "IPY_MODEL_aaeb043e6a7d4890a56b1cdb71b7cad2", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 778.60it/s]" + } + }, + "d078fb6554a04538820c4237846de690": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d07d8bd9d5fe4c8db874e6246546e621": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ba9287045b244fa0b1711b5fca454534", + "placeholder": "​", + "style": "IPY_MODEL_2baaba8c7bb942498a4010112843c6fc", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 487.79it/s]" + } + }, + "d092c6ad229d40418182bff478040280": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d186eb0c19724befb9f711c2071111c3", + "placeholder": "​", + "style": "IPY_MODEL_258d42e8cd37466dbd1ea3804d351e01", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d095adde541f4b9a9b24323dd71c31ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39b7f87744f249e28435d726753ffec7", + "placeholder": "​", + "style": "IPY_MODEL_0ec6733a38834f448ceb2fb4133fb283", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 364.42it/s]" + } + }, + "d09ec98abbb540dda5f787cdcaa59096": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d0a11883725842ec86f36be6b22aba9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_08b47dc6f83f49238ba0f01e552503d3", + "placeholder": "​", + "style": "IPY_MODEL_582a7691387e41f9861007a00145e87e", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 849.62it/s]" + } + }, + "d0a39f170f694d6da3497ed67784cc5c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2f24998894ef467baed07fe6b9d2d0e3", + "placeholder": "​", + "style": "IPY_MODEL_8d6fe1b669e24d49bc5f65556e4e86fc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d0b2e9f3c911469ca6de2d9851dfb7ca": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d0b5842a98c84e71b26cbe1a3c2d68ac": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d0be1e0550d6400ea69c27776521ae16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d0c5ebb5b903402884f40c0e4a82fb5f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d0ca81a5a2734e01afa59c0d1a034c01": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d0e51ae85be34cbeaa60fa6d4f925434": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d10b558264d04830a915d1446dede4d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d10db5ed42e24aaaad93e672936ff1d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac62c2b62b8b4e20886c7c6ce0bd0f5f", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a70977397358425283ca17218c586db3", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d10f623778b64e79ba275b7d4eed0625": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d124557f645a4474a40a9463eb7bffec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_45cc0e407da945aca68badc814d2582e", + "placeholder": "​", + "style": "IPY_MODEL_9b8f0f2dac2d41659b09f231f590c5be", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d12e4235dcd24bbea20e227f2d3dd161": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d151ed35a14d4efc845e9deb0357adc6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_520b4eb6028c49ba9347f6127a5b3da4", + "placeholder": "​", + "style": "IPY_MODEL_899fe6117be345c8a771da61dea9d5c9", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 201.86it/s]" + } + }, + "d15b15ed858a481c80d2927acc37930c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d15d0ccfc36747e0ac28fc4536bb78a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a95557e8216645f3a2615e3dcc9566e8", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e7d82138ad524c5ba84e3d97af0bdc79", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "d15d27c40d9d41e6860b2782f5fc99cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d1815250fc5c4be69e5c0de1b7e88fa0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d186eb0c19724befb9f711c2071111c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d186fc675ecf4bb5addcdb5cd9ea02c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d1923daf2db74301b340148ee2bc1b61": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_73b6f0d310e1429f9debe44217a734f1", + "IPY_MODEL_6646295179c549a49de5ff9d42e3ec16", + "IPY_MODEL_61bd93580b004889bd7b56cd9ec528f8" + ], + "layout": "IPY_MODEL_2df7855c87ad4c43807dae8bf3ff7aec", + "tabbable": null, + "tooltip": null + } + }, + "d1952fb6cf0c42a09e51e75c9d3b4d23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b6cd0ea631c4487aae88c79ad7f7f636", + "placeholder": "​", + "style": "IPY_MODEL_e3b9cfb0d3c64b87a9e23d5adeb9a04a", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 671.60it/s]" + } + }, + "d1a84a2b0bab4849bad50e03faae3f02": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d1a8e207f0434756b8d1e0793cbfd5b7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d1b0a6c79cc545b2b12b8f676e156c78": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a92595d28e0d4fb78aa4cadfc569d9aa", + "placeholder": "​", + "style": "IPY_MODEL_9d35152f54154e5fa489f2ed936841f0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.75it/s]" + } + }, + "d1d13a15103344519712e952b8b07216": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d1e0d022b2a140eb8cc079e6048773f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d1e2aa6c773e4fab9596b10c5e198296": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d1efd86a163347cc9b900ed51e2b94fc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d1f2b3240c5d46be8dd1720fd690cf14": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d1fc94baf8434018b0391fd156052bf8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d2051a8854b7435c9f19cf0fb94b1dd6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d21a2f193a494dd1b259f1a4c99d702b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d22e0dd7ced7404fb9fab04a5fe8a181": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d22edb2fdbd6475c9f25580c175d66fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0ddbb45215e64e31b5765c07f3071fe9", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_161ffeaa3498406ca7ea3c09992a4154", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d23481aaedd049e2a4d8d7f368b5924e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f78dadb82c5845059dcd76911302615e", + "placeholder": "​", + "style": "IPY_MODEL_e8ef731e201a4377bd397eb0309452c9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d2549a5d2ec942f2841135650f7e2a89": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d260a6cfb09a467c8814bde814c8be5c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dfc264de9c284aa0a34a006a15da6e48", + "placeholder": "​", + "style": "IPY_MODEL_cb78fa0f796f43f7b486010b8d8710e4", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 487.62it/s]" + } + }, + "d26231548c6b43de9017231bddb5aa4a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d26e2a4401af4e43ba728bb5befc3729": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d2743c162a48434088b420b1c4b878b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d28488a12c62448a897fa276e4eaa950": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d293560680664989ac767bb6a2bed67d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d2975763645c497f8a073b2cd6bcd4c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5822c44b964742e2b58f5d05e016f8dd", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fd8c8c06f0764d0b9adf52e76649b52a", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "d29c35fa60ed488f9c2d27d50421b213": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d2a4b7ba01cf4eae8d787128d171d42f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d91600511a6a454eb8b6f4ac35250bbb", + "IPY_MODEL_390a5adf4ba24ce68949cb9711f5a10f", + "IPY_MODEL_fbd1c970c58f4a35af8eefd5fffdebab" + ], + "layout": "IPY_MODEL_28767acc575a474b8540d8a936b0b550", + "tabbable": null, + "tooltip": null + } + }, + "d2a908f886e648d4b8b01caabedb5609": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d2a9b216fba9410db348a672b660bf3f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d2bb62b8056a4a7a9da5c3b54a097c9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d2c6d6b719ab4a6486f4064876be0c08": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_fcce0f5cc491495182da4af488ce28b3", + "IPY_MODEL_f7df61420272468fb034b04a2d1bb851", + "IPY_MODEL_bc33efe4aaaf4cc39bc6f674f9677636" + ], + "layout": "IPY_MODEL_8a67b01782ed436c85daf382177d5e0a", + "tabbable": null, + "tooltip": null + } + }, + "d2d128b0c0804c2db93941614dcf51b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d2defb10c02b4646bdddffe4ad323444": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d2e0d1ab679c4effbc7ebb51406be040": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_06145fcbe21a4637858623354adc8e4c", + "placeholder": "​", + "style": "IPY_MODEL_6c061254829740eb9258c746e87acf95", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d2e741ca03a74c1eb75771ddc739b5ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d3043c8034904a4faccadfaa9bc2f06c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d322b6a644d84a20bc9e68f360e1145c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d329f8515150434e9848c0f475c2527f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d35745618d3a46619ea83e26e3774d46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7fb8a34eab1c492bbecd7325a0954c26", + "placeholder": "​", + "style": "IPY_MODEL_c00bc269ab744fe4b8a7ca3ef2fb2942", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 73.85it/s]" + } + }, + "d366d43483654d8fa676d7c1af18b342": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d372649706eb4eed9a91359ee7c7946c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d395b0d6d67f4178a28f0861a13de983": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d3a09a93e8424c71b15ac85901a9a410": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_60d86f64802e4f67ac30870c5ce81372", + "IPY_MODEL_779afbd60d2845208770291018e38b06", + "IPY_MODEL_85471b7a2a46418282ac15fd4416016a" + ], + "layout": "IPY_MODEL_4fc6e63358ff4891a4cce4ee6149474c", + "tabbable": null, + "tooltip": null + } + }, + "d3a223f392c84299a4674f88a6fb5527": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d3e9b35ab4c34cbead9a24b72a49094d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9806dd3203b546c2a46a9b801ac0f5ec", + "placeholder": "​", + "style": "IPY_MODEL_45276e7fe68346fca190894a39c9c432", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d3fdc39c9c9b4bd5b032d082c1b7f1cb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d3fe98beee354941bd3b1695ed636b9e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d414fc34a7a547ca8d467cb4d8330915": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d426d8fba5764e0ebfbe72d329af5e71": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d433a431891043c99ad421daf777aeaa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d43c6f999b474de3a8993e81c7e38d5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5db25dcc07c548c584883d67a401b518", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_744504bd2dfe4135a0759d079d67de51", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "d4468f4d108641aa95a3e2ab3fa53eab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d452f28ba3a3415aa7ebf6e431f147b5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d469a4a7960e4322bdd5d2e972546c8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d473f95b6984404f9254ed08ff5e7535": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6924aa48fd924eb58ed2617c40cc07e1", + "placeholder": "​", + "style": "IPY_MODEL_9f54266df6d043b495ba2c462a76dcce", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d47bd226e993453f9513d0000f7668a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4fe99431e1564ce7891c66971ebee74a", + "placeholder": "​", + "style": "IPY_MODEL_509acf0d28cd4a1aa194070d8ab1a07d", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 840.09it/s]" + } + }, + "d48a5852e2bf421db0de7c155481f5bf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eb1ee653d0cb4843b5efbb6996b70cb9", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7ee1a0004b81412a88c54cd9a73b2a31", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "d4979e8790e04d8d8395277c04c2f3dd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d4c3af846bf646c0ad6113ec549dab6f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_de97e2bc5f454d579c258a1b42ecf52e", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_df609dd3950c46a2957449dfdcd19e59", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d4d9f0b3a3d544b2aa03d8814845e74c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d4e9adca14b74e94818496e333aeff6d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cd82e74ebeec4efc9957320aaf3edf8d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6e66f4b051624fc2b61cd7295b4a9f6b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d4fd9cc09fc445118b7c36c93abd1030": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c80814c7fe19444e9d8bd5269eace547", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_a14bba0f91af45208971a091910657c2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d50a23f7333241d4be2a57d5f466de97": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d51866704daa49e19e3c007401838c12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d52220e4a6604a9aa69f98bbe5d660cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d52606fb0b9046be8d4f5518e25d2e09": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d53f7bda228d48e5aac93a394cf27b7a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d55dfe39da384f0d9834e3f88edaabf2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d55fc76c1f504cb094a4e43f369d9cfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3ba87b327d564747af10f180fc727b8d", + "placeholder": "​", + "style": "IPY_MODEL_988ed62d29fd4db4967557a121023c1a", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 735.38it/s]" + } + }, + "d568a8d8e7f1469a989fe5f59b7d8286": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cd2c62a5cf294164a124978e6472bf1e", + "placeholder": "​", + "style": "IPY_MODEL_d01bdac002d04c50a0d59e8b291df92c", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d56a90d5a91647c38fc453b8be85683c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d57ae8385f8644cfa0e079ca1e88f8ff": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d585c3c0a8eb484b9ada44a7b822a926": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d5860d03fb274897a1c9a5cb40fd3a20": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c34cddbe44584f60980b686c12c63b4a", + "IPY_MODEL_fe500b487b674745a5db6fbcc42048b7", + "IPY_MODEL_a36eea4422a64af9aebb1b556d3963cd" + ], + "layout": "IPY_MODEL_55a23eaf18474db5b6b5a976380d8230", + "tabbable": null, + "tooltip": null + } + }, + "d58764f9355a41be82ca132a9063f707": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d58e1e05807f40938bf22707c979579c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d5ac35e42cef47e4b052d7c265b987c7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d5ac429f9d754da2a0c4f034170fb684": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d5bdc04bb8bd4bcc9641ee7aca5599a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d5edf4594c904239979c898c96770017": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_55784257c0dc47809c0064754346fb1c", + "IPY_MODEL_47d1f4b446714d6daacc6762fab20d0e", + "IPY_MODEL_e1136b60f2df4ca794f4796c08ab70fc" + ], + "layout": "IPY_MODEL_21419690888e438ba633910a4cf75359", + "tabbable": null, + "tooltip": null + } + }, + "d5fbfee98dc74d5887d54450a1134c4f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d5fc110c57494087b122711913221bdb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d60dec12261c409894e5a1ce579d8668": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d6127d0efc3748b588fef3e70d18ea4f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d61a6219b04f44fe91387a1695300598": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d622e87165274f268acdbd2839a29696": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d62fc8f026bc4bdc9ea56d78774cb829": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d633d8b530a9470ab691605a0e490ad9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d6463a8fca51427db96fec246f5b745d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_147c99d30c564a85ad42412d92d4007c", + "placeholder": "​", + "style": "IPY_MODEL_ac247997a4c04bfbbd689c46b9a76bc6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d64be133567445e0848c4f511e185c74": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d654fb86ce3b4dd6ab2a6e23a9a34084": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d66fd2bae26d4eb0910d33fb2d3ed641": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d672d09d202745a1aabba9b56e2df710": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d67849e71d8e495bba127e49cdd1b88b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d69ab8e9af1946799923bed3779d1369": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39f7563fa0174b9ca92f316857858cca", + "placeholder": "​", + "style": "IPY_MODEL_52b249d201844931b1a284a9b0c82695", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 851.29it/s]" + } + }, + "d6aa53936e6544fa81fc40477ff0eb36": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1917d7474fa14bcdafc033753b11393f", + "IPY_MODEL_ed156f913f87402aa969465a2e21ed06", + "IPY_MODEL_afb0a93f0ca44702a7ef14555286291d" + ], + "layout": "IPY_MODEL_c56d7b0a95da44e995bd82eec50152b5", + "tabbable": null, + "tooltip": null + } + }, + "d6ac8f08e2574cfdb0cddde17fbe6f5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39156abf52fb4c2285f15831cd5abe1d", + "placeholder": "​", + "style": "IPY_MODEL_6431907c28404b3888537361a54f5154", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d6b6c6b2637743e2bbd4516b09b83366": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d6bc373c33be40279db09286ce743fc1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d6bdcf1e9d654d4da8097588387cd2a8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3cd3dbf948b54ffdae204819e885927b", + "placeholder": "​", + "style": "IPY_MODEL_89863c406f52404390e179f310dc9c0f", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 653.00it/s]" + } + }, + "d6c04d9648794c81900267ae99e3cbbb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6e595b86082f443d9aaede92f0e30e23", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7b6eee21efa94653b83a2179a15693d7", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "d6c4fa7a225c43099a75ce74e7156a91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ff2c052c71404d7dbffa0b091652c0d6", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_05f7cf31540249eba2ad43142b42951a", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "d6c7251555ba4f98ad500e7e88cc1f9c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_de31422c4cc6409a9c737e7174fc78ce", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c8dcd72c79e84b5ab8faaa3beea84efb", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "d6e0170bd82c42dd9aa4b08fb42a820d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d6e34901e01347d99b1b2128e7413078": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d6f1beb88ab94a5bb1cf3de8b2d2aeb0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d703044f79964ef2b060c79f5a60ddac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d71292277b484c9ebcf31c730a7aece1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f58935ad713943a48842650b525f30b2", + "IPY_MODEL_431220eb97064a69a32dc89e222e080f", + "IPY_MODEL_1663105c320346669a78ba703fe74a2a" + ], + "layout": "IPY_MODEL_eb800badef54456f9b95431ff0812f58", + "tabbable": null, + "tooltip": null + } + }, + "d71b4a6c5d4e4492b67f372614369d7b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d7282c7c922f4b25b187443a4b5ad779": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d72d036930694a2d930b524039e94268": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d759f41d126a40b69108fab2bbcd895f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d7635d515b344bf182bef3701bdb8b6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d76fefb69bf4435494a82056f155d928": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d7a53857158d413da1d81aca6586a727": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d7a75ebf2601438cbe782d91a4e96d74": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d7b68559e11f41069a6446cdb8f1e12b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d7bf500b1b614db7b7cc5cbdcebb6d63": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eda61d14381b4d4fae5af4a34f7ad841", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7272314fd93f42a08b50f4fcd4d3cdd6", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "d7c86ab152d04d3b89350b871e4707ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_393002fce24941199c8501129825a0bf", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e265b544831b4cdab77107e41581a667", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "d7f040482c424a7183cb0dbed32abdfe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d7f9717f1b34403aa6bd8084bf07779b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee5bb0860e1d4857865889e223efe8a1", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3a77952ef6034c589c1de1b3e61b6a4f", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "d820309fbdec4d838d21e1b19fbb96ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d82854607538477ba1d4d41249f10d54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d832f5f59cf34b8986ed319e33a42390": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7753a64173364147a625580319b7d789", + "placeholder": "​", + "style": "IPY_MODEL_526277522cf24825bc1fe17379428039", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 368.81it/s]" + } + }, + "d84145a699e0495eb7d4912b928106b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d84de0e17db8467d86c8dae6b1352111": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d852688d9ddb4c358caffbfb35c3a43b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d85cf5c61f1c45639fe2e31f7ff13766": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d8719f54c1a546989d73713395a5f2ee": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d87cd9fc0aac40679809713344ffd3d8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d8934eb8b16f4a0ca89d18a2ea942c2b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_61d470eca1104443a3e899cdd0eec4c4", + "IPY_MODEL_1281ec7e7733422cb6c97b417031d925", + "IPY_MODEL_ed795a5eb12b44ef9fa51c2a744ff218" + ], + "layout": "IPY_MODEL_596109a84ce548c9b0fef40b9d137d31", + "tabbable": null, + "tooltip": null + } + }, + "d893a1f01dc441b794f28b56d93c752e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d8a905e5b2fb437d94769e4df90f0afe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c833c0fd20ae48de883feeaf60a8ab09", + "placeholder": "​", + "style": "IPY_MODEL_f56338e7551b4343a6bbf3b27748e453", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 225.62it/s]" + } + }, + "d8a94fb9c0564bca92dc780238ca69c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d8d25689814646d9be833c87e7240003": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ac22e061b8704a4697606e7d7318d6c1", + "placeholder": "​", + "style": "IPY_MODEL_550743c73adf4336b99b747413ab6028", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 398.38it/s]" + } + }, + "d8e185d04396487c9ea543c7050238a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d8ee64e173584926b21c16107ccf7e41": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d8f03bebdfaa457ab763303e2e4bc806": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d91600511a6a454eb8b6f4ac35250bbb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_40357ef52e4841b29f30b1cbb5329bf9", + "placeholder": "​", + "style": "IPY_MODEL_f5812e162a1b4ee5aa37b2480b49d99f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d91a8979aa8e4372881dfa4c1d2d0fb8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_607085c58f89422e82af97cf789355d5", + "IPY_MODEL_f4daa7386b544151a2cbf2063cbb0e2c", + "IPY_MODEL_d095adde541f4b9a9b24323dd71c31ef" + ], + "layout": "IPY_MODEL_e38190f09548465ca76d565feab077e2", + "tabbable": null, + "tooltip": null + } + }, + "d9694d6cefc7493ebe585430f7f8a8a7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_76b886e121b645b5875a1235f2b46fd3", + "IPY_MODEL_37f79c28b4174c578dcb1ea2258ecfd0", + "IPY_MODEL_b621bb159a074d0398324d798e2fdbb2" + ], + "layout": "IPY_MODEL_b0e438cb6ddd40468148578699d2c60b", + "tabbable": null, + "tooltip": null + } + }, + "d96cf75ad88f45f4855e2d4325757064": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "d9799842a568443ea7ee79caf7aaa0a0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d979d14c31fb4475b63d387c3251ff81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a9fda081af3244dfb0e22f7dc14343c9", + "placeholder": "​", + "style": "IPY_MODEL_edbcaed0049d49da9d58677a1ad76807", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.64it/s]" + } + }, + "d97b27f404ad412c89c6320564592d1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_769c3f73167a4b92bc722528fa448e8e", + "placeholder": "​", + "style": "IPY_MODEL_0dad34cf246c4c7097e376288b042752", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "d985ab2644dc441e8713502f24706493": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d98d214f1b7248c682d509b3117839b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d99da9a54c2e4e8a9e8427af397e6f17": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d9b1f81193d1492b92dd6352ba33ccb3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d9b8562f1ff54f249248465668047ddd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_17ab9b08ccc846ceadb636aec2ac605d", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_393f854093ac4eb49b168468f6993764", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "d9c16d903e354812b3c6f2d32433413c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cff82342b12241e1b4390336cd6f5ec3", + "max": 188.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_8c3e6e88322241a3b6fdff7d66a3c013", + "tabbable": null, + "tooltip": null, + "value": 188.0 + } + }, + "d9d3837a6d054e56bcff94e58b11656c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d9d4748df46942a99f9cf95c20032ab6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0c0d41c4fa8e448fa8ea8ced3b58e2af", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1c677428b29045b696bbb8aee709450a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "d9dc64dc8ed4491e8b72c0ad229339fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d9e401e2942c4765ac2148af0ec33e07": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "d9e665b5a68c41fea9077d55e180d6dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d52606fb0b9046be8d4f5518e25d2e09", + "placeholder": "​", + "style": "IPY_MODEL_bb32da9d4e7340698b6d451ae3a0a1a6", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 373.66it/s]" + } + }, + "d9ee38b378604859a7b268c1c63cdbcf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d9fc0763a6ae4494a941985f7353a735": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "da2723a4dcd845298c71e800c4cf2047": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "da2d1c33a6184e3ebea09414056578cb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "da30bd16ad4a4649a4e101be45cad7d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "da434a57f2454b3fb4b5d5d3e55b2e86": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "da4b262aab0140a8b8ef9448b93c6f31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "da506a86af574bcdab05c8752d69a647": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "da523c16e119441ca43f9fa4b10dcd7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "da5338ac20294f6d82ca2c74b0fb3fcc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4a2b5955580f4d1d9f29609ad905113d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d322b6a644d84a20bc9e68f360e1145c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "da585e0273e6488d9532e56f17b8afb5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "da5a497874b84015ab2acc6f62466b9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e05e4b3c61374c60bf00b864ceb2a1bc", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2b0d3ba922d0420988a6dcef3e864875", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "da6401a979df4482baf497531cd48b73": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "da7be01370ab46ed93db1d7982403c68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_996a2ebc007d4b3cb07670f328e11bcb", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_01440a9ec3a94fbe9700e2fa2a56efe6", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "daae88ca46d0462089a5606755909322": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "daced70e088249b8a9015c12abf8af87": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dadfb78bcde740aeb7ba53efd0b3e15f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dae2d5bd97e5404aa22d765c7bedd730": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7497436f314e4d7cb4ccb219705e3677", + "placeholder": "​", + "style": "IPY_MODEL_d72d036930694a2d930b524039e94268", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "daea7b7945d846f68aed0ae97b93f1b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dafa5bc29e18479b86cdfdac4dcaa1b1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "db04dae293cf43ebbb6e87606793c7e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "db0738efcb7c48fe8b73aedad5ac676c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "db0cc6fd999145dd89f972d5f17315e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "db24d21fb33f421a995a758854f1c58b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "db31f3721f9d4bb68940c4b68363ae91": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2371b4932b8843b2ae84f876986127c3", + "IPY_MODEL_f3ba26fe48374f33948f6b3720e46321", + "IPY_MODEL_0aa08a78daf14466968215719e471fbe" + ], + "layout": "IPY_MODEL_6748b106a95a447d9dca681059774bde", + "tabbable": null, + "tooltip": null + } + }, + "db500cf76a1042848bdd21ed86101741": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_649d42929548436a88664f768dd3aecf", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fa4b03102e6a45908a251fd7e4ee005b", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "db53f47adf33437cb639826826a4f742": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cef068d51fec4e3fa2ede30f0be6f300", + "IPY_MODEL_49ca19240e19498c90d7f5f007c479c8", + "IPY_MODEL_842cc03f55434d7788da3dacb3087ba9" + ], + "layout": "IPY_MODEL_d820309fbdec4d838d21e1b19fbb96ad", + "tabbable": null, + "tooltip": null + } + }, + "db55affc2aa042099688dd3241c331ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c14485a475fd4b65aa5096a7dd1e0728", + "placeholder": "​", + "style": "IPY_MODEL_5b8c894eddad4de393a1009b16124697", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "db7ea5e632734c008ca8a5882fcb74f5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "db840168008046d49a871911ed3e0f19": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfc5ef0acfe145abb8a1d2814a832673", + "placeholder": "​", + "style": "IPY_MODEL_623f3935e4cf4c23a09f5eb4a5b5f75b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "db8ff67afe564cbbb63251cf1c3526ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_77d99b9a82704f7b93cc6cf687dca43b", + "placeholder": "​", + "style": "IPY_MODEL_e52a327fbc554655877dc08a02925797", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "db976412d6aa4ec693192d6e484ea55d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dbb39c1cd8784f5e85d12cbe8d7a35cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dbbbca42cdf9457c974e7c1daf3c4d2d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fbdee8ee5261483b9ff04a67efe10ce9", + "placeholder": "​", + "style": "IPY_MODEL_c701aab8df454b74a51f8f587726700b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "dbc4faed0b664146a0fad8e40a315284": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_100cea0b4ad342f29846a218c463f55d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d9dc64dc8ed4491e8b72c0ad229339fc", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "dbce6d3c66cf4a2d8af9b9322087d697": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_94011d4377b8479ba0271459d04b532b", + "IPY_MODEL_79352764e8bd466fa24931b98d0e30d0", + "IPY_MODEL_8e5008543d0a48dfb8c5d0dad7b19b47" + ], + "layout": "IPY_MODEL_04d7237416944b4f9bb03eadbf2f0717", + "tabbable": null, + "tooltip": null + } + }, + "dbe56d270d6e49b48fb256a6a68e34a5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_610fb63fa2be4be5a2cfd4d3d1e0147d", + "placeholder": "​", + "style": "IPY_MODEL_12e0088b8c044a6481429089780610df", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "dbe6a4e4f04040929efb2fea97065c1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d0e51ae85be34cbeaa60fa6d4f925434", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_fb12be6d87f148dc94b2ff02d740bc29", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "dc0d6fa4893a4238ba6ab0cabeda4a7b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fc33c98416404f0f8ed50e21998714aa", + "placeholder": "​", + "style": "IPY_MODEL_f9113fd6868f41dda426652df08ccdda", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.05it/s]" + } + }, + "dc283597e93448dd89d225e4f3b69275": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b1750dde1b3244b0967874758cd60725", + "placeholder": "​", + "style": "IPY_MODEL_84b12f80203c4ca2ad86fdef7559efa4", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 603.07it/s]" + } + }, + "dc51225200ea4c86894d86b02c69a060": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dc5430463e414086b2f6e8987c5bb6f9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dc5c7be154d340bbb5995d5a00ef7146": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dc7a473c8cde47ff9822f06c037f0dc2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dc7db5c9ad1d4a65b2183737035d54e9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "dc8ac6011f354884b16684a0c7180c9b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dc90e53658214dc08ea587cc099abaee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_816460a958234409bc807b2e36a382c2", + "placeholder": "​", + "style": "IPY_MODEL_6e3e6321d37442cdbd40ed2d1baafde0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 406.14it/s]" + } + }, + "dca4f8273788469ea116128adbf4bdb2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_54306e7c74f94e6aa62e91859c48714e", + "placeholder": "​", + "style": "IPY_MODEL_b6528ac6c86f44dbacf66f778021b289", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 674.32it/s]" + } + }, + "dcacbc5d985d4778b17cfe920491e7b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_007bb91580604959b400d72813d5da45", + "placeholder": "​", + "style": "IPY_MODEL_1c3cad4584894797bdb3e5b40631f48e", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 385.39it/s]" + } + }, + "dcb1537a5234454397e5dd56350454ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_751708e6e05b4de2a47308f302b08811", + "placeholder": "​", + "style": "IPY_MODEL_2b111d0c52cd44d79ae5478148eb6477", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 632.06it/s]" + } + }, + "dcb5ac0251104facbbf62a89ba5b03ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bdb440d76b0c467cac80da742273c215", + "max": 313.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6723679bcb44486a9044b6d78a6987a3", + "tabbable": null, + "tooltip": null, + "value": 313.0 + } + }, + "dcc2213e021747a980179e706540fddd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e5940f94b5da40a791948ea10b5ab9ce", + "IPY_MODEL_a7a4cf620c554b0cbcc8439d0d1d1b55", + "IPY_MODEL_14cebe8a7d7a4ee990ab1dda4f7d3bee" + ], + "layout": "IPY_MODEL_fc6cfc507c5649b390189637debea498", + "tabbable": null, + "tooltip": null + } + }, + "dcc43ee8040940b79167039578422ce1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "dcd8fd96ecfa404287713a6b7fe18f90": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dce72f7ba3074b92bb1b377d8a088cec": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4743926e247f48e9b76ef9de06a69071", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c8f2fdbf6475453db49715428e8ae3ed", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "dced6bafd5f243d981b97c504f026b7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8c043f86793346e6b883d9640abf83d2", + "IPY_MODEL_e43e8e97f6704264bd9500b6f18a7677", + "IPY_MODEL_5e6bcefac4bc496a87a7e1c322a03f03" + ], + "layout": "IPY_MODEL_fc73dbd5d8af4e5f89e42d4b1c7129c5", + "tabbable": null, + "tooltip": null + } + }, + "dcfa82a7c355444d92a5677b8cb1b1fd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0cfe30500a5e451cbdbb374c5588deaf", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_014cffbecf454500818e0d4f4cd90e4b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "dd0a94c30a69405588076dabcbac92f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b08f92d6a08d467f9899e75ddbefde3a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b29edf46fc764ab9bc99c17f377d1f49", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "dd201cda16b949e09bcd9594b899708c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dd25ce2e705645ef921801500579459f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dd2c562b889c463893c4db4ee889a263": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dd35d8b3269f44caaf9775ea1350632e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dd48570b151c43ed8f31d5dc1c6254d8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "dd528757b0d14826b426795cae5a10d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_73db6407dd9748db8f7901303376f11d", + "placeholder": "​", + "style": "IPY_MODEL_40b4a4c0a1a0492e9a9f8df4f14eda1a", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 521.99it/s]" + } + }, + "dd58fb5ab2534f84ab0cea35ebd2e711": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bed732f7bb8c471ca0b5c4c43a428cc5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5c9c54a5e1ac4c45bafbac1f93e4e5e5", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "dd68c8dcc03a42abbd83bf23b354a9f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dd825feacdd7416f822ea5cd58f453ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dd89cd39cf574173a1ee401065d0d1f6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f527408669624981bc786d97d439705d", + "placeholder": "​", + "style": "IPY_MODEL_392e237371804c85aa2035b7a9615938", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.80it/s]" + } + }, + "dd89dcccf2eb4535970ce8e1c225c687": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dd89fa0fefcd4f62a2990ad7c27e232f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dd946151ad1c48558c0be8f1cbabaa69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dd9eda3bd83e4c56aef86b481f9b9a27": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cccb0d4c14fd40e992aa9647cf6d6324", + "placeholder": "​", + "style": "IPY_MODEL_4b0a1f3f4a5e4f97b980159f2e7dfdc8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 393.00it/s]" + } + }, + "dda07c413abd41f4a6068c398c3504c6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_837ad5101ec64bc4a32334555e57e735", + "placeholder": "​", + "style": "IPY_MODEL_8de6ef6b6c2649dfa4258f67b6f2ebcd", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 365.13it/s]" + } + }, + "ddcc2712ca014813b73bcb582bcd88a6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ddcef08d3999473abf5b4a1d322510db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dddbc4f5c3844059b84a7771a6751324": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e4afe1233474c49a42444949e30d049", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_03582e00a4114d7b993246674f53ded8", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "ddfe3073603149778016e6dadbf67671": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "de31422c4cc6409a9c737e7174fc78ce": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "de4040afb8224735b0998501152336ed": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "de4185ae89bc41a4832fa7ce1115c30f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3c141207f2044f8b939f015f95c76828", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_c6bb62102d444b0989fe8a45e4c24739", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "de4d6e96cf8249a991f5343591d514c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "de55243872c44022b8846096b793cfed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_533a23063ab44411adea944904eb6126", + "placeholder": "​", + "style": "IPY_MODEL_5ec22d7295904792a0f9b95c48d64e19", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 234.29it/s]" + } + }, + "de591a88ebe2499c963235ce1acdf933": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_68e6d03a3d8c4a45bd6d787a0f6384b7", + "placeholder": "​", + "style": "IPY_MODEL_08ae8f9728e4423ba794446ed3a1f6f1", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 334.37it/s]" + } + }, + "de83975a2dc4487dbea29ccd64062f94": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "de97e2bc5f454d579c258a1b42ecf52e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dea04da6468846e58782b2afaec1414d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dea82e019357468dae668faf65db45c1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "deaf310094ce4b508591c12194723f46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_403aeb955ee34d019221bb98ed5f01f1", + "placeholder": "​", + "style": "IPY_MODEL_a2c2345ed10d451bb379a3a62f9e9306", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 640.81it/s]" + } + }, + "deba2cbcb16e4f739094bbe98f4b2f3d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dec3aca5d2f04674a0a486bffc8f7818": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bb58fb3e895f4b8b9a43e357282c14f3", + "placeholder": "​", + "style": "IPY_MODEL_14555186e3c545e484a93c17e99a0ce4", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 649.40it/s]" + } + }, + "decc3052068d497aa5cfd15905834ae8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dece916466dd4cd5b3975776a871fb15": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "deda5eeddb89434c8747cded80a1124e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dee3d8fbf47a49ab89911daf6ece3ae8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "dee4707f1c81488fa48fa076537b8d2e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "def0985cb47d4f959a979348d5a2dea9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "def4b308937543f8942312149cf7ee38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b2ba66e357764cc3b04ad06c7103b23a", + "IPY_MODEL_bbb2bde943084e07a0ed3e8dea1acb92", + "IPY_MODEL_aeb53ca4c0f145e59a55ed111db027a4" + ], + "layout": "IPY_MODEL_d7a53857158d413da1d81aca6586a727", + "tabbable": null, + "tooltip": null + } + }, + "defd152207464d1b98a6aaefd948f700": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "deff64427a474fe98f0629cd67457afd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7285e07caece474cbdccd95bc9cba0e3", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_af44f3dcf2a3444aa0223f7e8f7cd5bc", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "df1fe867b3d244818f163e0d6fb999f2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "df223b1945a54d6fb0f156f085cf998a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "df52e3dd74394fd0a843081c27efa124": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "df5af61f50d743a3bd418d765296c2ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "df609dd3950c46a2957449dfdcd19e59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "df784950d667496e8f18a03f27bc6233": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "df7a48a198074717ac31f7e7bef39cf8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_740519e5cf09418fb849097fed4d1e8c", + "placeholder": "​", + "style": "IPY_MODEL_3f8d43b7146e4d24888272dd8e677dbf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "df93be9d775740aba34b73613920b8b6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4704481cdf1c40f081e3d3eb92d3ee7d", + "placeholder": "​", + "style": "IPY_MODEL_ef8688c544a34a64987ba2c79b41b520", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "dfa59627c528419aae74ac648e4699c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_94c79ba205f3443aacdb5219d9baa4d4", + "IPY_MODEL_c953110112704b7a8966727e105a9fb0", + "IPY_MODEL_bf8748d4ac67479aa3bd430c9ac80f16" + ], + "layout": "IPY_MODEL_d0b2e9f3c911469ca6de2d9851dfb7ca", + "tabbable": null, + "tooltip": null + } + }, + "dfb65565be5f4ab48c3d72cc21531375": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dfc264de9c284aa0a34a006a15da6e48": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dfc951d0ab534126a581022f09a1ff48": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "dfddc68ec6df442b8590ecbac771defc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dfee4e712cdb4ce9a746afff6f4c0f45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e00e5fb5a751426597eca236b5846441": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e001e136be14cf5a0574b809155d32b", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_18eb9604ce7c49419bf612c5643c5fc0", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "e02186e2e4764ca08c9d5a55390366f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a1d699f0de234af598c2cd2640aded99", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_5bb00b00c2e5481698a4157ef4c0111e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e05247925c2e4748bcff7198ec431994": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e05a582bd1ec418583994cc7a9055ce8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e6c5ea87368f4c4e897f587691a59098", + "placeholder": "​", + "style": "IPY_MODEL_8aa0f095c9f14dc1b17fb00c425b0207", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 497.90it/s]" + } + }, + "e05e4b3c61374c60bf00b864ceb2a1bc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e06af206892e4f3e9bb3e009ab7d40b4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e07f92a9506a49b5a5d252371a14883c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c5ea828470e74b17bcf19b595b85c70a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3d8e5570122a43ef879c894a760d2788", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e083564cef97476b98c0b29a167d4d85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_198364d18a394ea187e0ad771a495543", + "placeholder": "​", + "style": "IPY_MODEL_a7c8743ba9174bc8a6df2d85b17fc221", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 368.38it/s]" + } + }, + "e0aaaf5872a64f0f97c6e41d1d66f70f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e0b1014a1bf24b4aa0a0062a215ecf06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ed192cd8e6374addbf1b5bf238eebae7", + "IPY_MODEL_0b1b0ffb46fe4719a52d077bb941d1cd", + "IPY_MODEL_7c0e8600afc0480a8c56e25e476b5136" + ], + "layout": "IPY_MODEL_994b27354f59435e9293c47b1d732b78", + "tabbable": null, + "tooltip": null + } + }, + "e0b61a9afdc14317adf2d2f0a8b6bfc8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e0b9a8bfc9b940bf89609513c2c32c79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e0bfabfd71674782a1d0b0e09b0aa710": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2138dbf07c5442d5b45640b9fd086ad8", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e0b9a8bfc9b940bf89609513c2c32c79", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "e0c743c89fed40a29dc3c2cc03762072": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e0c80c27343c4bed99eea0ec251eaa7c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6213cbf0add148fc885aa9bcf9daafb2", + "placeholder": "​", + "style": "IPY_MODEL_c42c155ff1ef4e7b999889f0ed28474f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e0ced6b641a5474bb0b1ba21fff6783e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_aa3409a399d24090b361811acb73c4d1", + "placeholder": "​", + "style": "IPY_MODEL_7f74eac8e6bd4731b7f8efd123b01d1a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 683.88it/s]" + } + }, + "e0d14ea40d5a447e9f428a55ed0349d3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e0d774b192b244e5919ef6d3e61f59c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e0e19ebf6bf342c4bef1637a81c80e44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e0eef81df4c24d9b95c0732c6bbc0804": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e100cb13de18446f85a7d9864b04fbbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4978416319084dcd8abc61424a061f1f", + "IPY_MODEL_60c80d645930468eaac28d9eb54ff010", + "IPY_MODEL_7555f84825ef4fecb6f48abf90e3b308" + ], + "layout": "IPY_MODEL_40c1eefefe6f410d87f75988baac2233", + "tabbable": null, + "tooltip": null + } + }, + "e10316b8ba324e97a57db50873e5dca7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e6b03fb133494b28bf3d96c46d8bb1c3", + "IPY_MODEL_4cd237f8433c453b9905b756f3a952af", + "IPY_MODEL_cd591e17200d4e398b3b74ba24c96393" + ], + "layout": "IPY_MODEL_ae65f24a7d1148399f29dc886a28ad96", + "tabbable": null, + "tooltip": null + } + }, + "e10b0f8931c24e1ebf8f8e2500c5c98f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e10c3b4a5c9a4212856e2d33bdc60f80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_be3a6f6c809d4b87819e85c434c1d67b", + "placeholder": "​", + "style": "IPY_MODEL_3cc600c83e3045ec8a07cd89abafce52", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e1136b60f2df4ca794f4796c08ab70fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e6bdb17dabca48d986e318589e1e272e", + "placeholder": "​", + "style": "IPY_MODEL_e3dab317d1b84af9837f084b21563ca0", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 378.35it/s]" + } + }, + "e11b69db86f14d778bc3d17e360bf8f4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e125f0d734084e38a0039aaf29266ace": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e1383204dd4c4b73b698310d83b14efe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_be40784ccbba4a2594f40e451b475574", + "placeholder": "​", + "style": "IPY_MODEL_0435482b53cd4ec99e19ee0bd59a5d58", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 219.23it/s]" + } + }, + "e13bebf04b4f4dee877d1eeb8995f9d0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e14baaf1ed9a4549aef3e2ff94749531": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_645607a44dd041c0b489551c96e7fdff", + "placeholder": "​", + "style": "IPY_MODEL_6b2202b33f7548fbb6b8ab31f327d545", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e156fcc532694e719de1dcfd34c472d1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e15eb409b21748dab9d948dfaa66e299": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e162f4dba67847af897538e665cd2ab9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e1879cb9b60b4bc4b5146f8e79bb69d9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6e8ceb6d8fe34d46ab0040dd20150533", + "IPY_MODEL_e90d9da2ffbd4535b6809e62174ce856", + "IPY_MODEL_6822559380234e17ac41b7a980b0208e" + ], + "layout": "IPY_MODEL_51f87d7c85f245249dea1fd018fb4dae", + "tabbable": null, + "tooltip": null + } + }, + "e199fc7020464191bc4dd959ce5eff22": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e1a4ab6a7ea14a1793a74d845fba2120": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e14baaf1ed9a4549aef3e2ff94749531", + "IPY_MODEL_97583aa29ab44f259f26baf7a5eb44f7", + "IPY_MODEL_1fa572651d0b42feaaee2cbc07f11e6b" + ], + "layout": "IPY_MODEL_0f2de4386249499aa863bfca3fd67098", + "tabbable": null, + "tooltip": null + } + }, + "e1b3b12d02fe440ca2cf48a97cafdf27": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e1c72805efd34bfbb0123b6c7e817932": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3a90e4462d5f45b2bda6833cfa1b27e7", + "IPY_MODEL_aef0752209bc4051aa329cc2e4eb4c00", + "IPY_MODEL_4c4b257b7bd44005a0736ed2ae81adb6" + ], + "layout": "IPY_MODEL_61c72d19d08e4e48af0c74ecfaed57ff", + "tabbable": null, + "tooltip": null + } + }, + "e1c82793074a45cebb25c4d0b1e45e54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e1dc3c094ca54b96ae09ea1c3f81cc96": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_12056b595c6748c0b3b5c8a180a24c5d", + "IPY_MODEL_777d9b9e56bd4172b5be189e9a481cd0", + "IPY_MODEL_33fc78edbcc442469aec5884ed4c1b69" + ], + "layout": "IPY_MODEL_872185aff73645d08739e66f9794ffca", + "tabbable": null, + "tooltip": null + } + }, + "e1f4a72c61de40cea5edbe6e7ea0293c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e1ffef847316464b88c84fa923960f80": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e20020d9ef9a471496111222687aa94a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e21a34a1272b4a44a01b03f5e0038355": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e21b26d972a84ab4a24f38ce69ecf53f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_efc65791e9e44bcd9c4f7f135678dcd7", + "placeholder": "​", + "style": "IPY_MODEL_d2e741ca03a74c1eb75771ddc739b5ce", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e229277d1b26428391e5581e9e73f0b6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e231e959e22e41adaaed2944f5a31a3f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ff0559cc5f074ac1a494f67f5baeb881", + "placeholder": "​", + "style": "IPY_MODEL_20930e613ea14f9a896804647ddd5ca2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e23d755815344996a6b98a5897150927": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e341956617424456b2895b5d3895ef12", + "placeholder": "​", + "style": "IPY_MODEL_dfb65565be5f4ab48c3d72cc21531375", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 204.55it/s]" + } + }, + "e242d1a6f67041bc92615b5da1ba2953": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e24910c852944bb982ebb73c9e7e8723": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e250d8f6da6e41c28a5d722d0d87f8f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2ad50a1d49a64f39abfff12a2aae6740", + "placeholder": "​", + "style": "IPY_MODEL_562f2105eeff4fe0851b4326bc08bfdc", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e259c892449a4f559c5003a97c8b0566": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e25cb2f8f14c4b6099c1a1b37e89ed54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_1d7b0299e7c846d291eec3daafbcfb8d", + "IPY_MODEL_fc8ebe88eddd4de193a15accb20048b9", + "IPY_MODEL_4fc6613db4e2479ea14ab67d77279653" + ], + "layout": "IPY_MODEL_abe03f0e1b6041a8bf62ebefdae90203", + "tabbable": null, + "tooltip": null + } + }, + "e25e1066a5f146f2971dcae4ff76affb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_087244a19a7e466ca495e9e79fec3457", + "placeholder": "​", + "style": "IPY_MODEL_33608388f3074f4bb3e28de03f4540d6", + "tabbable": null, + "tooltip": null, + "value": " 84/84 [00:01<00:00, 60.66it/s]" + } + }, + "e265b544831b4cdab77107e41581a667": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e27c7a45271543c8b69280e360c58ba7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e29f858cd7f94faab9b48247bb2d3a83": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e2af8ddb4e644fdf938c62fe475cb492": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e2c792fcb64e4a119570a359d6335cb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e2c94a841e35492c93ca866036836499": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e2e7bb6a1da84590b41f8ea9ffb59da6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3ff1f77bbabc46b89f1831e91f7a972c", + "IPY_MODEL_6c503e21390e49399c27f71265155a82", + "IPY_MODEL_8744f956c88743db8708c45f603a43f6" + ], + "layout": "IPY_MODEL_26ce6abf36b2491395f3e074fb352d69", + "tabbable": null, + "tooltip": null + } + }, + "e2ed3ff026a541e981e8596a1bb27627": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0b2284c6249645fca1fcd5872c33b7a1", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_17a8b72972c14c5697634e1b66d61614", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e30a991ac871447e98466cea30cc1e9b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a72c6d6b58844fd4b6d3691ffae14193", + "IPY_MODEL_7c0cdefc947a4385b1448767b54ae8de", + "IPY_MODEL_fe8c838f4b57490890f5d853ab66d3aa" + ], + "layout": "IPY_MODEL_d57ae8385f8644cfa0e079ca1e88f8ff", + "tabbable": null, + "tooltip": null + } + }, + "e3279e1600834adc9274c2c50f8454b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e06af206892e4f3e9bb3e009ab7d40b4", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0a0ec6b9d5014c2bbb47df85e272bb8d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e3287fd297de4d238e7dc77f15221123": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e3351d9c3ee8411b968bef75e03cd8a3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a58a5a6ec50a422da57a3aa029ac5c8f", + "IPY_MODEL_535486a74e1a413abc79b18ff11b0aae", + "IPY_MODEL_4b4f08a707c84fe5bcddb07b245be151" + ], + "layout": "IPY_MODEL_092f69c462284acfa5c41f6f68b95a08", + "tabbable": null, + "tooltip": null + } + }, + "e3364eae3d824a26aaf19ba7738f28b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_75ad0f0841d94974b70c77918b8b3eb1", + "IPY_MODEL_d9c16d903e354812b3c6f2d32433413c", + "IPY_MODEL_7696efd1cd264710a9313de7a2f685e3" + ], + "layout": "IPY_MODEL_51cbbcf4268f4573ac7a98a7b0b2c11d", + "tabbable": null, + "tooltip": null + } + }, + "e33f4f645d10448b94970ccdad5961ba": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e341956617424456b2895b5d3895ef12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e3437d96432c49b4acc5c7abc975cce8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e343bf94b2c644d689af46d480223e09": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e351f76656494b6f9da5b081153a0397": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e3810e3b5dda43f8aa4e8924ed34b96f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e38190f09548465ca76d565feab077e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e3861a097df54b019bbb8679c5998d55": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_447d98a9d9554bf58132288eaeeb603f", + "IPY_MODEL_0f3a5db2fc80487cbdf435489e3dde7f", + "IPY_MODEL_4fd047f701834c7aac94b4b9c81f25ca" + ], + "layout": "IPY_MODEL_40650535e677415da7bc1a702f197a79", + "tabbable": null, + "tooltip": null + } + }, + "e38a48cc4b794803aa1888565c136c26": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e39d014397d74134b04f3840358b9c73": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e3a84a28962f4c09bd03706cf505446d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e3b2b463a5ca409eaabe57d7caaeba45": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_abbb0ae6dd014c339b6e49ed59f058c8", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_aec218d4ff044f0dbfeacb22426e65b4", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e3b9cfb0d3c64b87a9e23d5adeb9a04a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e3d03bb157bc41baa58dff20f1a9dca9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e3dab317d1b84af9837f084b21563ca0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e40ba71eacf640b296f618decf007a02": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e43e8e97f6704264bd9500b6f18a7677": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8980e4faaf4343c888b1b9c6a91aaa8d", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4e2732137930497b8a95f52e9f353d80", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "e44d21e807de44ea831ab61b66a16037": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e46913e570f246d8a81fdc49cc99434b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e469c5cba17041f48b01fcaeaed1d040": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_053df76bc61b446fac79c2df7ccc3099", + "IPY_MODEL_5749870b8e414a369083204b0866a129", + "IPY_MODEL_87f526f89bc34d5fa2239e3ebb7d002f" + ], + "layout": "IPY_MODEL_cd1a2f821ea24f73a189b96a9116f28e", + "tabbable": null, + "tooltip": null + } + }, + "e47b4fd203294d99b7fd10cf4a81ead9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e47f903898964653868952079a6dc67e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e48a2b8562034167a30bfbc3960b516f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e4a3dd9bcfa24461abeffbc2454262ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d1e0d022b2a140eb8cc079e6048773f8", + "placeholder": "​", + "style": "IPY_MODEL_4918c70242bf4b5999563522cdc8049a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e4ad4b349a48408ca30b9b11b2a95c2b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bd58df2167774f7e9905f55a3faa89be", + "placeholder": "​", + "style": "IPY_MODEL_cdf7c0fc8e3f40c692b5911a64b29cdf", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "e4c1317807604e70a0e0abe5d9631241": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a1aba637fd4e4c568215c028f45bbb80", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9635cf005d5446218181a48399babf9a", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "e4d4170acb4b4ae99ecaab39b0301c54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e4f5e8a1351c45c694065febf78dff75": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e4f69444492340aabfda6aed0265321c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e504f18c324c476dac7f4b0877ed12c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_928cc117d09640e9b4dc5aeb5055d395", + "IPY_MODEL_e02186e2e4764ca08c9d5a55390366f1", + "IPY_MODEL_820328770a9e4c899de0a88cf3fec0a2" + ], + "layout": "IPY_MODEL_ca9e5ecce6fe44ca9233ae2c7b1adaf6", + "tabbable": null, + "tooltip": null + } + }, + "e512ba04ef864d289f9216518191bf0d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e519f9c0f8b847f9a07c1d72b976fbca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4666aaabbcf64d6db600739b0d770de4", + "placeholder": "​", + "style": "IPY_MODEL_d1815250fc5c4be69e5c0de1b7e88fa0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e51c4e0906114d28a5675367dd3b3c48": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e52a327fbc554655877dc08a02925797": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e555e177ec8f4cd9ba49b72b005b36d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6a5bca00b3fa44b5a9053f1b83ed1ddc", + "placeholder": "​", + "style": "IPY_MODEL_a523685911d5430a92d3c571fd86422c", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 849.34it/s]" + } + }, + "e556b0a2da10455bb4ade6d957c52b30": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e5940f94b5da40a791948ea10b5ab9ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0d63f1231e794aee8f202c87ab228f01", + "placeholder": "​", + "style": "IPY_MODEL_0e3644372f484ea9b6be5ea5cad232c3", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e595da8843764e4db66816f9aff4faad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b5a45dad69d340b081571726eefbe75e", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3b74da5086ce4a46b1814bcdd1f20003", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e5a308c0df9f424a96b3194edbacefab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e5c473aac1674aa5ada988118b1038a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e5c9f6ac3b204bdd91a73571225e1ae6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e5e612e6460442e8a28c6169f9d6d1f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e605562b476d487380b213c7e9b872ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e60faec959074fc3ab3b5fff2219ac8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e617aa4ded834c2d98f4594c2d71f3eb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e61d1fcfc5c74387be1a0cb233f5155a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e622da1ebf314c5b89aa86d9cb821a3c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e623ba596aea453d9ee5b175c52143d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed611c17ed3a40a484efdb1b975e91cc", + "placeholder": "​", + "style": "IPY_MODEL_37f1475666e141ac926a9e40774d92bf", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e62743eb01c8490b8c1dd3a9d7a4b99d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bb774b02cd0e4d6cbde10e5e79dcbf81", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ea67afd8a4094940a12a07ffdc1d8212", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e62ad9e30e2a4abb8d8dbec51b04492d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e632937420614805bd6742c3da4d7430": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e646a6865de64c42a102113602313e49": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e6486a11f61547619fc4fedf9486aa2d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e0d774b192b244e5919ef6d3e61f59c5", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_830e3c7088144bccaef0b97acc4efdd7", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e64ce418c24e4f61b23b9920e24511ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e64e7573ea4c4dc595ac9c6c54885f64": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e656ee1c23a14c0fbdda369b9ee1af88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4743a7c13aa14555aad5ad1e2be41ed8", + "IPY_MODEL_2a7c965604ba4e3db3a1cfe835fde84b", + "IPY_MODEL_88ea9f2eba3c49088868cddf5cec2f4a" + ], + "layout": "IPY_MODEL_7d284330815f4777ba0eeaed1e683456", + "tabbable": null, + "tooltip": null + } + }, + "e65bef0460dd4f179dac2f732afce916": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e66e168b5afc460db666a612f099ab96": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e671732038714edaafb5f496f0f37acb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b487a5d761124133b06f4cde135300c5", + "placeholder": "​", + "style": "IPY_MODEL_9cddd75fd6db48d1901a6724a3ae7d8a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e671a77deb124c88a0a0d98f2c6f53f5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_356010f9db824b0a95d9a3c3c4fa0fda", + "placeholder": "​", + "style": "IPY_MODEL_404bdd6cb1b94639a67ccf3918b98706", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e6727d01974f47b9bdeea8e358041342": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e68d8cf087384f9e9e98f42c4fa92b05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e6a3e649979f4043b8ee3bcd27ea9245": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cc981b5b2ea84ae7ac5ef3d2c4ee6984", + "placeholder": "​", + "style": "IPY_MODEL_211aeb6397b143dc843ccf33bef66a88", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 349.08it/s]" + } + }, + "e6b03fb133494b28bf3d96c46d8bb1c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2811ca2fc318442d8a4594a001f6707a", + "placeholder": "​", + "style": "IPY_MODEL_e96ac2353f6c4febb121ad70cbaeb457", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e6bdb17dabca48d986e318589e1e272e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e6c5ea87368f4c4e897f587691a59098": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e6c8657411914f0d93a8f0f86450dd56": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e6cc7503bc6349cc93b819c5a9c39fb9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e6e607425ccb47768056d4896be2cc4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e6f1248be786485f86100ee6f39d5755": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_67984abb6b964f9d8b0be1b693f739dc", + "placeholder": "​", + "style": "IPY_MODEL_677062af62704c8684ec44e81fd4f4e7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e6f1e212b19440fa92fd68e67a073991": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e7053b8431624f8f930fe3b2593c0246": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e7155e108f1d49a5ab2ea8884e9113c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e21b26d972a84ab4a24f38ce69ecf53f", + "IPY_MODEL_d4c3af846bf646c0ad6113ec549dab6f", + "IPY_MODEL_e73ac4c055f24d78a9935e1f6e21055e" + ], + "layout": "IPY_MODEL_aec20ba239254bbd872cf8e56a0a0412", + "tabbable": null, + "tooltip": null + } + }, + "e73ac4c055f24d78a9935e1f6e21055e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_753f844ee1b34ef18c3599ffd5badc8c", + "placeholder": "​", + "style": "IPY_MODEL_52c8b2d74f5a45d1beaf6af2df3443ad", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 349.83it/s]" + } + }, + "e73bdad499c5479aafb3f0296e60700a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e74aaae1ce00412fb908ab7f6313fd72": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e74d6a9c01474e7a862b8a3be13ae1c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e74ecaf58010411797c64959fc4ce2c4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e771006455024cf5ab551731c0960747": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e777aabc41b948849bc4c36012a6c8e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3f038e6b59e4fb6866f1bafed3221e2", + "placeholder": "​", + "style": "IPY_MODEL_8f4c14a615d94909983f2b0260842174", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e780afe5ba184f3b9cb0af6732f8a464": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2c803492bbc947b892a077bc2028dc99", + "IPY_MODEL_b3b1539b3c4c48d98fb6a7c07a2499db", + "IPY_MODEL_0646bdea4aec482aa8a8a25ad0ee96c8" + ], + "layout": "IPY_MODEL_02fce716f67c405696b8803e3d3e7aae", + "tabbable": null, + "tooltip": null + } + }, + "e7932843ea2c4f18bdd7e9dae188804d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e7cf9bca937c4dc4b8267870ac7476ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b1abaa9f4a464683b9874c51f6f88ac9", + "placeholder": "​", + "style": "IPY_MODEL_a6657c6b81734c2d8c8e4df868b66370", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e7d116946e134bc5841826b31173f617": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e7d82138ad524c5ba84e3d97af0bdc79": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "e7e77fe03abe4f2bbc3e182d32ec5074": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_710fa8b9de5841ef862869fab521d055", + "IPY_MODEL_67a1d8e3e0514d10b6d87512aeafed04", + "IPY_MODEL_8bfc9ad5d8a44e5e87aed854226e1cb9" + ], + "layout": "IPY_MODEL_bd3961811b2b49959dd359c2e4d25b7e", + "tabbable": null, + "tooltip": null + } + }, + "e7e9b92bd6634029bf78e30d6ae4366c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e800cc1c9d96495ea0e084f16ab21e8f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e842a4e0034647b59d0fee54f1ba52ba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e84af3959e9c421fb8f6c773ac32785d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_add8c3cbe37640cd8770c979879b9d8f", + "placeholder": "​", + "style": "IPY_MODEL_8f7239a3a37946888dc15cb8a26ed5dd", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e85fa9ec6e0348f4aa526dd87ffa210b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e872350d2e7d48d593d2192038a9e9aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e87e39f8841d45c08b9444e91a4dc9e5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e883a21f27d3436b86f94ff63d9456ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e890abb49f83439d8854c768c3bb0ea3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e8976f56b9dc49308b4a3633b429c64c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e8ac4b45d1dd418984e29863507e02c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e8e0a846378540089bfb6423c50d17dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_708ad11b789c4f92a2b764e33d8a67de", + "IPY_MODEL_efb06c792cec4f409f250d08d8771093", + "IPY_MODEL_68729e946ad9420291eeedd29094d8ad" + ], + "layout": "IPY_MODEL_a43220bd6b3d4fecbe72d6611433b186", + "tabbable": null, + "tooltip": null + } + }, + "e8ed2cec90d24915beda9fc1f7c6bb9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e8ee959cd6774006926e39292719541e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3673ffd60f464542af9171a7fbd53991", + "placeholder": "​", + "style": "IPY_MODEL_c84c16e1dd94405e994fff5754378cd5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "e8ef731e201a4377bd397eb0309452c9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e90b951827b84c729253938d196c8623": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e90d9da2ffbd4535b6809e62174ce856": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4f599e3580f84b72b39d663f42dc43d1", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_496a2ae07da4455286cae77728bc6093", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e92416760f82480fad8bafb3c952b35d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7fc63f3c82e4480d9fae95934782709a", + "placeholder": "​", + "style": "IPY_MODEL_408ab68790774292ba1cb847a40a0b41", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 413.87it/s]" + } + }, + "e928c858bece4168a70610230c811c85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3aabec2a233347ce947d37c2e0e57462", + "IPY_MODEL_e00e5fb5a751426597eca236b5846441", + "IPY_MODEL_2c0f919e98ca4a35b7d34d3d7c6ac07f" + ], + "layout": "IPY_MODEL_836f179f7121413084e370b0c21ade8d", + "tabbable": null, + "tooltip": null + } + }, + "e9413c629f0b4f3ea57048d2d79c1e3a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e94ffa18831b446baff44a1fb06490f9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e95c738acc23476aa21bf1f52e33ed67": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e96ac2353f6c4febb121ad70cbaeb457": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e97db2ae85ed455098358035aa0976c3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e99813322ede4a629e6af281e3418408": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_543e2c6e4b6e43a49afe64bc463dad09", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d985ab2644dc441e8713502f24706493", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "e99a2f28401f40398a4d5207a6f68719": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e99d35f7a06e47c7aae9e75cae4a6b96": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e9ae73c46ec4448a91b1a66a6212c0c1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_552335b59b054509ae04f9e30493d90d", + "IPY_MODEL_f5aee04f5d574c799f3e6f70d21c211e", + "IPY_MODEL_a271966e4059418b82fae43530154e54" + ], + "layout": "IPY_MODEL_8da3508c3b3e4bec90276cad8e7e4951", + "tabbable": null, + "tooltip": null + } + }, + "e9d98acbf9234de994ae49b77016198f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "e9e3bd085ffd4dd68056e252d761edde": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b781646ee9ec4f3ea25023fe4b948911", + "IPY_MODEL_d43c6f999b474de3a8993e81c7e38d5e", + "IPY_MODEL_9c422e114a80450189a8589239938563" + ], + "layout": "IPY_MODEL_3b55719795db4d14b21ecb6f6a92f68a", + "tabbable": null, + "tooltip": null + } + }, + "e9e77bfead334dedbd2f2960369346df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e9e7dff05cc44e80984e56a795486e6e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e9fb51d4820141318644191f7882bd62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e9fd2c6509104df2addc49dd1eee14d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4bccc470902e4d48a1db56d06c69a6d3", + "placeholder": "​", + "style": "IPY_MODEL_2c966ba422e046b594a7e04566768d51", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 410.64it/s]" + } + }, + "ea274a2abcb84b5a933fc08401a8bd62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ea4e7d5a22a64aa09d2c1ec8e0c2de9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e1b3b12d02fe440ca2cf48a97cafdf27", + "placeholder": "​", + "style": "IPY_MODEL_6fbdd309684548e1b04024b6498b5f19", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ea5128d04bf34d25a3369128e52c39e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ea54b836fe1e4814835a865266fe4fac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ea67afd8a4094940a12a07ffdc1d8212": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ea6b75ae656341f692117126ba92be6e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ea6d6ceefa544cd5a6a676f3a0fa0a03": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ea7ec4c0efc448e398d5402c80026d3b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b6af306e90094bde8933a76b6d6f3f5f", + "placeholder": "​", + "style": "IPY_MODEL_94184d5c7e2f44b39e0574a312d7c3ed", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ea89cca4b822402ca5edc78f72ab9f51": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ea8f997f442945f38cbf12f09c6b0459": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2daa29f38d1e465785a76a5adf8a0277", + "IPY_MODEL_acdb0b3ed8724a00b0bc8b60ee44b883", + "IPY_MODEL_f4d14b4e9082496fb411a79dcabcf8a1" + ], + "layout": "IPY_MODEL_cb9ebf2cfd094df0b0cc5ef6c6c3c1aa", + "tabbable": null, + "tooltip": null + } + }, + "eaa24e513149432099650048dcba8716": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eaa786015c954218b953ae7a40a1190d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eab3834b5adc4815b92c51a7dd5be8d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eaba3dc072d24bd19eb290f6be84e92d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eabee8977b7d440294cd4cc28196c76d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ead5060dbee04062b50e26a99bfc4405": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ead9dd347ac144848ad22557451c102d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eae29ac08a614771b8fe59203e3e3dd0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eaf63e2939da4a6abeff5899c19fc6d8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eaf81bbef9dd4c2a9fa49cf304f8873a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eb0cef2e5f444a549ab38404031df2f7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e24910c852944bb982ebb73c9e7e8723", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_f43df4e9e1e642f7a69ead557ba12576", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "eb1ee653d0cb4843b5efbb6996b70cb9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eb26c1df793b4050b70b575b3b502caa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eb5d188e0b184067a6175fe64fccf96c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cdfabcb6171b400c81034077ad73fcb4", + "placeholder": "​", + "style": "IPY_MODEL_8d17f19d68bf4f77b195bacca5387eab", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 986.20it/s]" + } + }, + "eb6a09ef49ca4b8884a618d96173ec1f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eb6d1084a2794f5aa9b9e4b1d297964d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f2038c160d514afabffbfef6542dbfe0", + "placeholder": "​", + "style": "IPY_MODEL_75b7acebafe34804b068d68c6b72f6ff", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 340.01it/s]" + } + }, + "eb70f85102994270bdfcb15d7a12f7f7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eb71b5f65e72456d9df597d1de4631da": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eb800badef54456f9b95431ff0812f58": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eb86a9596a744ac38d19fdb0e51f728b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "eb87e3de02b44911b34c26990c1b33f1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eb933236264045f0a310b94b07a5869c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eb99744932fd4fb88669e37ac0c6f396": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "eb9a3beea6934f57b6cf73f1ee117298": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eba4709a9b8f470ca64502a766e9f4ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_37e4ebfbcdcc4604b03139d39eddfcd2", + "placeholder": "​", + "style": "IPY_MODEL_475924ab15e14e62993382b9987db8c2", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 77.57it/s]" + } + }, + "eba881a611724257bd21496b84439f43": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ebcbb003b7f54431be6af05cb0bde96f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ebd745321b1a48e185369de08d0e7852": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ebe41f02d1154d7db81bf447c58d1aaf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_11e4dc1684af43b892da8f30a1a32d2a", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9a07355c426f4a519088c2312a22af8c", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "ec00296dc71547eead71a2aa5e742d86": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ec2840d714574384a0a30125f14911c2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_23c7cc9004b844bb99841362d826fa61", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9581c17d25364e9da6d28c8f26e99c74", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ec3a9b8d629c467c9562e48e13d92941": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6318be6d27aa4e3083c2a5d29dd2c3bc", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4d548a6cc2124330a0247f8474a08a8d", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ec506b7c9d7047ee83792ab1a7b671f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d9b1f81193d1492b92dd6352ba33ccb3", + "placeholder": "​", + "style": "IPY_MODEL_1e53342c8d06440697fb7d09b907cfb7", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ec52d56a45f7468f9fd080d871b03a11": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_286d8e4ddd8c4571b1f502395b81bdb4", + "placeholder": "​", + "style": "IPY_MODEL_fbc65770a42e419fbe2f9d36af85f9c0", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ec635a920aca4b1f89848eaee9a1642d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fd440c2036e04eac9e628fdef542cf11", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_e5a308c0df9f424a96b3194edbacefab", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "ec82fcb270004491a95123102e13a852": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_db840168008046d49a871911ed3e0f19", + "IPY_MODEL_dddbc4f5c3844059b84a7771a6751324", + "IPY_MODEL_38861833e60b406480e850b19914cfb5" + ], + "layout": "IPY_MODEL_943358bafd8f4ecf9aab6f5581f5b819", + "tabbable": null, + "tooltip": null + } + }, + "ec98f96923a84114a56e9a5cb0d76a85": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "eca7c6efb2844a72a03a0625ec4d7a64": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ecab3ebf7d1a43c5a2c2db5f686c7579": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ecacc241ffa843c299eee02dcb942cba": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_12d3248201b64ce896bc4f25b5c83227", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_926c1245a5b6401eb09392c6db6f37d5", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ecb21ea13f014102b57d9e3d3091e8d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ecb544e479724206a965c194eff494d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ecbd322493d54888a4011fda05146c84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ecd8a8d382d140b2b797d69bf551492d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2a16fcc115d1450083975a91d311333f", + "max": 188.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_72b36373d1284236a21af76af3c4deb7", + "tabbable": null, + "tooltip": null, + "value": 188.0 + } + }, + "ecddf788db7548e29069f6f1c6e97600": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ea4e7d5a22a64aa09d2c1ec8e0c2de9f", + "IPY_MODEL_6cf90a1d7a244e82af80393c967aa8ab", + "IPY_MODEL_327d5847478447b9a45667b6b66ca9fe" + ], + "layout": "IPY_MODEL_b6a9798bd6dc4f78b9f423dad44294ea", + "tabbable": null, + "tooltip": null + } + }, + "ecf5edeb63ae47358e867d9b51940bec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed002e11be86465f8ecf31bdc94ecc3d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ed09453939784c90a18eeb9b218e79ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_39171acaf7ee4214b08e6b6ba984c308", + "placeholder": "​", + "style": "IPY_MODEL_82362f32563b44aeadea44c062900fa5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ed0e9be7136649cab5856df521aa4193": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ed156f913f87402aa969465a2e21ed06": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5062978e692049798e10a4818b13b064", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_982a6936c10545f191e14ce515b5f2a2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ed192cd8e6374addbf1b5bf238eebae7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0f0e1e04e5e24f5b8245be969b3fd692", + "placeholder": "​", + "style": "IPY_MODEL_a707e3a4127c4ff9957b6bf115d7eb83", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ed333bbdc2354ab7a8eb0a01c5b4855a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed3ab80e99fe4248bfd0bf929c174084": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ed483a8e5464441fa754b85494219608": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ed4b595103444d19a013b044f584a86a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_998a653059a84d2691debaf482569d3b", + "placeholder": "​", + "style": "IPY_MODEL_0e13329af9f948238f401eae70fe9eb1", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 443.51it/s]" + } + }, + "ed4beca47e2843b4b7ddf46c690532b2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed611c17ed3a40a484efdb1b975e91cc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed634f0913434ba6a1cf6080fe663188": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed64e7b8ed984e60949b2c9675d1a6b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ed6ab37e159842a6b78794de5f5ba48f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed74210835654334acdb439a484eee7a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ed795a5eb12b44ef9fa51c2a744ff218": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ad6eea54b84a49c9930e4f6b767b03b9", + "placeholder": "​", + "style": "IPY_MODEL_def0985cb47d4f959a979348d5a2dea9", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 914.99it/s]" + } + }, + "ed94de84efeb438b9670122487811a84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eda61d14381b4d4fae5af4a34f7ad841": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "edb1ba887aee4fe2bab74d7e31a1dc13": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "edb52ef5142e49acb1560262a71867ad": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0e2d8b17d37b4c1c945f405e9cb2353b", + "IPY_MODEL_f42a646b18af42c79cd49f772a15f5f8", + "IPY_MODEL_c4701190578844cdb3dc0b5542f5a33e" + ], + "layout": "IPY_MODEL_77fa5be697dc427fada83a686b4e696b", + "tabbable": null, + "tooltip": null + } + }, + "edbcaed0049d49da9d58677a1ad76807": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "edc1117bc0d1402c9ac24016e530b11c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_27ea12c57dfd44bf8abbaf2888ddf3b4", + "placeholder": "​", + "style": "IPY_MODEL_5a57975521834cffadbee845b4fb5d7d", + "tabbable": null, + "tooltip": null, + "value": "Sanity Checking DataLoader 0: 100%" + } + }, + "edcab0e4c4464fa380d2fe277f8e03aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_37f67e289dfc4494866667d9ea563a65", + "placeholder": "​", + "style": "IPY_MODEL_9bfc6faa9dd2427ab62948295b964e58", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 709.58it/s]" + } + }, + "eddbe79377d1419389872c97b17e71d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_78f9bddc78844e258946a10085a175f3", + "placeholder": "​", + "style": "IPY_MODEL_0c0646e5c74148b5ae397b46f1f99664", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ede4021f397346a1bbaf04f889e766ae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eded7877bcf24fc5b955f29774ae4788": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "edf4da9409044fd4938b2b52cbbb0355": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8eef361f293a45289de137f861ddb7fe", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_59bbcae8726946efb23b876cde654930", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "edfb3f9aaf914d4ba89c118bc3b837c8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_244c16feb3574fb6ab7e9f611002f7f3", + "placeholder": "​", + "style": "IPY_MODEL_3a6c6072f931407689ffa75e7f141826", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ee2591c0e0fa4a01a83b1b5882a3aba8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ee25e92f66ee437193b5ddf7b2794c5b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee6aa06359c2481e8fb7e34f6e012017", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bff1ed49f1fb4b58b9c26bfab61423e2", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ee3299c06b3c43adb759725208b2e65a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ee52c1070b3149f2b24cd4cd1807a3f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ee5aab6de5fd4520b59789a6f9989ad4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ee5bb0860e1d4857865889e223efe8a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee6aa06359c2481e8fb7e34f6e012017": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee7117dceeb04990a61c35b4683a51a8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee78c9ef7bc94c6388f0fc2a5c9470ae": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee7be7c353ae4da696787b33534edf8e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ee7ee56321aa4cdd8c261a198247da16": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ee8141fa1331445ba6077a28e21f11d4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ee85ecdaeff3480a831c22b3cb51b28f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee8ac1256ebd4079888b36fcfd42dfa1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ee9a81e795594b498f7f85aacbdf7b1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eea2b978bde343fd800819512121340c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "eeab88f2715a43ef8855991e783fcadf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eec98e22d7dd43108cc2f943194cd182": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_706dfbecb09448ff88dc778c27cb2cde", + "placeholder": "​", + "style": "IPY_MODEL_13d2e09282464ad68aaef9b8ae4db24b", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 1052.61it/s]" + } + }, + "eee114d760a44ce89e70f6cbcfcb2da4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c33080cd7ea34fa4b427d7b1fd46435e", + "placeholder": "​", + "style": "IPY_MODEL_e47b4fd203294d99b7fd10cf4a81ead9", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "eef0f6560d954d5ea16e60990738e2cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2cd33a4c4d0547879640707271ad7894", + "IPY_MODEL_8b6fb84b957e4716830887a3b00cdba6", + "IPY_MODEL_b5a2b688819c413dbb8839688bdd1b45" + ], + "layout": "IPY_MODEL_44746cd4d47340acaa9c417f69b5f143", + "tabbable": null, + "tooltip": null + } + }, + "ef101e9692e442e588fd5d0e99a750d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ef45c30b3875436da9db5a367363b86f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_235ce2fd08b141e3aa6f600ced2c942d", + "placeholder": "​", + "style": "IPY_MODEL_841ec2d7ce0f44a898b6fa9d79ed4892", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ef527e936cde45848e61e036f39b8072": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ef56308014e8433ea6448b2b9ef346b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1e78747580af48c9bfab3c2ac8bdf2f8", + "placeholder": "​", + "style": "IPY_MODEL_831af929eb0c49a7bbc862b8a44498d5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ef5a6fe6c54c4b25a4369f071700ba14": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ef5ef897fb0f445d8bdbb9603ab9fe1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f78df82c1e374eecb528481de1de59f1", + "IPY_MODEL_1a94e649c7634d648599aa33b0c7496b", + "IPY_MODEL_3af1aa6f8075443f98cb3b83617cc259" + ], + "layout": "IPY_MODEL_19efd87c4a634815aead4f3eb192e516", + "tabbable": null, + "tooltip": null + } + }, + "ef64f5794d524e31b516cbf57f4fc05e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ef69dbd1c4774076be35c759d7a24f42": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ef8070de53a54b7e8b3769bab50e9e1b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ef80f6c5e36d473d9d657c0a4114544c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ef8688c544a34a64987ba2c79b41b520": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ef8a53227ede4b8bb34d3a6fd0093f24": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ef99e34c5f984adfb528fa25c4fc7e93": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": "100%" + } + }, + "efb06c792cec4f409f250d08d8771093": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4916e28d326440b6bc2d9e11e013c788", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_bcc4e13dabae4ee4a510d5c993aad239", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "efbd3981c76b4b16a9f2bcf87be65667": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "efc4bb86a1f145d4900c3deae76eb440": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "efc65791e9e44bcd9c4f7f135678dcd7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "efd0d93e3fa942108e8120b539ecbf96": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "efd405929dd6480e871f75db5c536b08": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "efd5fd4aaa8547f5b7a439f26f0bb11b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "efd91878ff7e4aeb8ae8529d53169c9e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "efe93a27bde349f5a17664bb31036ccb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4a0c75b3123b4f16ac367abfa3d76e21", + "IPY_MODEL_195b8f3e76d74bf1af4e5fe5a6342134", + "IPY_MODEL_34d2a5c1defc46d6a24b2a4fcb36ebe5" + ], + "layout": "IPY_MODEL_8c3f482b04ea40329887fd6fe9d80d1d", + "tabbable": null, + "tooltip": null + } + }, + "eff2252c4aa54fb8b71abd1760b50884": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f00f2e5232984d7c963c74b9ec64f4a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f0131c7824984245b47d614becf42c54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cf3d9dece3034377a8379df7f9008c31", + "placeholder": "​", + "style": "IPY_MODEL_f7c3341d5d164a979dcb7ebd20cea39f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f01feea5db884e48bef172afc5d4f13c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f020fbd99d56456aa7598e6c9655a735": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f02578ca998b4723950e33bb8bae7394": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f02915bc03f6487e96086a47a2af108d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f044af9af66e422dbf3b603c423893cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fe48aeb78a094142911fbead42536b3e", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_64a0c394baf649c4821c2e8ef55b3029", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f0456487f0e547aeaa29bcc3a76e7f87": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f051092cb08b4b1c9bfcdff2063022ec": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f05e48afdef34b00b2e4a12d0099cb0d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f06be3d68bac478eb13c8684f583989d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f08bd578b4284e4da915f056347ade94": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f08bed65cb0242ea978a8e7c94f9d419": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f095990dfb934fa792ca61cc0c0606b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0166f7abc34f4a608471a357c5ed3ae6", + "placeholder": "​", + "style": "IPY_MODEL_aac006f980ec4cb5b9b4f105601c7bb5", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 804.48it/s]" + } + }, + "f096c052f4c7488bbfa0c02fcc862f18": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f098fc9853cc418da692365f25880f0d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5a734cce3f554523a5ecf5ea241ef60e", + "placeholder": "​", + "style": "IPY_MODEL_feaf0e9582ee4f8ca0ec73e96d09ef2e", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 177.78it/s]" + } + }, + "f09a0be39cba485aa20523f5d303edc8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_423098a647144eb88968067ec97765ef", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_dadfb78bcde740aeb7ba53efd0b3e15f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f09ea54a3563481190b463f7106bebc9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f0cb25086de34aaaa065ccc2028e50db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f0e0c95245fc41d0997b80c94181c459": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_643d267af18c4b0c988e89281e0c0d12", + "placeholder": "​", + "style": "IPY_MODEL_8129283c80a0438993b9393825486b67", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f0e639787d95482e802a824452985fd2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_822a6a9eb3c646f2a75592df1997a8d1", + "placeholder": "​", + "style": "IPY_MODEL_03209c43e78d4527999263d010052e46", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 610.47it/s]" + } + }, + "f0e6d6d30d37475781faf7dd660fee95": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f0e7f35a869d4a0a94d2a7e44da093b1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f0e99b0ea7a145cd9d9b134db136d0d0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f0ece572ab5c4c028f0354ac5af4c01b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_59556bfeaa334668886e936cd8aec37b", + "placeholder": "​", + "style": "IPY_MODEL_e343bf94b2c644d689af46d480223e09", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 507.93it/s]" + } + }, + "f0f0f160a03848e4a8087d13a2abd96d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f0f9d77ec11840a29a487342ae18115c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ecf5edeb63ae47358e867d9b51940bec", + "placeholder": "​", + "style": "IPY_MODEL_cfb8e7ad15c04fd78dcbb15f5be0c40a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f111ef95de1b45efa2f71d6310b0ce6b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f115a7754fad450a9d3e3d08605b53e7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f13377de35f14dd588de8c7de362f3cb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f1381e271215413fac3f68213f0a4d2a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f1497a26afe44ba4bcd676e76ccf9896": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f14aa879f9af48089d3e54efb67abbe9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f14ff952e7874610b7ac724e2118a000": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f151670f1116462f812f8dd5d3c0c2d4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f16479aff920488e9b007ccad2415cfe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f190ae66d31d4bec99360f029220869f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f198823a7dd64b3994b1ec412345d6f0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2834b09c056246f4a41e93cb0af5b6d2", + "placeholder": "​", + "style": "IPY_MODEL_28a44175736e46658938c179f01ecadb", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 360.77it/s]" + } + }, + "f1c2baf2ef1141c99328dc945f182edc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f1c2d21b738f4eba98be3821b4b2f62d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_840ed9a73d904e86b3275776bd3d6702", + "placeholder": "​", + "style": "IPY_MODEL_21d802a6848744c497ca1757fe0d964e", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f1f6014f7ec243a6aca3d7f16da2f429": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f1feeacb7422447587c4f1c30274990e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4652907cfe51460b94c52eddb702c3c0", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_95cd8cb3edf24868a4bc949d029493cd", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f2038c160d514afabffbfef6542dbfe0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f203a5afb1814218b49bf7fe11b2d287": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f2081be33ba44036810ad1558c02d608": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_230629b7520d42c182772f5f6cd90072", + "placeholder": "​", + "style": "IPY_MODEL_ed483a8e5464441fa754b85494219608", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f2110a40eeec443988a6b75be4b2dc12": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_82affe5f493047629cb2551d769e2748", + "placeholder": "​", + "style": "IPY_MODEL_8bfc298386824af1a444341505a74aa2", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f218cad597484a43b3722cc5c20eafb3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f22083405209496d8466d64f8244c716": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2b3d1adfd7164fa49f567a9eee665642", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_63175a4a7ac042c2ab56c9ab46595846", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "f221f2f8f9be4ebda2706a20356c5c0c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f26e2af746864f9b96c4a7127086f6e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_21851ff89e93448b92f35e0e27ca7a47", + "max": 47.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_7f4e533e3b8149d78f176cfe70a0507f", + "tabbable": null, + "tooltip": null, + "value": 47.0 + } + }, + "f26f087b8d7a47129ec116b2ad826be3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f2711428c4bf44e8a0115e605f6856f6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f28298b02d6946d9b4b697d5cc1c381f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c723cf95f45d462d978c636a8d0e6c16", + "placeholder": "​", + "style": "IPY_MODEL_5e7c5673ca4d42738ac3bcc3822ac0d9", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 736.46it/s]" + } + }, + "f2858694df454067bdbe152ca8ef85ef": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f295f4fb10ce4597b7bc221775e95072": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f2cb605132a546bb86bfc62e8fe490df": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_95ff5d6e809741999c1c630d4586d196", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_80842ef23e8d4bb691e58f3fee4c334e", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f2cca77b619d4841b43873cae2c4fe07": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f2ef96bda7084c46831f5a5bd602e1f4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f2faff7478f34e3082b89853e13537be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2886dc3569904be1934a63103c29bf63", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9cd7ed789c274190b932871ba77629a4", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "f2fe462ac3da4419be4d9d3351448904": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f30172ce5a3049edaa6bfacbb695b609": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f30615cfb8a94a27a1f02d00f55e34fb": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f323c00e82664e3dbd4603444af4d758": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eaf81bbef9dd4c2a9fa49cf304f8873a", + "placeholder": "​", + "style": "IPY_MODEL_b4ff35a568e14327a85148ac47ac9f55", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f34cf63ad6c0496ab72abcb837e17f90": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_01771f5ed9ed4601bece6cb5baef817b", + "placeholder": "​", + "style": "IPY_MODEL_09fc9cca4adf4a3098eecc669b8ae4ce", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 906.62it/s]" + } + }, + "f35c3e9a8c5945968fa708072a467ac2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f3621e1586f44159856d85f8c3416ab8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f369728feead40a89526cb4ebd4fcf6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f36d6d0d5e984c169ef5f50a16419513": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ad7b1a20bac14b9ca1f9091219cd5c1a", + "placeholder": "​", + "style": "IPY_MODEL_11feddf9f696466f9780a34c5efe260d", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f36e77b96b944d38a552f04994cba0aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f3704169f7e94e1fa5c94497637762e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f379243e41f8437288395abd9ff26c6f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f37d4468e22c401193a52bc30a02463d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f38ca6c231a84667bc201f60a74081de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f38e21bda1f54934b68c8409d5668f44": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_975dc24ac96a41cb9c0c7a1f0fcd4b3e", + "placeholder": "​", + "style": "IPY_MODEL_4002478f298c4d76b1b3f2d559b3b069", + "tabbable": null, + "tooltip": null, + "value": "Epoch 29: 100%" + } + }, + "f39bac6be648498bbdd098fab9238234": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3ba26fe48374f33948f6b3720e46321": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bbddf00d02a644d4851bd672873a4826", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_00597d543e4245f1ae03a30af8feb66d", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "f3c77555f3504d5baf8d3b1cbe9d5431": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f3ccab1616734dff8713638a8b7fe46b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3dc0f9cd4644e0bba4cb6ed052bb43d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3dd6500133e4cc4a8f878868cad66be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_004cec3ef55e47c1b99c3809e8e4e61e", + "placeholder": "​", + "style": "IPY_MODEL_602deec04a844d7cb25e2258e2647cf1", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 222.43it/s]" + } + }, + "f3ece9a2d55f4f868d804393e064df4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_513381f14a924788a8237717573f59eb", + "placeholder": "​", + "style": "IPY_MODEL_a96a00848cd74aefa77785edf81f7f34", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f3f038e6b59e4fb6866f1bafed3221e2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3f03e43bfaf41088d29e8dcf2d63a51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3f16338ff86431285febc47737d210d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f3fb45ebffc4481b98ed10f50a0d45e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_549e4f81522141ff85d3c495dcc414ff", + "IPY_MODEL_7ebea3f57bbc4e9ca79363b6cb6e023c", + "IPY_MODEL_629f41faea684a50ba38a6af439b2f20" + ], + "layout": "IPY_MODEL_4761bb5218f44ddc86a3959715e1d2d3", + "tabbable": null, + "tooltip": null + } + }, + "f3fbea2c82e24d26a8cbc5b1f91a9af1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f3fea9d8fc9d4fa18a59858639aa59ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e777aabc41b948849bc4c36012a6c8e1", + "IPY_MODEL_029490b6d0ca415d959dc4f6920eb3b6", + "IPY_MODEL_7d6662871d6941bead411e19fb0e9c1a" + ], + "layout": "IPY_MODEL_7b9dfff0e15645c6995cdef8d3c48782", + "tabbable": null, + "tooltip": null + } + }, + "f406f43617a740ab835a313147358fa0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f40aee4b89244ee094fb5479e6d26564": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f413b629f71343ada9cbfea1aad81516": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e1cac58572847c5afc8eaf61ee9abf4", + "placeholder": "​", + "style": "IPY_MODEL_1a88d9bd559e4667b29c455e80ed0aed", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 355.22it/s]" + } + }, + "f41f69ec30d2458eb5ddf3d1e6ae077f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f42a646b18af42c79cd49f772a15f5f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_63345eccc7ec406994734cdfaefc0d2a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2a600e5cb9254dc7b893086c9bd9bd0b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f431ed59a3e043eca8a801c5a25fede5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4e755f7133b747f9b400dfb96ba24457", + "max": 4.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_40a2c5cb64a94387947bf793dcca5072", + "tabbable": null, + "tooltip": null, + "value": 4.0 + } + }, + "f43df4e9e1e642f7a69ead557ba12576": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f45e3879c82341c39fefda3a458af085": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4615440ddf24df0a05fc9ff41997f68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2f40d8e621e842d2b29bae3a838ab711", + "IPY_MODEL_5f0ff14a43be44a8a3ea20922b33b38d", + "IPY_MODEL_30b6564b85c444fa8259b77b8a1723f0" + ], + "layout": "IPY_MODEL_a8afd4c8139d4f1a85e6755b2e1bfab2", + "tabbable": null, + "tooltip": null + } + }, + "f4643accd75e40f0a2f195e7f184869d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f46af723fc4846289c7c87fc0e01de38": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f479424c9a99483ca11f17579a0d7ff8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f4949b379ef74d7fba34e3a8add28a92": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f4a233a3eb9d4ec7a7f7d535e798bbda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3e617c0641034f66817a13cdc8d9b13c", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_9cf4ccefeef14521a3c5ccd7c185e8c5", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "f4a443c1edd041b881428fe0620bb222": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_41740b1f4ac94dea9697ebae06057e92", + "placeholder": "​", + "style": "IPY_MODEL_0c63227372b846a29b9f8196c4c21f2a", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f4a6c5c1bd0145509a35e7519d28644a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f4aa8af217434117a57e8e73172b3b9a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f4aad1a0a7d74fd89a58dac18dfc66c0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4b39f63116b46dfb3e3f945474389a3": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4ba7519d5c240389c53153c0777c74e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4c52ea1b0eb425e9272be302bf6cdce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_dee4707f1c81488fa48fa076537b8d2e", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_819b374a8d22449c9f530a6fd7d8f409", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "f4ccfd2f958743aab5b269a86e4b83cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4d0d1f9f30a48468c5082859ad6f476": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4d14b4e9082496fb411a79dcabcf8a1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a52052251efe4048ba49d8da52f778f8", + "placeholder": "​", + "style": "IPY_MODEL_5c51989b234f471d8c02418215f823f3", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 367.11it/s]" + } + }, + "f4daa7386b544151a2cbf2063cbb0e2c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_039d80eec92a4d6aaac3c8275a98865d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_3f6a9238ef434d2eacc967a8bf54f9d0", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f4db1556d569446f9d3b3c029676f648": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f4db5e3d8b76407da686e8b087947d0d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f4e28e1ded7d4032bd0caf0e7b39582a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f4e35de5e01048ab94671afbe5274988": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5e19b2aa22a649558c0dec6151d565da", + "placeholder": "​", + "style": "IPY_MODEL_80737a27c8a44f1b9f19d81a6e9f0f29", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f4febd503c8c4be89d07a356418a30cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f5076d7ee6c74c2986894a18d9c6c74d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f51501071b1042609a7eb02423395b31": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_780d06762691400c8c7e80c7496fc6e5", + "placeholder": "​", + "style": "IPY_MODEL_64f5fe6822eb4efcbf31f932bc5f1b34", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 360.16it/s]" + } + }, + "f51d91a802da450ab9dfd5f20617ca01": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6d2f7717829e41f7b2bf0842e89948fc", + "IPY_MODEL_9d5e82c594254c168d7f3bead46759e1", + "IPY_MODEL_0f8f2b08a20845199ed0758ac6337cfb" + ], + "layout": "IPY_MODEL_1d29cb6b005a458a94953864686ac7f0", + "tabbable": null, + "tooltip": null + } + }, + "f527408669624981bc786d97d439705d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f52ca3eb65704fafa3505600b4991ee5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_742d364beea84bf3980b81906686944c", + "IPY_MODEL_c38c180f953644eb876f5587c3a06c91", + "IPY_MODEL_2c68945dd0dc444e9dc160f6630c3b2d" + ], + "layout": "IPY_MODEL_b6fb5202afa3467dbf80f63befb146fa", + "tabbable": null, + "tooltip": null + } + }, + "f531af4a10874126aba9e8fe897c0878": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f5400f584121419da0f756c1d7ce7b28": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f543a321d7a24d1cab731b3d8777155f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f54d757982454bafa6db58221ac3d573": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_66b0b1bcd52d415d9bbf5e83bd7c2718", + "placeholder": "​", + "style": "IPY_MODEL_7178ef193df24448aaa3981e3228ebe8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 351.51it/s]" + } + }, + "f54f5c77b85e4243b0ed731ad47e4bdc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a834924ef474a63acd9000f1d396e11", + "placeholder": "​", + "style": "IPY_MODEL_93be7e15294148d98a198b4aa4f9a4f6", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f56338e7551b4343a6bbf3b27748e453": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f56682900f504524aea1c6635691a9dd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f56b3ee617864d8abda55b87bdb3a06b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f56ed7a8d5ae4ee685ee5f2585501444": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f56fb9520fb14698a409f3d6e42c54e9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_84bf7d36b618409cbae8747ba15cf797", + "placeholder": "​", + "style": "IPY_MODEL_4319a440f63a4185b2cd305827187910", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f571ff5c88794c98ba508e84d7392083": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f5812e162a1b4ee5aa37b2480b49d99f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f583887fd6ef42e2831de3dbd80c4a07": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f58935ad713943a48842650b525f30b2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c280132d2448484cb90c502f9aca0da5", + "placeholder": "​", + "style": "IPY_MODEL_a29bb132392242169e04c9670b470295", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f58b335bb9234a41b1d0c40cb2bd3146": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f5904fd283d14d939d490d57fce08690": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f591d6e81abf411cb1a4d9b63082b838": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f592c4d2ec3e48ce829028131c54aae0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4f955d71f40546f4acc2cbb29df34423", + "max": 2.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_1a14cedaefc648ac8dc4ca50517daa4b", + "tabbable": null, + "tooltip": null, + "value": 2.0 + } + }, + "f59ce883f6544890a566cf15161df7fa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4e3a71661c5d42f492b85d3c61a57f4d", + "placeholder": "​", + "style": "IPY_MODEL_079476ba1baa4046b9905dec5cd5a503", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 56.10it/s]" + } + }, + "f59da39977ce48ae933dc5123464e440": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4669c60140c6401caabc2b4edcdbab3f", + "placeholder": "​", + "style": "IPY_MODEL_82ee4d3b5732490fb6e1e12052a9f929", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 362.16it/s]" + } + }, + "f5a4b572fccc4311be102b306c6a183e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f5ae33f3ab7c46b2897446bd2b40f3e5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f5aee04f5d574c799f3e6f70d21c211e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f2858694df454067bdbe152ca8ef85ef", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_2d15a12ccdf04e2bafae8b0070552a6c", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f5bc32fb9e354f43a4ee697b388ef262": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6cf8434645124eab86e79bbb7c73947a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_0793ba3ec9474a2ab18e7080249a3d4b", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f5c7646fdcdf49069bcb0dd9a71f706d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f2110a40eeec443988a6b75be4b2dc12", + "IPY_MODEL_377e77fb988e4c039d7b814ed7b9c596", + "IPY_MODEL_52d18dd0b4234226b5ec86c0b43107aa" + ], + "layout": "IPY_MODEL_91c62b5fec004931a133bdd5d63b813f", + "tabbable": null, + "tooltip": null + } + }, + "f5cc1c30c70649c6b372e687ad908d56": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8255c81986bb47d58507fb0467382c6a", + "IPY_MODEL_38cadf844de140138c6a5c037e615f91", + "IPY_MODEL_3b3d44ed44264640bccf51a10e63540e" + ], + "layout": "IPY_MODEL_c7742c5b73c24958a4ddf196a0f1cb2e", + "tabbable": null, + "tooltip": null + } + }, + "f5cdf7ab4ab045659440c3e8d6e0919a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f5d88208fe1f40d79db43eeb3703df18": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ec52d56a45f7468f9fd080d871b03a11", + "IPY_MODEL_a3bfe28b07f84600b01c9cc3c787a534", + "IPY_MODEL_910781b4ceef4dcaa58a96ab704856a3" + ], + "layout": "IPY_MODEL_ebcbb003b7f54431be6af05cb0bde96f", + "tabbable": null, + "tooltip": null + } + }, + "f5dbdb66da854c78abf3011731cd26b0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f5e79b3ef811404aa6697b14eb6c67be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f5f469b4c14a4a6687acd450b5c0ad69": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c662735ca7f64e2692cf851f83288480", + "IPY_MODEL_5419028a47a0450c9ae246b000e3b5da", + "IPY_MODEL_a643ba42d0a642d4935b7b0db7afc6cf" + ], + "layout": "IPY_MODEL_af9ec4c0dac04a0b860da938ee1b9274", + "tabbable": null, + "tooltip": null + } + }, + "f62b445a7ec44427a159d932fe20a9d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f64bd9a66cea4762a0c2e8ecddf864ab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f655157e932241f09f13f902772e42d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1b6729dded3e4b88bf2e88ed55c27ec5", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b9af017fdc044a2a86417b9656913f1b", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "f65d19882445413da8f20ad21f64a440": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8f9cf2bac3e047c7889c541210d943e5", + "placeholder": "​", + "style": "IPY_MODEL_d8a94fb9c0564bca92dc780238ca69c8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.74it/s]" + } + }, + "f65eaa5bf0a44aa980a6ece9e59522b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f66e7ade592d4d76829b1108679e7408": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b93e38e74b7c4a4b8cbc1917418deda7", + "placeholder": "​", + "style": "IPY_MODEL_7a239e6768cc4647a273d9fcdb82c402", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.93it/s]" + } + }, + "f6878bbf1f974107a23c81b7f8ed88bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f68b322c67c040bd8df2c55b8598ee5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f6a01f69752a456787ae305a04db8b12": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f6ac6433311541c188942048bc81b9f2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_775a23cdfaaa41f1ba3828dbc192cb83", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_42aac088b58c4f6fa8c0a7bb8ae0e61f", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f6c0da7644f844bb85e5b7386e0bf5a2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f6e9f5bc8c9a4e53a8a8618271153e87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_287df25e7f224ea8adec0c9ed16ae8b9", + "placeholder": "​", + "style": "IPY_MODEL_254020abc84743f189ff7f2130fb954d", + "tabbable": null, + "tooltip": null, + "value": " 4/4 [00:00<00:00, 488.99it/s]" + } + }, + "f6ef0bb145f24da7af6aa937b69bc95c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f7018236a3f24471a025c492c7f912ca": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f70b56504a1a45e3b9555cc9a1177b5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_41d34007389448f98b965f429e956e9c", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_36fdb9215c354348a899f05ef59373cc", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f70bc7df5fd04b409688441c1fb5bf7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f70dde5348c348bb9165b9a3f59e949a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f7202f6ee2e74b1dbe84052211d1deb0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f72757c47d42496bbe5745deb55a6d8d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b43f217d6d624c73b1b0d689dfacd7db", + "placeholder": "​", + "style": "IPY_MODEL_077cd01442064e34966f2e4970d986ee", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f73a1d8aba44465bb0189a15f9c0c297": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f73cf5097faa44188f0d101a072d02eb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f75a6024007d4e76a392fd3d20fadd6a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f75f44b7641443d8b35f3f82341c4e54": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55d18983f1134c7e9f123573f0b24f27", + "placeholder": "​", + "style": "IPY_MODEL_7e6bed22d17248e595c74cf54762310c", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 119.38it/s]" + } + }, + "f765c9ead24047628cdcc221ce773d66": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f7665e6f117844feb8192f4f7bce42e8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_94bd0142031d4c3394552d65d72e37be", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_b7fb54f2dc164be081c6b4ecca9ce2bb", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f77aa2bd32bf46e69524be3adca09965": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ca12bf88e35c42f39aa3cbdda0823234", + "placeholder": "​", + "style": "IPY_MODEL_fd6d83dc38ba44c09775b393b4181f34", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 871.88it/s]" + } + }, + "f78dadb82c5845059dcd76911302615e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f78df82c1e374eecb528481de1de59f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b0806cc08bdd4faab3fb33f30910bb9f", + "placeholder": "​", + "style": "IPY_MODEL_f926901d98e04eff83b1d34007c0f843", + "tabbable": null, + "tooltip": null, + "value": "Epoch 19: 100%" + } + }, + "f78e18529267445584d191dee796d945": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f78f3421fd10462fba8a83230d32e8e2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d67849e71d8e495bba127e49cdd1b88b", + "placeholder": "​", + "style": "IPY_MODEL_a6a6db1e4d2e456e81f6f171c5346a34", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 947.58it/s]" + } + }, + "f79aa43f386c40c483d63f880085c74d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5d078fa3b59b417381d8b0f9e60ba67b", + "IPY_MODEL_bcf48dcb1e0a4ffead20bd27e0b73fce", + "IPY_MODEL_1fee168ab9364b22a81dd9c7bc5f7054" + ], + "layout": "IPY_MODEL_baea31b1cd854800905a4d8a71d1649d", + "tabbable": null, + "tooltip": null + } + }, + "f79b93467f1542aca6e8087f76174f01": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2c1d3996213e47cbbb39450c7352a60c", + "placeholder": "​", + "style": "IPY_MODEL_caabac481ab94afead2169cb88749caf", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 525.73it/s]" + } + }, + "f7a23e0b04fb48d8beb040fe5ea593da": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_4ee1709f5efc4fbda8588d49a33a5f82", + "placeholder": "​", + "style": "IPY_MODEL_68aee2b1e1be4c26932147638835d922", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 369.71it/s]" + } + }, + "f7b0e36dd4d74dbeb15e626fe027a3e0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f7b809f0cdea4960bee36890160149bc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f7bb11140f0d49919cf5e0514becde46": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_404689901e2b459a95221d3499fdaa98", + "placeholder": "​", + "style": "IPY_MODEL_9e5598bd57f1454d829b5d350c2a5ab3", + "tabbable": null, + "tooltip": null, + "value": "Testing DataLoader 0: 100%" + } + }, + "f7bcf01fa37b4043a18a15b6b6c75e6c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bb90319b1c9b410a9782656f06ed9f61", + "placeholder": "​", + "style": "IPY_MODEL_67241de9466848aba6b90a9fa73c3913", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 375.80it/s]" + } + }, + "f7c2cfc0556b4172818b1385ebe5e148": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f7c3341d5d164a979dcb7ebd20cea39f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f7d35d64288c4301822a5386f9d8c8f1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d1efd86a163347cc9b900ed51e2b94fc", + "placeholder": "​", + "style": "IPY_MODEL_00e7dcd1790e43299925a609dd77bcca", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f7d3ba847da04916bfb7c8505e724a47": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9fd2a98ebe8c40e5b260a1c7e0a30284", + "placeholder": "​", + "style": "IPY_MODEL_3237a54a7e504667afaa9a47d4c6d8f0", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 949.37it/s]" + } + }, + "f7dd3df78fd94372ac4e579e55f9bdbf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f7df61420272468fb034b04a2d1bb851": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a454ddc03d664fedbfda55f1e0e0c5d3", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_054992b359394488beecfea585705755", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f7ff943b931945a39f061a42afe008e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f80189767e0841618d2a2a7b567279a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5cdc2f10b25e4a9b82ba9ded2051820a", + "placeholder": "​", + "style": "IPY_MODEL_22a0e3dd9fdc4906be26985c96abe6ee", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f82173dbcf1e4f29a29e3b2201175e41": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f830b91b63f24ab3be85466aa1fe5427": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_3bf3b3a6751d4353b1e662e893e4f7f5", + "IPY_MODEL_adc71f58c0b945fd8d91614ec6a06e46", + "IPY_MODEL_f7a23e0b04fb48d8beb040fe5ea593da" + ], + "layout": "IPY_MODEL_f2711428c4bf44e8a0115e605f6856f6", + "tabbable": null, + "tooltip": null + } + }, + "f8366b25a8d04cbe8a1c6dadca68e71d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f856d56a70524d94850d96fc80dcbaa9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f86028fd532046d291c3bfd8ebe3f118": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e8ac4b45d1dd418984e29863507e02c3", + "placeholder": "​", + "style": "IPY_MODEL_0997394806dc4ecb81422bd4a056944f", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f8682e01336041a5a3ed3e27835db672": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f86e949da4a04ac197d08992bcdce089": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f86f209cb32046c6acdf8313322922ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fddefb762a0d43c09d53de830af7ff67", + "placeholder": "​", + "style": "IPY_MODEL_61441f12aefa48479fbc2fdb81657e7b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f870471946b04a5aab900cb5c89d628a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f873fd189c2c47b7a75865722e91a3c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_a6b0a1f7896c4e25971e01d765945b3d", + "placeholder": "​", + "style": "IPY_MODEL_0921535b20e14430a3052658df5f1d66", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "f87d7d4d3a79415cb5b1f7e68e8b2011": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f89f565d1e07430d97c568d3185a3fcf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_f873fd189c2c47b7a75865722e91a3c0", + "IPY_MODEL_9abd459711d5445a9634d5d52c0cb1bf", + "IPY_MODEL_c02e1681b1a247a29b248f8e8c7c141a" + ], + "layout": "IPY_MODEL_f8cf2737415e4317bdad5265d0e7dfc0", + "tabbable": null, + "tooltip": null + } + }, + "f8a30d4575bf4a14a0c2f1bb08678492": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f8bdc219aea843e68c3e8a79e67645ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f8c879bc50ca4b42b3701f4a2157ca29": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f8cde3f34525496c88961f1631a266e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_83ff097dc53d49579383d593b65d41c2", + "placeholder": "​", + "style": "IPY_MODEL_b21c2a0884654f7ab3011ee7bf1768b8", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 363.30it/s]" + } + }, + "f8cf2737415e4317bdad5265d0e7dfc0": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "f8fc034bd9754457acf0747a77f476e6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f8fe37b7c499432293a3eb05fd41c3e5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_70aeb801b5f146b8bd95080744140da9", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_137a4927bced465c842faec9726ef278", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "f90266a105ec4dde89c0f8031ec0be5e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f907d44ba7844c778013fa2e5015e9db": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f90d897ade8844478470346b1ff87439": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f9113fd6868f41dda426652df08ccdda": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f9121ca10cff4f0f80ffd517c0df531c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f926901d98e04eff83b1d34007c0f843": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f9334ab6c4064f9f9b7a18861b8fa554": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f936c846dbb2468b8f1b2abad3d66475": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1009fede830f4c60a606f5ddf95ee118", + "placeholder": "​", + "style": "IPY_MODEL_4389072887ba4db29dc79225b92bf0df", + "tabbable": null, + "tooltip": null, + "value": " 7/7 [00:00<00:00, 75.64it/s]" + } + }, + "f949e67937ac4fb7ae820149597d4c6b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f9506453a7a94a90819582425176d442": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f965a2b4c07b4601bad8ed66a3761b23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f9777c984f394d01a51898688b9dcb9e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ee85ecdaeff3480a831c22b3cb51b28f", + "placeholder": "​", + "style": "IPY_MODEL_3d592f5f10e240df90e1de1560ef0424", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 347.20it/s]" + } + }, + "f99d55da5927462ab61f86aa3ed8807b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f9a17ff551d54d929e03a85096410fc5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_9a40580553b6450ead41880bc68aa13a", + "placeholder": "​", + "style": "IPY_MODEL_5b9ce47ffcc34c96a4c7773549e1b6e6", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 538.58it/s]" + } + }, + "f9b136d01d704dad9723515cc2308c9f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "f9bb7d06ac59443c854523b580ca2e4b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ccb88799edfd4eb1bfbabbddc56cc0cc", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_682bb80733574b328c40c5c5425fd810", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "f9e56dd1bb6040e68c8abe4da9157f7f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_805803763e8a404aa88927ac08dadf5c", + "placeholder": "​", + "style": "IPY_MODEL_37d8fb547f334395b3c1fdb7bb49f944", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 616.25it/s]" + } + }, + "f9f668534d614174ad07a89c0ad4becd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "f9fcb525eba349298dd293b1b6d4c93f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cfac3b55bd1e4ad9a4be6997dc6efad0", + "placeholder": "​", + "style": "IPY_MODEL_1c3e6960b5c54046b6be867f8ebc6f41", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "fa4b03102e6a45908a251fd7e4ee005b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fa5984c1dc8e45dfa2f5ec6b220c7064": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fa6df63e8a994199a710d6054d5c50b6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fa73c3cbc19d437bbdb3604d090cfb51": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fa8d9d0c3abd437ca729f43307801354": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fa9513961a3442d28c68612f8265a529": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "faa3edc8b2014c5fb0f75c577a09ea1b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "faacddc17928404db08ff203f029ed53": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fab2a2a694e44fcf8c652c6ee98ece8a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fade449c16e9445899274ed090126adf": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fae935c13c06461c8241e512ce174ce3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bfbe280c2012429f9ebcf7802b4baeb9", + "placeholder": "​", + "style": "IPY_MODEL_9593cb66839c4d30ab53005ecbbb72e4", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 395.81it/s]" + } + }, + "fafeeee928e145ec9bfd62f82ed2afe2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fb04884ab90a48fbbeac8a9a22994f59": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b45f7f7828e34df28d09a3a7a502cdc7", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_44968aa2e5cd421094191e4a7455f9a8", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "fb0767727cbf41738f19b49268d5499b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_73ca9166c963432d962d3bb5bd9b4739", + "placeholder": "​", + "style": "IPY_MODEL_5c818466b33b49959fcdb0e77f5295ab", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 775.00it/s]" + } + }, + "fb12be6d87f148dc94b2ff02d740bc29": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fb195f0e1be14b77a64c8fa819543567": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fb1a1a71d63f44a1a38f17711190dc8e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_74e4e89c020f4136a320954bcb636acb", + "placeholder": "​", + "style": "IPY_MODEL_b61e7836f232486582318e2b04160b11", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "fb3603a207e740248be768607e63761d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_33a1b42d32594f97bde913ebcedc8322", + "IPY_MODEL_9788b49497f24c0dbac87eeb96542f38", + "IPY_MODEL_9ae528f880024ef985bcaff3fe0a97c8" + ], + "layout": "IPY_MODEL_0b061d8284184b319db03a5f65a3bba3", + "tabbable": null, + "tooltip": null + } + }, + "fb6072d95f504abeaa5ca6b9c7eadf38": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fb6b573913964baeade22c4e5442ba62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fb6fa5a8e58545229bd8703d09d40cdd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_ed74210835654334acdb439a484eee7a", + "placeholder": "​", + "style": "IPY_MODEL_a6c6967c9f7b4beb9efc2889ec3f7dc4", + "tabbable": null, + "tooltip": null, + "value": " 2/2 [00:00<00:00, 676.34it/s]" + } + }, + "fb824271c10c4b2f8d25c533dc7e941d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fb8bd59ada3749b693a5b4b751262b74": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fb930aa3c6374f5e81f5f04294a70cdd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fbbb358286164800bceac8f47b8a8d3c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fbc47f657b714787bb14c44433ce8580": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b67e643dc21d47519e163fd9af6251e1", + "placeholder": "​", + "style": "IPY_MODEL_aa282654bee14462bb66e10cac8fca14", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "fbc65770a42e419fbe2f9d36af85f9c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fbcaf1faa29f43febdc91c34c0eec0d3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_84d803829af341f0adba84ee9b253e47", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ddcef08d3999473abf5b4a1d322510db", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "fbd1c970c58f4a35af8eefd5fffdebab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b648cb3a0440498fa203246723b99a5d", + "placeholder": "​", + "style": "IPY_MODEL_da4b262aab0140a8b8ef9448b93c6f31", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 395.65it/s]" + } + }, + "fbd27efe28844c51a9e524163aeff481": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fbdee8ee5261483b9ff04a67efe10ce9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fbfbfd83fab6488d8524eee22f122ed1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fc12212a2a444c88b79d7e30c8393ef9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fc19ef74fabf451bbf3e5e28f5c4cb13": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fc25bad722fc461b856d691ef5c61180": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fc29345be3254c08983112a7ac2940d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fc33c98416404f0f8ed50e21998714aa": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fc36dc05b887446888e46ddc707f78c0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fc4faf89acfa4718b847caa0d1943d6d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_666ab43010254f0f9d6c891ac2d82fa5", + "placeholder": "​", + "style": "IPY_MODEL_f0cb25086de34aaaa065ccc2028e50db", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 629.68it/s]" + } + }, + "fc543a8264fd4938b5dd1d653339057f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_e38a48cc4b794803aa1888565c136c26", + "placeholder": "​", + "style": "IPY_MODEL_1f58758ce8ef421e950f2ecf669c49d4", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "fc5fa153f3e84c10b611a109861e9e1d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fc6b10ac7dd345a9845b6e8c544fbb13": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6c95b685831d4057b6281304f47016d8", + "IPY_MODEL_3e002833f4a349bb95c54e94341f7b2e", + "IPY_MODEL_d0721062c31a4208a0d0343192bafe67" + ], + "layout": "IPY_MODEL_b58448824efa48e896f04068e28ccae1", + "tabbable": null, + "tooltip": null + } + }, + "fc6cfc507c5649b390189637debea498": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fc73dbd5d8af4e5f89e42d4b1c7129c5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "fc7f82c58ea941f3807e1008add75f80": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_1c7917f68a634cd4b65f22efc7615f6f", + "max": 79.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_4b8062584885431c81aba10b2a155d9a", + "tabbable": null, + "tooltip": null, + "value": 79.0 + } + }, + "fc8ebe88eddd4de193a15accb20048b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d0349ebbc786461d9b08fd455ac7bdfa", + "max": 7.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_42f4e09b842b48159759be62535ccc51", + "tabbable": null, + "tooltip": null, + "value": 7.0 + } + }, + "fc9bf179f195472dafebff545d78c18f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fcce0f5cc491495182da4af488ce28b3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_bf0ed5ebab1140ad8126aae2c8116b21", + "placeholder": "​", + "style": "IPY_MODEL_fed0da517a9446239dec446014fc3195", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "fcd227e3ddf349f7979bad1107ab4b81": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_0701a7c656b4442c8f1c6fec0fffdf73", + "placeholder": "​", + "style": "IPY_MODEL_e60faec959074fc3ab3b5fff2219ac8a", + "tabbable": null, + "tooltip": null, + "value": " 28/28 [00:00<00:00, 352.65it/s]" + } + }, + "fcda4743227446edbacb2d38ab8871ab": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fce0ff3c381941d99aec4b009772d8d7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fce9ea9d50164efba08aafae9c26a404": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_24599d0f8191476b8037ea6406342b3e", + "placeholder": "​", + "style": "IPY_MODEL_29eec9e86cc74955aa8847f04d93b273", + "tabbable": null, + "tooltip": null, + "value": " 47/47 [00:00<00:00, 656.53it/s]" + } + }, + "fcfa7799d6384d998b5b040da875c0e1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fd0644898e094ef184ced40255ace271": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5af73479f95f4680b38d95b7d81208b9", + "max": 67.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_ec98f96923a84114a56e9a5cb0d76a85", + "tabbable": null, + "tooltip": null, + "value": 67.0 + } + }, + "fd1e27f5682641a895d1dfeabb523a37": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fd1f92c465034de89d026bf16f3fcf1e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fd3ed082cdb847bfaca949065e7d3270": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b4ad08d1b89744cf95f4697a2779ce2b", + "placeholder": "​", + "style": "IPY_MODEL_7962dbb2a9664c30a66c0ab5a035c072", + "tabbable": null, + "tooltip": null, + "value": " 3/3 [00:00<00:00, 986.51it/s]" + } + }, + "fd440c2036e04eac9e628fdef542cf11": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fd444c98f6e74543803b4bbec3706c9d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8683f044e7f64296825da417f37b54f7", + "IPY_MODEL_5aa11eade5524f98b222c50c70346d1e", + "IPY_MODEL_6f2abf1eab76481e8a4377992a9f5e4f" + ], + "layout": "IPY_MODEL_c9b735eaf13749e18b1701a758b78672", + "tabbable": null, + "tooltip": null + } + }, + "fd47f7832a3d4793b285265e5f2c6473": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fd4821fafe3a415e981521bb486cbcf4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fd4a4f6be2084d2dabad62591601d0ef": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4ce1df1c4ffa4f5da1c1299e674e528e", + "IPY_MODEL_1d1f6f3304b947118a833d58c18d0001", + "IPY_MODEL_a4523f2ba08d4856bd3378afe29c8da0" + ], + "layout": "IPY_MODEL_eae29ac08a614771b8fe59203e3e3dd0", + "tabbable": null, + "tooltip": null + } + }, + "fd5a1aa67500433ba58f05045eaf8248": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fd6d83dc38ba44c09775b393b4181f34": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fd89a456c9df4b23977e4e712399805a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fd8c8c06f0764d0b9adf52e76649b52a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fd8fac6f3d0d4b5f8cff4aa0909c9127": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fd9097085605410ab8fdeb81eb2f4bab": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "fdb0fb17ef914296ad4ac80813e5eb4c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fdb5d614f1174348a88b7a670f21510a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fdd02bf66b08471a8ee5bf349b4022ac": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_250a6c86d3904bb5979761459d840dca", + "max": 3.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_adaa991c81694a6c994569986d926b28", + "tabbable": null, + "tooltip": null, + "value": 3.0 + } + }, + "fdd971a88d7242599885ae0e8377abe4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5794c98512364bb5b59aed5552d02e2d", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_d7a75ebf2601438cbe782d91a4e96d74", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "fddefb762a0d43c09d53de830af7ff67": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe07eed9c63e4ad4a5ff46976870b27d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fe1a0d0664ca4fd5bf5cbf3d16d930cf": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a03e1ccb14a54e49a7c568101326182b", + "IPY_MODEL_0749fd473fa641f180928e77bee2db50", + "IPY_MODEL_7aa421102bc64389ac118a02c1c669c4" + ], + "layout": "IPY_MODEL_1aa0e7c3c57040c895da35e9a5ce797a", + "tabbable": null, + "tooltip": null + } + }, + "fe1b8090d59441e5ba6ccd4932629df8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe1f482f4b1b4f47a56a4e97439842b9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_029c33a186b449508726b7219df14418", + "IPY_MODEL_25964477b419460ba9f2f39d7ba8436b", + "IPY_MODEL_35c3d215472443dda86baf932315c131" + ], + "layout": "IPY_MODEL_ce4f3c31a55d4afdaabe1ed693b07bd7", + "tabbable": null, + "tooltip": null + } + }, + "fe48aeb78a094142911fbead42536b3e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe4ad23d277b45bd9ac5e6b01e8a755a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6da63af3c9794ddb90f8e4a533a915cb", + "IPY_MODEL_a42245640a1e4357b832779fe90f0dbf", + "IPY_MODEL_6950bfefd4c045dda51367d220b66e86" + ], + "layout": "IPY_MODEL_a34a5f8890444fa0829e7d3947eddebd", + "tabbable": null, + "tooltip": null + } + }, + "fe500b487b674745a5db6fbcc42048b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_49a0f179075249baae68507cb190254a", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_6458be5843ed4945af2aea6e99a218d7", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "fe5b548690b942ccb066a358e84a097b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe5e1fbf55f24dfd995dda102b48815f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_a95766d79c6347d380f7d643d1217eeb", + "IPY_MODEL_dce72f7ba3074b92bb1b377d8a088cec", + "IPY_MODEL_6d0a18c9b3c347f78a768b530cc9679d" + ], + "layout": "IPY_MODEL_21fddbeebc2044edbfee0f3b3cfa8f95", + "tabbable": null, + "tooltip": null + } + }, + "fe73038d82e74999b9cfd622a6c9de0c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe78c274142d4dee9b4ad72400a9cb20": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fe7b7f43d083403ba8251e70a408837b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fe8c838f4b57490890f5d853ab66d3aa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_3b9226f150c344cabcf148c99bc1733e", + "placeholder": "​", + "style": "IPY_MODEL_ad86e3d3eb5c4de4b2ac81711ee44773", + "tabbable": null, + "tooltip": null, + "value": " 79/79 [00:00<00:00, 210.42it/s]" + } + }, + "fe8c89d7a99f424c9a4e92150dceaf77": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fe940861228f40d8b5ca044d95986502": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "feaf0e9582ee4f8ca0ec73e96d09ef2e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "feb2667cd550499ab2d354132d9f0aa6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fec892a128da41f79019be2edeb62d84": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_b000658f0bd14248ae5a2686701a2efa", + "placeholder": "​", + "style": "IPY_MODEL_bf5b7de1862c4f879e1136d1f128d2b5", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "feccfd4b4d3b4bc8835c5e0e332f18ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c814b9aca13043ddbaa34067c87e6935", + "IPY_MODEL_c7839eb073664b6ba98ff1c4d1a41869", + "IPY_MODEL_15dae8e026f34c5481f7224e2ef64df5" + ], + "layout": "IPY_MODEL_cf760521f4214cd1aee2feac682c48ec", + "tabbable": null, + "tooltip": null + } + }, + "fed0da517a9446239dec446014fc3195": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fed5c7a6d1944e1482a8088c0ee2c0f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "fee6bbcd944748d2ab66d5afa61576af": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "feef8645a1134646b9ecde5310876ae1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2c2655e97a924109b0dde959d106c8e9", + "IPY_MODEL_011c674e027b41de9c60cf891bf95283", + "IPY_MODEL_bb7c0fad56a74122bce557f097afd4a6" + ], + "layout": "IPY_MODEL_79c2a527d9a64787af9f668b2f330111", + "tabbable": null, + "tooltip": null + } + }, + "fef9d04d4c804603a58c6b99953fe15b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8147697416044868ba1d4a6b90f20251", + "IPY_MODEL_dbc4faed0b664146a0fad8e40a315284", + "IPY_MODEL_67fd73951b7e4e33817587b8b40fd1e1" + ], + "layout": "IPY_MODEL_6c137eb5bc8b488681a61feeb8361ac9", + "tabbable": null, + "tooltip": null + } + }, + "fefc6715443b40739d6a0b07abd5a995": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "ff0559cc5f074ac1a494f67f5baeb881": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ff2c052c71404d7dbffa0b091652c0d6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ff467da8aa6149d6b2490802c0d811cd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": "inline-flex", + "flex": null, + "flex_flow": "row wrap", + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": "hidden", + "width": "100%" + } + }, + "ff4fe62e6eb443a8a26dcd3bdba849b5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ff530b9d2e984dff8b9bb9f1eede00b0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_5202d217e30540ca935e96d741a15a84", + "IPY_MODEL_ccf3040bbacd4f62965fdc78ced12067", + "IPY_MODEL_56e2df5756bd4ecdbd1326e2c7cff60c" + ], + "layout": "IPY_MODEL_65822f6a8b14412c9f23f8d5c5b49b06", + "tabbable": null, + "tooltip": null + } + }, + "ff63d6a54beb409b9f6a321d517e7b54": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ff642e82ece94e2cbd820d0ec4a229ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_50e52b4b554a4b1c82eb77e4336aab0f", + "placeholder": "​", + "style": "IPY_MODEL_5e6a4bcde34846628b3f7b4482b4531b", + "tabbable": null, + "tooltip": null, + "value": "Validation DataLoader 0: 100%" + } + }, + "ff798c0935e24efba88833e240af0c41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ProgressView", + "bar_style": "", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8349d5bffed84bd1ba59ec29ae135017", + "max": 28.0, + "min": 0.0, + "orientation": "horizontal", + "style": "IPY_MODEL_92da9132a89949fda37e684a1c2aa3d9", + "tabbable": null, + "tooltip": null, + "value": 28.0 + } + }, + "ff845db394454f44991d796ff1f9c966": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ff98a62fa42b42e1b22ab48c85048070": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "ff9b6ca38ab74870839dfd934993d67f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ffb6a4df9d0b471e9a57dcbbdf146418": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ffc780f296934b64bc6e5eecef18d2fd": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ffe129907e8745748016f4a2bc3011fc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ffeb3995ec9b4ce0b2f3d9a683cf44c6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "2", + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + } + }, + "version_major": 2, + "version_minor": 0 + } } }, "nbformat": 4, diff --git a/Ch11-surv-lab.Rmd b/Ch11-surv-lab.Rmd index 37c258b..2e3bdd0 100644 --- a/Ch11-surv-lab.Rmd +++ b/Ch11-surv-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch11-surv-lab.ipynb b/Ch11-surv-lab.ipynb index d4c812c..afc93f4 100644 --- a/Ch11-surv-lab.ipynb +++ b/Ch11-surv-lab.ipynb @@ -34,10 +34,10 @@ "id": "d2d71add", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:04.373618Z", - "iopub.status.busy": "2023-08-21T02:30:04.373522Z", - "iopub.status.idle": "2023-08-21T02:30:05.528375Z", - "shell.execute_reply": "2023-08-21T02:30:05.528065Z" + "iopub.execute_input": "2023-08-22T07:00:50.337731Z", + "iopub.status.busy": "2023-08-22T07:00:50.337629Z", + "iopub.status.idle": "2023-08-22T07:00:51.436060Z", + "shell.execute_reply": "2023-08-22T07:00:51.435683Z" } }, "outputs": [], @@ -64,10 +64,10 @@ "id": "994efc94", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.530453Z", - "iopub.status.busy": "2023-08-21T02:30:05.530271Z", - "iopub.status.idle": "2023-08-21T02:30:05.593786Z", - "shell.execute_reply": "2023-08-21T02:30:05.593483Z" + "iopub.execute_input": "2023-08-22T07:00:51.438092Z", + "iopub.status.busy": "2023-08-22T07:00:51.437918Z", + "iopub.status.idle": "2023-08-22T07:00:51.535762Z", + "shell.execute_reply": "2023-08-22T07:00:51.535441Z" } }, "outputs": [], @@ -97,10 +97,10 @@ "id": "9d41ddea", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.595762Z", - "iopub.status.busy": "2023-08-21T02:30:05.595642Z", - "iopub.status.idle": "2023-08-21T02:30:05.602243Z", - "shell.execute_reply": "2023-08-21T02:30:05.601969Z" + "iopub.execute_input": "2023-08-22T07:00:51.537713Z", + "iopub.status.busy": "2023-08-22T07:00:51.537591Z", + "iopub.status.idle": "2023-08-22T07:00:51.544098Z", + "shell.execute_reply": "2023-08-22T07:00:51.543823Z" } }, "outputs": [ @@ -135,10 +135,10 @@ "id": "2bece782", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.603954Z", - "iopub.status.busy": "2023-08-21T02:30:05.603852Z", - "iopub.status.idle": "2023-08-21T02:30:05.607075Z", - "shell.execute_reply": "2023-08-21T02:30:05.606729Z" + "iopub.execute_input": "2023-08-22T07:00:51.545870Z", + "iopub.status.busy": "2023-08-22T07:00:51.545663Z", + "iopub.status.idle": "2023-08-22T07:00:51.548757Z", + "shell.execute_reply": "2023-08-22T07:00:51.548485Z" }, "lines_to_next_cell": 2 }, @@ -166,10 +166,10 @@ "id": "9ca465e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.608553Z", - "iopub.status.busy": "2023-08-21T02:30:05.608445Z", - "iopub.status.idle": "2023-08-21T02:30:05.611386Z", - "shell.execute_reply": "2023-08-21T02:30:05.611134Z" + "iopub.execute_input": "2023-08-22T07:00:51.550308Z", + "iopub.status.busy": "2023-08-22T07:00:51.550187Z", + "iopub.status.idle": "2023-08-22T07:00:51.553059Z", + "shell.execute_reply": "2023-08-22T07:00:51.552776Z" }, "lines_to_next_cell": 2 }, @@ -199,10 +199,10 @@ "id": "33bc4d3c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.612735Z", - "iopub.status.busy": "2023-08-21T02:30:05.612639Z", - "iopub.status.idle": "2023-08-21T02:30:05.615164Z", - "shell.execute_reply": "2023-08-21T02:30:05.614915Z" + "iopub.execute_input": "2023-08-22T07:00:51.554804Z", + "iopub.status.busy": "2023-08-22T07:00:51.554671Z", + "iopub.status.idle": "2023-08-22T07:00:51.557626Z", + "shell.execute_reply": "2023-08-22T07:00:51.557320Z" }, "lines_to_next_cell": 2 }, @@ -255,10 +255,10 @@ "id": "0b6dba70", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.616714Z", - "iopub.status.busy": "2023-08-21T02:30:05.616622Z", - "iopub.status.idle": "2023-08-21T02:30:05.728265Z", - "shell.execute_reply": "2023-08-21T02:30:05.727903Z" + "iopub.execute_input": "2023-08-22T07:00:51.559244Z", + "iopub.status.busy": "2023-08-22T07:00:51.559137Z", + "iopub.status.idle": "2023-08-22T07:00:51.665338Z", + "shell.execute_reply": "2023-08-22T07:00:51.665014Z" } }, "outputs": [ @@ -321,10 +321,10 @@ "id": "9e6f2e70", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.730200Z", - "iopub.status.busy": "2023-08-21T02:30:05.730056Z", - "iopub.status.idle": "2023-08-21T02:30:05.845830Z", - "shell.execute_reply": "2023-08-21T02:30:05.845506Z" + "iopub.execute_input": "2023-08-22T07:00:51.667255Z", + "iopub.status.busy": "2023-08-22T07:00:51.667124Z", + "iopub.status.idle": "2023-08-22T07:00:51.776746Z", + "shell.execute_reply": "2023-08-22T07:00:51.776283Z" } }, "outputs": [ @@ -366,10 +366,10 @@ "id": "c135f7aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.847658Z", - "iopub.status.busy": "2023-08-21T02:30:05.847519Z", - "iopub.status.idle": "2023-08-21T02:30:05.901295Z", - "shell.execute_reply": "2023-08-21T02:30:05.900935Z" + "iopub.execute_input": "2023-08-22T07:00:51.778810Z", + "iopub.status.busy": "2023-08-22T07:00:51.778673Z", + "iopub.status.idle": "2023-08-22T07:00:51.828367Z", + "shell.execute_reply": "2023-08-22T07:00:51.827978Z" }, "lines_to_next_cell": 2 }, @@ -479,10 +479,10 @@ "id": "5f9303dd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.903263Z", - "iopub.status.busy": "2023-08-21T02:30:05.903017Z", - "iopub.status.idle": "2023-08-21T02:30:05.930691Z", - "shell.execute_reply": "2023-08-21T02:30:05.930331Z" + "iopub.execute_input": "2023-08-22T07:00:51.830679Z", + "iopub.status.busy": "2023-08-22T07:00:51.830375Z", + "iopub.status.idle": "2023-08-22T07:00:51.855011Z", + "shell.execute_reply": "2023-08-22T07:00:51.854602Z" } }, "outputs": [ @@ -572,10 +572,10 @@ "id": "bcc8470c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.932434Z", - "iopub.status.busy": "2023-08-21T02:30:05.932285Z", - "iopub.status.idle": "2023-08-21T02:30:05.937796Z", - "shell.execute_reply": "2023-08-21T02:30:05.937549Z" + "iopub.execute_input": "2023-08-22T07:00:51.857128Z", + "iopub.status.busy": "2023-08-22T07:00:51.856972Z", + "iopub.status.idle": "2023-08-22T07:00:51.862953Z", + "shell.execute_reply": "2023-08-22T07:00:51.862477Z" } }, "outputs": [ @@ -678,10 +678,10 @@ "id": "c26a3499", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.939300Z", - "iopub.status.busy": "2023-08-21T02:30:05.939184Z", - "iopub.status.idle": "2023-08-21T02:30:05.979585Z", - "shell.execute_reply": "2023-08-21T02:30:05.979250Z" + "iopub.execute_input": "2023-08-22T07:00:51.865156Z", + "iopub.status.busy": "2023-08-22T07:00:51.864917Z", + "iopub.status.idle": "2023-08-22T07:00:51.902771Z", + "shell.execute_reply": "2023-08-22T07:00:51.902284Z" } }, "outputs": [ @@ -826,10 +826,10 @@ "id": "8d999f26", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.981441Z", - "iopub.status.busy": "2023-08-21T02:30:05.981315Z", - "iopub.status.idle": "2023-08-21T02:30:05.986317Z", - "shell.execute_reply": "2023-08-21T02:30:05.985949Z" + "iopub.execute_input": "2023-08-22T07:00:51.904821Z", + "iopub.status.busy": "2023-08-22T07:00:51.904683Z", + "iopub.status.idle": "2023-08-22T07:00:51.908678Z", + "shell.execute_reply": "2023-08-22T07:00:51.908230Z" } }, "outputs": [], @@ -859,10 +859,10 @@ "id": "a1f6b355", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.988012Z", - "iopub.status.busy": "2023-08-21T02:30:05.987898Z", - "iopub.status.idle": "2023-08-21T02:30:05.993889Z", - "shell.execute_reply": "2023-08-21T02:30:05.993534Z" + "iopub.execute_input": "2023-08-22T07:00:51.910559Z", + "iopub.status.busy": "2023-08-22T07:00:51.910451Z", + "iopub.status.idle": "2023-08-22T07:00:51.916316Z", + "shell.execute_reply": "2023-08-22T07:00:51.915990Z" } }, "outputs": [ @@ -987,10 +987,10 @@ "id": "a1a9d5b3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:05.995682Z", - "iopub.status.busy": "2023-08-21T02:30:05.995549Z", - "iopub.status.idle": "2023-08-21T02:30:06.005479Z", - "shell.execute_reply": "2023-08-21T02:30:06.005089Z" + "iopub.execute_input": "2023-08-22T07:00:51.918281Z", + "iopub.status.busy": "2023-08-22T07:00:51.918144Z", + "iopub.status.idle": "2023-08-22T07:00:51.927845Z", + "shell.execute_reply": "2023-08-22T07:00:51.927490Z" } }, "outputs": [ @@ -1129,10 +1129,10 @@ "id": "1a18b56a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.007172Z", - "iopub.status.busy": "2023-08-21T02:30:06.007049Z", - "iopub.status.idle": "2023-08-21T02:30:06.014185Z", - "shell.execute_reply": "2023-08-21T02:30:06.013870Z" + "iopub.execute_input": "2023-08-22T07:00:51.929658Z", + "iopub.status.busy": "2023-08-22T07:00:51.929522Z", + "iopub.status.idle": "2023-08-22T07:00:51.936112Z", + "shell.execute_reply": "2023-08-22T07:00:51.935793Z" }, "lines_to_next_cell": 0 }, @@ -1290,10 +1290,10 @@ "id": "ff3de29c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.015778Z", - "iopub.status.busy": "2023-08-21T02:30:06.015664Z", - "iopub.status.idle": "2023-08-21T02:30:06.124035Z", - "shell.execute_reply": "2023-08-21T02:30:06.123732Z" + "iopub.execute_input": "2023-08-22T07:00:51.937659Z", + "iopub.status.busy": "2023-08-22T07:00:51.937539Z", + "iopub.status.idle": "2023-08-22T07:00:52.033442Z", + "shell.execute_reply": "2023-08-22T07:00:52.032997Z" }, "lines_to_next_cell": 2 }, @@ -1333,10 +1333,10 @@ "id": "cd9060c1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.125714Z", - "iopub.status.busy": "2023-08-21T02:30:06.125592Z", - "iopub.status.idle": "2023-08-21T02:30:06.243701Z", - "shell.execute_reply": "2023-08-21T02:30:06.243300Z" + "iopub.execute_input": "2023-08-22T07:00:52.035515Z", + "iopub.status.busy": "2023-08-22T07:00:52.035365Z", + "iopub.status.idle": "2023-08-22T07:00:52.186180Z", + "shell.execute_reply": "2023-08-22T07:00:52.185871Z" } }, "outputs": [ @@ -1378,10 +1378,10 @@ "id": "6af7106e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.245493Z", - "iopub.status.busy": "2023-08-21T02:30:06.245357Z", - "iopub.status.idle": "2023-08-21T02:30:06.281521Z", - "shell.execute_reply": "2023-08-21T02:30:06.281138Z" + "iopub.execute_input": "2023-08-22T07:00:52.188568Z", + "iopub.status.busy": "2023-08-22T07:00:52.188400Z", + "iopub.status.idle": "2023-08-22T07:00:52.221771Z", + "shell.execute_reply": "2023-08-22T07:00:52.221413Z" }, "lines_to_next_cell": 2 }, @@ -1467,10 +1467,10 @@ "id": "b6ebefa7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.283282Z", - "iopub.status.busy": "2023-08-21T02:30:06.283123Z", - "iopub.status.idle": "2023-08-21T02:30:06.327003Z", - "shell.execute_reply": "2023-08-21T02:30:06.326646Z" + "iopub.execute_input": "2023-08-22T07:00:52.223735Z", + "iopub.status.busy": "2023-08-22T07:00:52.223584Z", + "iopub.status.idle": "2023-08-22T07:00:52.263558Z", + "shell.execute_reply": "2023-08-22T07:00:52.263236Z" } }, "outputs": [ @@ -1611,10 +1611,10 @@ "id": "098f42ea", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.329058Z", - "iopub.status.busy": "2023-08-21T02:30:06.328927Z", - "iopub.status.idle": "2023-08-21T02:30:06.332782Z", - "shell.execute_reply": "2023-08-21T02:30:06.332425Z" + "iopub.execute_input": "2023-08-22T07:00:52.265430Z", + "iopub.status.busy": "2023-08-22T07:00:52.265309Z", + "iopub.status.idle": "2023-08-22T07:00:52.269361Z", + "shell.execute_reply": "2023-08-22T07:00:52.268968Z" } }, "outputs": [], @@ -1649,10 +1649,10 @@ "id": "26d5d0d0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.334692Z", - "iopub.status.busy": "2023-08-21T02:30:06.334589Z", - "iopub.status.idle": "2023-08-21T02:30:06.344047Z", - "shell.execute_reply": "2023-08-21T02:30:06.343708Z" + "iopub.execute_input": "2023-08-22T07:00:52.271325Z", + "iopub.status.busy": "2023-08-22T07:00:52.271227Z", + "iopub.status.idle": "2023-08-22T07:00:52.280726Z", + "shell.execute_reply": "2023-08-22T07:00:52.280283Z" } }, "outputs": [], @@ -1681,10 +1681,10 @@ "id": "77500663", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.345660Z", - "iopub.status.busy": "2023-08-21T02:30:06.345575Z", - "iopub.status.idle": "2023-08-21T02:30:06.350086Z", - "shell.execute_reply": "2023-08-21T02:30:06.349797Z" + "iopub.execute_input": "2023-08-22T07:00:52.282793Z", + "iopub.status.busy": "2023-08-22T07:00:52.282661Z", + "iopub.status.idle": "2023-08-22T07:00:52.287078Z", + "shell.execute_reply": "2023-08-22T07:00:52.286749Z" } }, "outputs": [ @@ -1793,10 +1793,10 @@ "id": "74324a56", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.351738Z", - "iopub.status.busy": "2023-08-21T02:30:06.351549Z", - "iopub.status.idle": "2023-08-21T02:30:06.444268Z", - "shell.execute_reply": "2023-08-21T02:30:06.441484Z" + "iopub.execute_input": "2023-08-22T07:00:52.289254Z", + "iopub.status.busy": "2023-08-22T07:00:52.289116Z", + "iopub.status.idle": "2023-08-22T07:00:52.327077Z", + "shell.execute_reply": "2023-08-22T07:00:52.313280Z" } }, "outputs": [], @@ -1840,10 +1840,10 @@ "id": "d4be10c2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.449822Z", - "iopub.status.busy": "2023-08-21T02:30:06.449515Z", - "iopub.status.idle": "2023-08-21T02:30:06.458388Z", - "shell.execute_reply": "2023-08-21T02:30:06.457673Z" + "iopub.execute_input": "2023-08-22T07:00:52.360673Z", + "iopub.status.busy": "2023-08-22T07:00:52.360466Z", + "iopub.status.idle": "2023-08-22T07:00:52.386485Z", + "shell.execute_reply": "2023-08-22T07:00:52.383597Z" }, "lines_to_next_cell": 0 }, @@ -1871,10 +1871,10 @@ "id": "c98d396f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.461931Z", - "iopub.status.busy": "2023-08-21T02:30:06.461787Z", - "iopub.status.idle": "2023-08-21T02:30:06.624349Z", - "shell.execute_reply": "2023-08-21T02:30:06.624026Z" + "iopub.execute_input": "2023-08-22T07:00:52.411166Z", + "iopub.status.busy": "2023-08-22T07:00:52.410817Z", + "iopub.status.idle": "2023-08-22T07:00:52.535664Z", + "shell.execute_reply": "2023-08-22T07:00:52.534128Z" } }, "outputs": [], @@ -1900,10 +1900,10 @@ "id": "caf627bc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.626165Z", - "iopub.status.busy": "2023-08-21T02:30:06.626054Z", - "iopub.status.idle": "2023-08-21T02:30:06.630808Z", - "shell.execute_reply": "2023-08-21T02:30:06.630542Z" + "iopub.execute_input": "2023-08-22T07:00:52.538055Z", + "iopub.status.busy": "2023-08-22T07:00:52.537880Z", + "iopub.status.idle": "2023-08-22T07:00:52.547315Z", + "shell.execute_reply": "2023-08-22T07:00:52.546097Z" }, "lines_to_next_cell": 2 }, @@ -2008,10 +2008,10 @@ "id": "e63242f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.632357Z", - "iopub.status.busy": "2023-08-21T02:30:06.632261Z", - "iopub.status.idle": "2023-08-21T02:30:06.634630Z", - "shell.execute_reply": "2023-08-21T02:30:06.634305Z" + "iopub.execute_input": "2023-08-22T07:00:52.553567Z", + "iopub.status.busy": "2023-08-22T07:00:52.553399Z", + "iopub.status.idle": "2023-08-22T07:00:52.556617Z", + "shell.execute_reply": "2023-08-22T07:00:52.556076Z" } }, "outputs": [ @@ -2044,10 +2044,10 @@ "id": "338db71d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.636188Z", - "iopub.status.busy": "2023-08-21T02:30:06.636081Z", - "iopub.status.idle": "2023-08-21T02:30:06.791856Z", - "shell.execute_reply": "2023-08-21T02:30:06.791521Z" + "iopub.execute_input": "2023-08-22T07:00:52.558893Z", + "iopub.status.busy": "2023-08-22T07:00:52.558778Z", + "iopub.status.idle": "2023-08-22T07:00:52.706054Z", + "shell.execute_reply": "2023-08-22T07:00:52.705654Z" } }, "outputs": [ @@ -2096,10 +2096,10 @@ "id": "c1db6e15", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.793629Z", - "iopub.status.busy": "2023-08-21T02:30:06.793538Z", - "iopub.status.idle": "2023-08-21T02:30:06.992155Z", - "shell.execute_reply": "2023-08-21T02:30:06.991803Z" + "iopub.execute_input": "2023-08-22T07:00:52.707873Z", + "iopub.status.busy": "2023-08-22T07:00:52.707772Z", + "iopub.status.idle": "2023-08-22T07:00:52.850431Z", + "shell.execute_reply": "2023-08-22T07:00:52.849948Z" } }, "outputs": [ @@ -2152,10 +2152,10 @@ "id": "02ea4212", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:06.993929Z", - "iopub.status.busy": "2023-08-21T02:30:06.993819Z", - "iopub.status.idle": "2023-08-21T02:30:07.011557Z", - "shell.execute_reply": "2023-08-21T02:30:07.011276Z" + "iopub.execute_input": "2023-08-22T07:00:52.852333Z", + "iopub.status.busy": "2023-08-22T07:00:52.852184Z", + "iopub.status.idle": "2023-08-22T07:00:52.869743Z", + "shell.execute_reply": "2023-08-22T07:00:52.869438Z" }, "lines_to_next_cell": 2 }, @@ -2259,10 +2259,10 @@ "id": "0ac610d5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:07.013331Z", - "iopub.status.busy": "2023-08-21T02:30:07.013187Z", - "iopub.status.idle": "2023-08-21T02:30:07.030401Z", - "shell.execute_reply": "2023-08-21T02:30:07.030073Z" + "iopub.execute_input": "2023-08-22T07:00:52.871905Z", + "iopub.status.busy": "2023-08-22T07:00:52.871758Z", + "iopub.status.idle": "2023-08-22T07:00:52.889214Z", + "shell.execute_reply": "2023-08-22T07:00:52.888915Z" }, "lines_to_next_cell": 2 }, @@ -2369,10 +2369,10 @@ "id": "107cedad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:07.032008Z", - "iopub.status.busy": "2023-08-21T02:30:07.031887Z", - "iopub.status.idle": "2023-08-21T02:30:07.160931Z", - "shell.execute_reply": "2023-08-21T02:30:07.160639Z" + "iopub.execute_input": "2023-08-22T07:00:52.891264Z", + "iopub.status.busy": "2023-08-22T07:00:52.891105Z", + "iopub.status.idle": "2023-08-22T07:00:52.999600Z", + "shell.execute_reply": "2023-08-22T07:00:52.999278Z" }, "lines_to_next_cell": 2 }, @@ -2474,10 +2474,10 @@ "id": "334eb331", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:07.162793Z", - "iopub.status.busy": "2023-08-21T02:30:07.162651Z", - "iopub.status.idle": "2023-08-21T02:30:07.291875Z", - "shell.execute_reply": "2023-08-21T02:30:07.291550Z" + "iopub.execute_input": "2023-08-22T07:00:53.001288Z", + "iopub.status.busy": "2023-08-22T07:00:53.001160Z", + "iopub.status.idle": "2023-08-22T07:00:53.112657Z", + "shell.execute_reply": "2023-08-22T07:00:53.112061Z" }, "lines_to_next_cell": 2 }, @@ -2582,10 +2582,10 @@ "id": "421811c5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:07.293545Z", - "iopub.status.busy": "2023-08-21T02:30:07.293433Z", - "iopub.status.idle": "2023-08-21T02:30:07.532213Z", - "shell.execute_reply": "2023-08-21T02:30:07.531293Z" + "iopub.execute_input": "2023-08-22T07:00:53.115234Z", + "iopub.status.busy": "2023-08-22T07:00:53.114902Z", + "iopub.status.idle": "2023-08-22T07:00:53.349069Z", + "shell.execute_reply": "2023-08-22T07:00:53.326280Z" }, "lines_to_next_cell": 2 }, @@ -2703,7 +2703,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -2716,7 +2716,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch12-unsup-lab.Rmd b/Ch12-unsup-lab.Rmd index 8f885f4..164607a 100644 --- a/Ch12-unsup-lab.Rmd +++ b/Ch12-unsup-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch12-unsup-lab.ipynb b/Ch12-unsup-lab.ipynb index 54b3379..d9a9a1e 100644 --- a/Ch12-unsup-lab.ipynb +++ b/Ch12-unsup-lab.ipynb @@ -22,10 +22,10 @@ "id": "6d5ba583", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:08.846762Z", - "iopub.status.busy": "2023-08-21T02:30:08.846653Z", - "iopub.status.idle": "2023-08-21T02:30:09.939364Z", - "shell.execute_reply": "2023-08-21T02:30:09.939004Z" + "iopub.execute_input": "2023-08-22T07:00:56.821728Z", + "iopub.status.busy": "2023-08-22T07:00:56.821428Z", + "iopub.status.idle": "2023-08-22T07:00:57.569366Z", + "shell.execute_reply": "2023-08-22T07:00:57.569068Z" }, "lines_to_next_cell": 0 }, @@ -55,10 +55,10 @@ "id": "64c83257", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:09.941473Z", - "iopub.status.busy": "2023-08-21T02:30:09.941296Z", - "iopub.status.idle": "2023-08-21T02:30:10.036632Z", - "shell.execute_reply": "2023-08-21T02:30:10.036163Z" + "iopub.execute_input": "2023-08-22T07:00:57.571332Z", + "iopub.status.busy": "2023-08-22T07:00:57.571181Z", + "iopub.status.idle": "2023-08-22T07:00:59.834786Z", + "shell.execute_reply": "2023-08-22T07:00:59.834273Z" } }, "outputs": [], @@ -92,10 +92,10 @@ "id": "04ec4481", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:10.038974Z", - "iopub.status.busy": "2023-08-21T02:30:10.038734Z", - "iopub.status.idle": "2023-08-21T02:30:11.214222Z", - "shell.execute_reply": "2023-08-21T02:30:11.213910Z" + "iopub.execute_input": "2023-08-22T07:00:59.837457Z", + "iopub.status.busy": "2023-08-22T07:00:59.837321Z", + "iopub.status.idle": "2023-08-22T07:01:01.128712Z", + "shell.execute_reply": "2023-08-22T07:01:01.128206Z" } }, "outputs": [ @@ -559,10 +559,10 @@ "id": "1b66036a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.216028Z", - "iopub.status.busy": "2023-08-21T02:30:11.215902Z", - "iopub.status.idle": "2023-08-21T02:30:11.218553Z", - "shell.execute_reply": "2023-08-21T02:30:11.218232Z" + "iopub.execute_input": "2023-08-22T07:01:01.131204Z", + "iopub.status.busy": "2023-08-22T07:01:01.130984Z", + "iopub.status.idle": "2023-08-22T07:01:01.135700Z", + "shell.execute_reply": "2023-08-22T07:01:01.134242Z" } }, "outputs": [ @@ -595,10 +595,10 @@ "id": "52e900fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.220090Z", - "iopub.status.busy": "2023-08-21T02:30:11.219971Z", - "iopub.status.idle": "2023-08-21T02:30:11.223332Z", - "shell.execute_reply": "2023-08-21T02:30:11.223004Z" + "iopub.execute_input": "2023-08-22T07:01:01.141963Z", + "iopub.status.busy": "2023-08-22T07:01:01.141493Z", + "iopub.status.idle": "2023-08-22T07:01:01.148106Z", + "shell.execute_reply": "2023-08-22T07:01:01.147604Z" }, "lines_to_next_cell": 2 }, @@ -638,10 +638,10 @@ "id": "68684f78", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.225020Z", - "iopub.status.busy": "2023-08-21T02:30:11.224913Z", - "iopub.status.idle": "2023-08-21T02:30:11.228160Z", - "shell.execute_reply": "2023-08-21T02:30:11.227843Z" + "iopub.execute_input": "2023-08-22T07:01:01.156074Z", + "iopub.status.busy": "2023-08-22T07:01:01.154480Z", + "iopub.status.idle": "2023-08-22T07:01:01.168063Z", + "shell.execute_reply": "2023-08-22T07:01:01.167370Z" } }, "outputs": [ @@ -692,10 +692,10 @@ "id": "d2b7caf9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.229847Z", - "iopub.status.busy": "2023-08-21T02:30:11.229717Z", - "iopub.status.idle": "2023-08-21T02:30:11.233108Z", - "shell.execute_reply": "2023-08-21T02:30:11.232828Z" + "iopub.execute_input": "2023-08-22T07:01:01.171694Z", + "iopub.status.busy": "2023-08-22T07:01:01.171419Z", + "iopub.status.idle": "2023-08-22T07:01:01.175704Z", + "shell.execute_reply": "2023-08-22T07:01:01.174949Z" }, "lines_to_next_cell": 0 }, @@ -722,10 +722,10 @@ "id": "de8f57fa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.234711Z", - "iopub.status.busy": "2023-08-21T02:30:11.234595Z", - "iopub.status.idle": "2023-08-21T02:30:11.241074Z", - "shell.execute_reply": "2023-08-21T02:30:11.239548Z" + "iopub.execute_input": "2023-08-22T07:01:01.179112Z", + "iopub.status.busy": "2023-08-22T07:01:01.178950Z", + "iopub.status.idle": "2023-08-22T07:01:01.181409Z", + "shell.execute_reply": "2023-08-22T07:01:01.180781Z" }, "lines_to_next_cell": 0 }, @@ -751,10 +751,10 @@ "id": "26c45f1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.242595Z", - "iopub.status.busy": "2023-08-21T02:30:11.242489Z", - "iopub.status.idle": "2023-08-21T02:30:11.246323Z", - "shell.execute_reply": "2023-08-21T02:30:11.246064Z" + "iopub.execute_input": "2023-08-22T07:01:01.184888Z", + "iopub.status.busy": "2023-08-22T07:01:01.184710Z", + "iopub.status.idle": "2023-08-22T07:01:01.188530Z", + "shell.execute_reply": "2023-08-22T07:01:01.188252Z" } }, "outputs": [ @@ -792,10 +792,10 @@ "id": "3097e99d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.247882Z", - "iopub.status.busy": "2023-08-21T02:30:11.247777Z", - "iopub.status.idle": "2023-08-21T02:30:11.250076Z", - "shell.execute_reply": "2023-08-21T02:30:11.249792Z" + "iopub.execute_input": "2023-08-22T07:01:01.190309Z", + "iopub.status.busy": "2023-08-22T07:01:01.190146Z", + "iopub.status.idle": "2023-08-22T07:01:01.193028Z", + "shell.execute_reply": "2023-08-22T07:01:01.192570Z" } }, "outputs": [ @@ -829,10 +829,10 @@ "id": "c071a242", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.251690Z", - "iopub.status.busy": "2023-08-21T02:30:11.251589Z", - "iopub.status.idle": "2023-08-21T02:30:11.253710Z", - "shell.execute_reply": "2023-08-21T02:30:11.253213Z" + "iopub.execute_input": "2023-08-22T07:01:01.196049Z", + "iopub.status.busy": "2023-08-22T07:01:01.195747Z", + "iopub.status.idle": "2023-08-22T07:01:01.198277Z", + "shell.execute_reply": "2023-08-22T07:01:01.197846Z" }, "lines_to_next_cell": 0 }, @@ -858,10 +858,10 @@ "id": "c9bcab06", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.255475Z", - "iopub.status.busy": "2023-08-21T02:30:11.255331Z", - "iopub.status.idle": "2023-08-21T02:30:11.257666Z", - "shell.execute_reply": "2023-08-21T02:30:11.257404Z" + "iopub.execute_input": "2023-08-22T07:01:01.200305Z", + "iopub.status.busy": "2023-08-22T07:01:01.200177Z", + "iopub.status.idle": "2023-08-22T07:01:01.202888Z", + "shell.execute_reply": "2023-08-22T07:01:01.202483Z" } }, "outputs": [ @@ -901,10 +901,10 @@ "id": "7375ab13", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.259208Z", - "iopub.status.busy": "2023-08-21T02:30:11.259106Z", - "iopub.status.idle": "2023-08-21T02:30:11.411821Z", - "shell.execute_reply": "2023-08-21T02:30:11.411424Z" + "iopub.execute_input": "2023-08-22T07:01:01.204941Z", + "iopub.status.busy": "2023-08-22T07:01:01.204821Z", + "iopub.status.idle": "2023-08-22T07:01:01.305551Z", + "shell.execute_reply": "2023-08-22T07:01:01.304502Z" }, "lines_to_next_cell": 0 }, @@ -951,10 +951,10 @@ "id": "4c1988de", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.413868Z", - "iopub.status.busy": "2023-08-21T02:30:11.413708Z", - "iopub.status.idle": "2023-08-21T02:30:11.510731Z", - "shell.execute_reply": "2023-08-21T02:30:11.510392Z" + "iopub.execute_input": "2023-08-22T07:01:01.308684Z", + "iopub.status.busy": "2023-08-22T07:01:01.308547Z", + "iopub.status.idle": "2023-08-22T07:01:01.398261Z", + "shell.execute_reply": "2023-08-22T07:01:01.397687Z" } }, "outputs": [ @@ -998,10 +998,10 @@ "id": "965c6320", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.512534Z", - "iopub.status.busy": "2023-08-21T02:30:11.512382Z", - "iopub.status.idle": "2023-08-21T02:30:11.515359Z", - "shell.execute_reply": "2023-08-21T02:30:11.514710Z" + "iopub.execute_input": "2023-08-22T07:01:01.400814Z", + "iopub.status.busy": "2023-08-22T07:01:01.400674Z", + "iopub.status.idle": "2023-08-22T07:01:01.404022Z", + "shell.execute_reply": "2023-08-22T07:01:01.403489Z" }, "lines_to_next_cell": 2 }, @@ -1036,10 +1036,10 @@ "id": "cd5e1663", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.517105Z", - "iopub.status.busy": "2023-08-21T02:30:11.516982Z", - "iopub.status.idle": "2023-08-21T02:30:11.519375Z", - "shell.execute_reply": "2023-08-21T02:30:11.519076Z" + "iopub.execute_input": "2023-08-22T07:01:01.405922Z", + "iopub.status.busy": "2023-08-22T07:01:01.405818Z", + "iopub.status.idle": "2023-08-22T07:01:01.409000Z", + "shell.execute_reply": "2023-08-22T07:01:01.408413Z" }, "lines_to_next_cell": 0 }, @@ -1074,10 +1074,10 @@ "id": "e711d1be", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.520951Z", - "iopub.status.busy": "2023-08-21T02:30:11.520847Z", - "iopub.status.idle": "2023-08-21T02:30:11.523283Z", - "shell.execute_reply": "2023-08-21T02:30:11.523005Z" + "iopub.execute_input": "2023-08-22T07:01:01.410782Z", + "iopub.status.busy": "2023-08-22T07:01:01.410676Z", + "iopub.status.idle": "2023-08-22T07:01:01.413542Z", + "shell.execute_reply": "2023-08-22T07:01:01.413036Z" }, "lines_to_next_cell": 0 }, @@ -1115,10 +1115,10 @@ "id": "e122eb41", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.524835Z", - "iopub.status.busy": "2023-08-21T02:30:11.524733Z", - "iopub.status.idle": "2023-08-21T02:30:11.658787Z", - "shell.execute_reply": "2023-08-21T02:30:11.658413Z" + "iopub.execute_input": "2023-08-22T07:01:01.415587Z", + "iopub.status.busy": "2023-08-22T07:01:01.415405Z", + "iopub.status.idle": "2023-08-22T07:01:01.537691Z", + "shell.execute_reply": "2023-08-22T07:01:01.537297Z" }, "lines_to_next_cell": 0 }, @@ -1151,10 +1151,10 @@ "id": "bef47d90", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.661199Z", - "iopub.status.busy": "2023-08-21T02:30:11.661017Z", - "iopub.status.idle": "2023-08-21T02:30:11.782427Z", - "shell.execute_reply": "2023-08-21T02:30:11.781635Z" + "iopub.execute_input": "2023-08-22T07:01:01.540279Z", + "iopub.status.busy": "2023-08-22T07:01:01.539986Z", + "iopub.status.idle": "2023-08-22T07:01:01.632911Z", + "shell.execute_reply": "2023-08-22T07:01:01.632328Z" }, "lines_to_next_cell": 0 }, @@ -1199,10 +1199,10 @@ "id": "f3300d9e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.785513Z", - "iopub.status.busy": "2023-08-21T02:30:11.785329Z", - "iopub.status.idle": "2023-08-21T02:30:11.789028Z", - "shell.execute_reply": "2023-08-21T02:30:11.788419Z" + "iopub.execute_input": "2023-08-22T07:01:01.635302Z", + "iopub.status.busy": "2023-08-22T07:01:01.634975Z", + "iopub.status.idle": "2023-08-22T07:01:01.638324Z", + "shell.execute_reply": "2023-08-22T07:01:01.637831Z" }, "lines_to_next_cell": 0 }, @@ -1248,10 +1248,10 @@ "id": "20e6009f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.791569Z", - "iopub.status.busy": "2023-08-21T02:30:11.791444Z", - "iopub.status.idle": "2023-08-21T02:30:11.795478Z", - "shell.execute_reply": "2023-08-21T02:30:11.794972Z" + "iopub.execute_input": "2023-08-22T07:01:01.640494Z", + "iopub.status.busy": "2023-08-22T07:01:01.640389Z", + "iopub.status.idle": "2023-08-22T07:01:01.643841Z", + "shell.execute_reply": "2023-08-22T07:01:01.643438Z" }, "lines_to_next_cell": 0 }, @@ -1289,10 +1289,10 @@ "id": "7d9937cf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.797640Z", - "iopub.status.busy": "2023-08-21T02:30:11.797509Z", - "iopub.status.idle": "2023-08-21T02:30:11.800846Z", - "shell.execute_reply": "2023-08-21T02:30:11.800294Z" + "iopub.execute_input": "2023-08-22T07:01:01.646567Z", + "iopub.status.busy": "2023-08-22T07:01:01.646396Z", + "iopub.status.idle": "2023-08-22T07:01:01.649238Z", + "shell.execute_reply": "2023-08-22T07:01:01.648799Z" } }, "outputs": [ @@ -1320,10 +1320,10 @@ "id": "e58f83a3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.808398Z", - "iopub.status.busy": "2023-08-21T02:30:11.808136Z", - "iopub.status.idle": "2023-08-21T02:30:11.811679Z", - "shell.execute_reply": "2023-08-21T02:30:11.811074Z" + "iopub.execute_input": "2023-08-22T07:01:01.651066Z", + "iopub.status.busy": "2023-08-22T07:01:01.650908Z", + "iopub.status.idle": "2023-08-22T07:01:01.653787Z", + "shell.execute_reply": "2023-08-22T07:01:01.653263Z" }, "lines_to_next_cell": 0 }, @@ -1360,10 +1360,10 @@ "id": "5c4f9b34", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.813485Z", - "iopub.status.busy": "2023-08-21T02:30:11.813382Z", - "iopub.status.idle": "2023-08-21T02:30:11.816392Z", - "shell.execute_reply": "2023-08-21T02:30:11.815967Z" + "iopub.execute_input": "2023-08-22T07:01:01.656687Z", + "iopub.status.busy": "2023-08-22T07:01:01.656390Z", + "iopub.status.idle": "2023-08-22T07:01:01.659789Z", + "shell.execute_reply": "2023-08-22T07:01:01.659269Z" } }, "outputs": [ @@ -1390,10 +1390,10 @@ "id": "0ce84f1b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.818183Z", - "iopub.status.busy": "2023-08-21T02:30:11.818037Z", - "iopub.status.idle": "2023-08-21T02:30:11.820586Z", - "shell.execute_reply": "2023-08-21T02:30:11.820295Z" + "iopub.execute_input": "2023-08-22T07:01:01.661783Z", + "iopub.status.busy": "2023-08-22T07:01:01.661671Z", + "iopub.status.idle": "2023-08-22T07:01:01.664431Z", + "shell.execute_reply": "2023-08-22T07:01:01.664078Z" }, "lines_to_next_cell": 0 }, @@ -1435,10 +1435,10 @@ "id": "cd8b4bed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.822223Z", - "iopub.status.busy": "2023-08-21T02:30:11.822124Z", - "iopub.status.idle": "2023-08-21T02:30:11.824710Z", - "shell.execute_reply": "2023-08-21T02:30:11.824451Z" + "iopub.execute_input": "2023-08-22T07:01:01.666675Z", + "iopub.status.busy": "2023-08-22T07:01:01.666540Z", + "iopub.status.idle": "2023-08-22T07:01:01.669352Z", + "shell.execute_reply": "2023-08-22T07:01:01.668883Z" } }, "outputs": [], @@ -1475,10 +1475,10 @@ "id": "7f3bc8f9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.826294Z", - "iopub.status.busy": "2023-08-21T02:30:11.826188Z", - "iopub.status.idle": "2023-08-21T02:30:11.828326Z", - "shell.execute_reply": "2023-08-21T02:30:11.827946Z" + "iopub.execute_input": "2023-08-22T07:01:01.671494Z", + "iopub.status.busy": "2023-08-22T07:01:01.671325Z", + "iopub.status.idle": "2023-08-22T07:01:01.673688Z", + "shell.execute_reply": "2023-08-22T07:01:01.673299Z" }, "lines_to_next_cell": 0 }, @@ -1508,10 +1508,10 @@ "id": "771a46a7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.830112Z", - "iopub.status.busy": "2023-08-21T02:30:11.829990Z", - "iopub.status.idle": "2023-08-21T02:30:11.832019Z", - "shell.execute_reply": "2023-08-21T02:30:11.831653Z" + "iopub.execute_input": "2023-08-22T07:01:01.675631Z", + "iopub.status.busy": "2023-08-22T07:01:01.675424Z", + "iopub.status.idle": "2023-08-22T07:01:01.678059Z", + "shell.execute_reply": "2023-08-22T07:01:01.677393Z" } }, "outputs": [], @@ -1536,10 +1536,10 @@ "id": "1416f048", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.834018Z", - "iopub.status.busy": "2023-08-21T02:30:11.833888Z", - "iopub.status.idle": "2023-08-21T02:30:11.836065Z", - "shell.execute_reply": "2023-08-21T02:30:11.835740Z" + "iopub.execute_input": "2023-08-22T07:01:01.680424Z", + "iopub.status.busy": "2023-08-22T07:01:01.680179Z", + "iopub.status.idle": "2023-08-22T07:01:01.682713Z", + "shell.execute_reply": "2023-08-22T07:01:01.682431Z" }, "lines_to_next_cell": 0 }, @@ -1576,10 +1576,10 @@ "id": "9eff34aa", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.838230Z", - "iopub.status.busy": "2023-08-21T02:30:11.838081Z", - "iopub.status.idle": "2023-08-21T02:30:11.841552Z", - "shell.execute_reply": "2023-08-21T02:30:11.841240Z" + "iopub.execute_input": "2023-08-22T07:01:01.684370Z", + "iopub.status.busy": "2023-08-22T07:01:01.684237Z", + "iopub.status.idle": "2023-08-22T07:01:01.688888Z", + "shell.execute_reply": "2023-08-22T07:01:01.688576Z" } }, "outputs": [ @@ -1631,10 +1631,10 @@ "id": "7815b948", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.843245Z", - "iopub.status.busy": "2023-08-21T02:30:11.843118Z", - "iopub.status.idle": "2023-08-21T02:30:11.846592Z", - "shell.execute_reply": "2023-08-21T02:30:11.846200Z" + "iopub.execute_input": "2023-08-22T07:01:01.690940Z", + "iopub.status.busy": "2023-08-22T07:01:01.690758Z", + "iopub.status.idle": "2023-08-22T07:01:01.694473Z", + "shell.execute_reply": "2023-08-22T07:01:01.694113Z" }, "lines_to_next_cell": 2 }, @@ -1689,10 +1689,10 @@ "id": "f63cf4b8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.848430Z", - "iopub.status.busy": "2023-08-21T02:30:11.848311Z", - "iopub.status.idle": "2023-08-21T02:30:11.850755Z", - "shell.execute_reply": "2023-08-21T02:30:11.850430Z" + "iopub.execute_input": "2023-08-22T07:01:01.697098Z", + "iopub.status.busy": "2023-08-22T07:01:01.696989Z", + "iopub.status.idle": "2023-08-22T07:01:01.699944Z", + "shell.execute_reply": "2023-08-22T07:01:01.699302Z" }, "lines_to_next_cell": 0 }, @@ -1718,10 +1718,10 @@ "id": "f973c2d4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:11.852603Z", - "iopub.status.busy": "2023-08-21T02:30:11.852463Z", - "iopub.status.idle": "2023-08-21T02:30:12.419856Z", - "shell.execute_reply": "2023-08-21T02:30:12.416814Z" + "iopub.execute_input": "2023-08-22T07:01:01.701419Z", + "iopub.status.busy": "2023-08-22T07:01:01.701312Z", + "iopub.status.idle": "2023-08-22T07:01:02.037824Z", + "shell.execute_reply": "2023-08-22T07:01:02.037051Z" }, "lines_to_next_cell": 0 }, @@ -1746,10 +1746,10 @@ "id": "e980954b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.436151Z", - "iopub.status.busy": "2023-08-21T02:30:12.434738Z", - "iopub.status.idle": "2023-08-21T02:30:12.484691Z", - "shell.execute_reply": "2023-08-21T02:30:12.459324Z" + "iopub.execute_input": "2023-08-22T07:01:02.040614Z", + "iopub.status.busy": "2023-08-22T07:01:02.040437Z", + "iopub.status.idle": "2023-08-22T07:01:02.044054Z", + "shell.execute_reply": "2023-08-22T07:01:02.043563Z" }, "lines_to_next_cell": 0 }, @@ -1788,10 +1788,10 @@ "id": "a94d452c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.510741Z", - "iopub.status.busy": "2023-08-21T02:30:12.510582Z", - "iopub.status.idle": "2023-08-21T02:30:12.636062Z", - "shell.execute_reply": "2023-08-21T02:30:12.635730Z" + "iopub.execute_input": "2023-08-22T07:01:02.046357Z", + "iopub.status.busy": "2023-08-22T07:01:02.046208Z", + "iopub.status.idle": "2023-08-22T07:01:02.149266Z", + "shell.execute_reply": "2023-08-22T07:01:02.148849Z" } }, "outputs": [ @@ -1835,10 +1835,10 @@ "id": "94ff654c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.638065Z", - "iopub.status.busy": "2023-08-21T02:30:12.637921Z", - "iopub.status.idle": "2023-08-21T02:30:12.806481Z", - "shell.execute_reply": "2023-08-21T02:30:12.805717Z" + "iopub.execute_input": "2023-08-22T07:01:02.151742Z", + "iopub.status.busy": "2023-08-22T07:01:02.151594Z", + "iopub.status.idle": "2023-08-22T07:01:02.271388Z", + "shell.execute_reply": "2023-08-22T07:01:02.270932Z" }, "lines_to_next_cell": 0 }, @@ -1884,10 +1884,10 @@ "id": "b3561317", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.808756Z", - "iopub.status.busy": "2023-08-21T02:30:12.808647Z", - "iopub.status.idle": "2023-08-21T02:30:12.868305Z", - "shell.execute_reply": "2023-08-21T02:30:12.867287Z" + "iopub.execute_input": "2023-08-22T07:01:02.274358Z", + "iopub.status.busy": "2023-08-22T07:01:02.273928Z", + "iopub.status.idle": "2023-08-22T07:01:02.290763Z", + "shell.execute_reply": "2023-08-22T07:01:02.290332Z" }, "lines_to_next_cell": 0 }, @@ -1957,10 +1957,10 @@ "id": "be9e4f9c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.871403Z", - "iopub.status.busy": "2023-08-21T02:30:12.871255Z", - "iopub.status.idle": "2023-08-21T02:30:12.877754Z", - "shell.execute_reply": "2023-08-21T02:30:12.877453Z" + "iopub.execute_input": "2023-08-22T07:01:02.293285Z", + "iopub.status.busy": "2023-08-22T07:01:02.293108Z", + "iopub.status.idle": "2023-08-22T07:01:02.297337Z", + "shell.execute_reply": "2023-08-22T07:01:02.296824Z" } }, "outputs": [ @@ -2004,10 +2004,10 @@ "id": "f80d8563", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.879743Z", - "iopub.status.busy": "2023-08-21T02:30:12.879627Z", - "iopub.status.idle": "2023-08-21T02:30:12.883455Z", - "shell.execute_reply": "2023-08-21T02:30:12.883063Z" + "iopub.execute_input": "2023-08-22T07:01:02.299662Z", + "iopub.status.busy": "2023-08-22T07:01:02.299457Z", + "iopub.status.idle": "2023-08-22T07:01:02.303357Z", + "shell.execute_reply": "2023-08-22T07:01:02.302779Z" } }, "outputs": [], @@ -2037,10 +2037,10 @@ "id": "83e7ccf8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.885091Z", - "iopub.status.busy": "2023-08-21T02:30:12.884985Z", - "iopub.status.idle": "2023-08-21T02:30:12.890499Z", - "shell.execute_reply": "2023-08-21T02:30:12.890138Z" + "iopub.execute_input": "2023-08-22T07:01:02.305759Z", + "iopub.status.busy": "2023-08-22T07:01:02.305577Z", + "iopub.status.idle": "2023-08-22T07:01:02.310695Z", + "shell.execute_reply": "2023-08-22T07:01:02.310382Z" } }, "outputs": [ @@ -2097,10 +2097,10 @@ "id": "56ee8cbf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:12.892483Z", - "iopub.status.busy": "2023-08-21T02:30:12.892271Z", - "iopub.status.idle": "2023-08-21T02:30:13.132407Z", - "shell.execute_reply": "2023-08-21T02:30:13.132103Z" + "iopub.execute_input": "2023-08-22T07:01:02.312692Z", + "iopub.status.busy": "2023-08-22T07:01:02.312323Z", + "iopub.status.idle": "2023-08-22T07:01:02.538970Z", + "shell.execute_reply": "2023-08-22T07:01:02.538582Z" } }, "outputs": [ @@ -2142,10 +2142,10 @@ "id": "10f4fc97", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.134084Z", - "iopub.status.busy": "2023-08-21T02:30:13.133962Z", - "iopub.status.idle": "2023-08-21T02:30:13.363909Z", - "shell.execute_reply": "2023-08-21T02:30:13.363594Z" + "iopub.execute_input": "2023-08-22T07:01:02.541376Z", + "iopub.status.busy": "2023-08-22T07:01:02.541208Z", + "iopub.status.idle": "2023-08-22T07:01:02.758968Z", + "shell.execute_reply": "2023-08-22T07:01:02.758508Z" } }, "outputs": [ @@ -2184,10 +2184,10 @@ "id": "3aed342a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.365591Z", - "iopub.status.busy": "2023-08-21T02:30:13.365487Z", - "iopub.status.idle": "2023-08-21T02:30:13.368978Z", - "shell.execute_reply": "2023-08-21T02:30:13.368698Z" + "iopub.execute_input": "2023-08-22T07:01:02.761325Z", + "iopub.status.busy": "2023-08-22T07:01:02.761152Z", + "iopub.status.idle": "2023-08-22T07:01:02.765136Z", + "shell.execute_reply": "2023-08-22T07:01:02.764674Z" } }, "outputs": [ @@ -2226,10 +2226,10 @@ "id": "49c6db0c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.370508Z", - "iopub.status.busy": "2023-08-21T02:30:13.370414Z", - "iopub.status.idle": "2023-08-21T02:30:13.373767Z", - "shell.execute_reply": "2023-08-21T02:30:13.373373Z" + "iopub.execute_input": "2023-08-22T07:01:02.767317Z", + "iopub.status.busy": "2023-08-22T07:01:02.767155Z", + "iopub.status.idle": "2023-08-22T07:01:02.771483Z", + "shell.execute_reply": "2023-08-22T07:01:02.771020Z" } }, "outputs": [ @@ -2312,10 +2312,10 @@ "id": "0ef4b7ec", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.375598Z", - "iopub.status.busy": "2023-08-21T02:30:13.375476Z", - "iopub.status.idle": "2023-08-21T02:30:13.613632Z", - "shell.execute_reply": "2023-08-21T02:30:13.613228Z" + "iopub.execute_input": "2023-08-22T07:01:02.773805Z", + "iopub.status.busy": "2023-08-22T07:01:02.773647Z", + "iopub.status.idle": "2023-08-22T07:01:03.002349Z", + "shell.execute_reply": "2023-08-22T07:01:03.001396Z" } }, "outputs": [ @@ -2367,10 +2367,10 @@ "id": "51761ef3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.616266Z", - "iopub.status.busy": "2023-08-21T02:30:13.616114Z", - "iopub.status.idle": "2023-08-21T02:30:13.807244Z", - "shell.execute_reply": "2023-08-21T02:30:13.806904Z" + "iopub.execute_input": "2023-08-22T07:01:03.007714Z", + "iopub.status.busy": "2023-08-22T07:01:03.007387Z", + "iopub.status.idle": "2023-08-22T07:01:03.189542Z", + "shell.execute_reply": "2023-08-22T07:01:03.189234Z" }, "lines_to_next_cell": 2 }, @@ -2419,10 +2419,10 @@ "id": "3dbe7baf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.808881Z", - "iopub.status.busy": "2023-08-21T02:30:13.808757Z", - "iopub.status.idle": "2023-08-21T02:30:13.815572Z", - "shell.execute_reply": "2023-08-21T02:30:13.815234Z" + "iopub.execute_input": "2023-08-22T07:01:03.191496Z", + "iopub.status.busy": "2023-08-22T07:01:03.191325Z", + "iopub.status.idle": "2023-08-22T07:01:03.200433Z", + "shell.execute_reply": "2023-08-22T07:01:03.199967Z" } }, "outputs": [], @@ -2452,10 +2452,10 @@ "id": "8f4e9db0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.817455Z", - "iopub.status.busy": "2023-08-21T02:30:13.817327Z", - "iopub.status.idle": "2023-08-21T02:30:13.819934Z", - "shell.execute_reply": "2023-08-21T02:30:13.819588Z" + "iopub.execute_input": "2023-08-22T07:01:03.206306Z", + "iopub.status.busy": "2023-08-22T07:01:03.206039Z", + "iopub.status.idle": "2023-08-22T07:01:03.211349Z", + "shell.execute_reply": "2023-08-22T07:01:03.210526Z" }, "lines_to_next_cell": 2 }, @@ -2489,10 +2489,10 @@ "id": "6373db4d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.821622Z", - "iopub.status.busy": "2023-08-21T02:30:13.821498Z", - "iopub.status.idle": "2023-08-21T02:30:13.825550Z", - "shell.execute_reply": "2023-08-21T02:30:13.825258Z" + "iopub.execute_input": "2023-08-22T07:01:03.215280Z", + "iopub.status.busy": "2023-08-22T07:01:03.215107Z", + "iopub.status.idle": "2023-08-22T07:01:03.220745Z", + "shell.execute_reply": "2023-08-22T07:01:03.220268Z" }, "lines_to_next_cell": 2 }, @@ -2545,10 +2545,10 @@ "id": "9f185f83", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:13.827046Z", - "iopub.status.busy": "2023-08-21T02:30:13.826963Z", - "iopub.status.idle": "2023-08-21T02:30:15.128422Z", - "shell.execute_reply": "2023-08-21T02:30:15.127267Z" + "iopub.execute_input": "2023-08-22T07:01:03.224010Z", + "iopub.status.busy": "2023-08-22T07:01:03.223805Z", + "iopub.status.idle": "2023-08-22T07:01:03.756454Z", + "shell.execute_reply": "2023-08-22T07:01:03.755090Z" } }, "outputs": [], @@ -2577,10 +2577,10 @@ "id": "b044b197", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:15.132319Z", - "iopub.status.busy": "2023-08-21T02:30:15.130836Z", - "iopub.status.idle": "2023-08-21T02:30:15.450531Z", - "shell.execute_reply": "2023-08-21T02:30:15.450148Z" + "iopub.execute_input": "2023-08-22T07:01:03.760531Z", + "iopub.status.busy": "2023-08-22T07:01:03.759964Z", + "iopub.status.idle": "2023-08-22T07:01:04.106389Z", + "shell.execute_reply": "2023-08-22T07:01:04.105861Z" }, "lines_to_next_cell": 0 }, @@ -2647,10 +2647,10 @@ "id": "b2450bb2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:15.453108Z", - "iopub.status.busy": "2023-08-21T02:30:15.452934Z", - "iopub.status.idle": "2023-08-21T02:30:15.641832Z", - "shell.execute_reply": "2023-08-21T02:30:15.641441Z" + "iopub.execute_input": "2023-08-22T07:01:04.108911Z", + "iopub.status.busy": "2023-08-22T07:01:04.108756Z", + "iopub.status.idle": "2023-08-22T07:01:04.295709Z", + "shell.execute_reply": "2023-08-22T07:01:04.295142Z" }, "lines_to_next_cell": 0 }, @@ -2720,10 +2720,10 @@ "id": "f3f85512", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:15.645761Z", - "iopub.status.busy": "2023-08-21T02:30:15.645577Z", - "iopub.status.idle": "2023-08-21T02:30:15.648982Z", - "shell.execute_reply": "2023-08-21T02:30:15.648549Z" + "iopub.execute_input": "2023-08-22T07:01:04.298506Z", + "iopub.status.busy": "2023-08-22T07:01:04.298369Z", + "iopub.status.idle": "2023-08-22T07:01:04.301034Z", + "shell.execute_reply": "2023-08-22T07:01:04.300583Z" } }, "outputs": [], @@ -2758,10 +2758,10 @@ "id": "5cbeeb19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:15.651172Z", - "iopub.status.busy": "2023-08-21T02:30:15.651062Z", - "iopub.status.idle": "2023-08-21T02:30:17.138064Z", - "shell.execute_reply": "2023-08-21T02:30:17.137456Z" + "iopub.execute_input": "2023-08-22T07:01:04.303691Z", + "iopub.status.busy": "2023-08-22T07:01:04.303453Z", + "iopub.status.idle": "2023-08-22T07:01:05.507632Z", + "shell.execute_reply": "2023-08-22T07:01:05.507177Z" }, "lines_to_next_cell": 0 }, @@ -2811,10 +2811,10 @@ "id": "1eb3c92e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:17.141105Z", - "iopub.status.busy": "2023-08-21T02:30:17.140950Z", - "iopub.status.idle": "2023-08-21T02:30:17.153308Z", - "shell.execute_reply": "2023-08-21T02:30:17.152985Z" + "iopub.execute_input": "2023-08-22T07:01:05.509745Z", + "iopub.status.busy": "2023-08-22T07:01:05.509610Z", + "iopub.status.idle": "2023-08-22T07:01:05.520162Z", + "shell.execute_reply": "2023-08-22T07:01:05.519790Z" }, "lines_to_next_cell": 2 }, @@ -3005,10 +3005,10 @@ "id": "e3c2841c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:17.155262Z", - "iopub.status.busy": "2023-08-21T02:30:17.155100Z", - "iopub.status.idle": "2023-08-21T02:30:17.595981Z", - "shell.execute_reply": "2023-08-21T02:30:17.595541Z" + "iopub.execute_input": "2023-08-22T07:01:05.522420Z", + "iopub.status.busy": "2023-08-22T07:01:05.522186Z", + "iopub.status.idle": "2023-08-22T07:01:05.914218Z", + "shell.execute_reply": "2023-08-22T07:01:05.913893Z" } }, "outputs": [ @@ -3054,10 +3054,10 @@ "id": "94dfe5a0", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:17.598183Z", - "iopub.status.busy": "2023-08-21T02:30:17.598049Z", - "iopub.status.idle": "2023-08-21T02:30:46.877046Z", - "shell.execute_reply": "2023-08-21T02:30:46.874804Z" + "iopub.execute_input": "2023-08-22T07:01:05.915828Z", + "iopub.status.busy": "2023-08-22T07:01:05.915706Z", + "iopub.status.idle": "2023-08-22T07:01:06.390699Z", + "shell.execute_reply": "2023-08-22T07:01:06.390367Z" } }, "outputs": [ @@ -3179,10 +3179,10 @@ "id": "abd51940", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:46.888673Z", - "iopub.status.busy": "2023-08-21T02:30:46.888240Z", - "iopub.status.idle": "2023-08-21T02:30:47.344737Z", - "shell.execute_reply": "2023-08-21T02:30:47.344286Z" + "iopub.execute_input": "2023-08-22T07:01:06.404283Z", + "iopub.status.busy": "2023-08-22T07:01:06.404155Z", + "iopub.status.idle": "2023-08-22T07:01:06.897582Z", + "shell.execute_reply": "2023-08-22T07:01:06.897221Z" }, "lines_to_next_cell": 0 }, @@ -3392,7 +3392,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -3405,7 +3405,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, diff --git a/Ch13-multiple-lab.Rmd b/Ch13-multiple-lab.Rmd index bee30c3..59d7b73 100644 --- a/Ch13-multiple-lab.Rmd +++ b/Ch13-multiple-lab.Rmd @@ -2,7 +2,7 @@ jupyter: jupytext: cell_metadata_filter: -all - formats: ipynb,Rmd + formats: Rmd,ipynb main_language: python text_representation: extension: .Rmd diff --git a/Ch13-multiple-lab.ipynb b/Ch13-multiple-lab.ipynb index bb9684d..0e8886d 100644 --- a/Ch13-multiple-lab.ipynb +++ b/Ch13-multiple-lab.ipynb @@ -26,10 +26,10 @@ "id": "7cc4fbeb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:16.417394Z", - "iopub.status.busy": "2023-08-21T02:29:16.417287Z", - "iopub.status.idle": "2023-08-21T02:29:17.613483Z", - "shell.execute_reply": "2023-08-21T02:29:17.613156Z" + "iopub.execute_input": "2023-08-22T07:01:10.471948Z", + "iopub.status.busy": "2023-08-22T07:01:10.471668Z", + "iopub.status.idle": "2023-08-22T07:01:11.350943Z", + "shell.execute_reply": "2023-08-22T07:01:11.350643Z" } }, "outputs": [], @@ -56,10 +56,10 @@ "id": "595efc18", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.615551Z", - "iopub.status.busy": "2023-08-21T02:29:17.615375Z", - "iopub.status.idle": "2023-08-21T02:29:17.617379Z", - "shell.execute_reply": "2023-08-21T02:29:17.617087Z" + "iopub.execute_input": "2023-08-22T07:01:11.352807Z", + "iopub.status.busy": "2023-08-22T07:01:11.352663Z", + "iopub.status.idle": "2023-08-22T07:01:11.354553Z", + "shell.execute_reply": "2023-08-22T07:01:11.354339Z" }, "lines_to_next_cell": 2 }, @@ -95,10 +95,10 @@ "id": "985d1d6e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.618995Z", - "iopub.status.busy": "2023-08-21T02:29:17.618887Z", - "iopub.status.idle": "2023-08-21T02:29:17.620921Z", - "shell.execute_reply": "2023-08-21T02:29:17.620629Z" + "iopub.execute_input": "2023-08-22T07:01:11.355962Z", + "iopub.status.busy": "2023-08-22T07:01:11.355865Z", + "iopub.status.idle": "2023-08-22T07:01:11.357829Z", + "shell.execute_reply": "2023-08-22T07:01:11.357602Z" } }, "outputs": [], @@ -125,10 +125,10 @@ "id": "753d612a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.622537Z", - "iopub.status.busy": "2023-08-21T02:29:17.622429Z", - "iopub.status.idle": "2023-08-21T02:29:17.626063Z", - "shell.execute_reply": "2023-08-21T02:29:17.625801Z" + "iopub.execute_input": "2023-08-22T07:01:11.359164Z", + "iopub.status.busy": "2023-08-22T07:01:11.359072Z", + "iopub.status.idle": "2023-08-22T07:01:11.362315Z", + "shell.execute_reply": "2023-08-22T07:01:11.362065Z" } }, "outputs": [ @@ -172,10 +172,10 @@ "id": "facd6569", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.627714Z", - "iopub.status.busy": "2023-08-21T02:29:17.627617Z", - "iopub.status.idle": "2023-08-21T02:29:17.651726Z", - "shell.execute_reply": "2023-08-21T02:29:17.651448Z" + "iopub.execute_input": "2023-08-22T07:01:11.363675Z", + "iopub.status.busy": "2023-08-22T07:01:11.363598Z", + "iopub.status.idle": "2023-08-22T07:01:11.382551Z", + "shell.execute_reply": "2023-08-22T07:01:11.382313Z" }, "lines_to_next_cell": 0 }, @@ -208,10 +208,10 @@ "id": "e89ef3eb", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.653344Z", - "iopub.status.busy": "2023-08-21T02:29:17.653256Z", - "iopub.status.idle": "2023-08-21T02:29:17.662644Z", - "shell.execute_reply": "2023-08-21T02:29:17.662346Z" + "iopub.execute_input": "2023-08-22T07:01:11.384012Z", + "iopub.status.busy": "2023-08-22T07:01:11.383929Z", + "iopub.status.idle": "2023-08-22T07:01:11.390854Z", + "shell.execute_reply": "2023-08-22T07:01:11.390622Z" }, "lines_to_next_cell": 0 }, @@ -309,10 +309,10 @@ "id": "ae184aaf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.664327Z", - "iopub.status.busy": "2023-08-21T02:29:17.664213Z", - "iopub.status.idle": "2023-08-21T02:29:17.690928Z", - "shell.execute_reply": "2023-08-21T02:29:17.690657Z" + "iopub.execute_input": "2023-08-22T07:01:11.392278Z", + "iopub.status.busy": "2023-08-22T07:01:11.392193Z", + "iopub.status.idle": "2023-08-22T07:01:11.414541Z", + "shell.execute_reply": "2023-08-22T07:01:11.414284Z" }, "lines_to_next_cell": 0 }, @@ -421,10 +421,10 @@ "id": "0295fe68", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.692568Z", - "iopub.status.busy": "2023-08-21T02:29:17.692459Z", - "iopub.status.idle": "2023-08-21T02:29:17.899403Z", - "shell.execute_reply": "2023-08-21T02:29:17.899081Z" + "iopub.execute_input": "2023-08-22T07:01:11.416013Z", + "iopub.status.busy": "2023-08-22T07:01:11.415934Z", + "iopub.status.idle": "2023-08-22T07:01:11.601337Z", + "shell.execute_reply": "2023-08-22T07:01:11.601050Z" } }, "outputs": [ @@ -477,10 +477,10 @@ "id": "406e59a8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.901146Z", - "iopub.status.busy": "2023-08-21T02:29:17.901041Z", - "iopub.status.idle": "2023-08-21T02:29:17.939312Z", - "shell.execute_reply": "2023-08-21T02:29:17.939019Z" + "iopub.execute_input": "2023-08-22T07:01:11.603043Z", + "iopub.status.busy": "2023-08-22T07:01:11.602922Z", + "iopub.status.idle": "2023-08-22T07:01:11.637677Z", + "shell.execute_reply": "2023-08-22T07:01:11.637393Z" } }, "outputs": [ @@ -545,10 +545,10 @@ "id": "d4f6a247", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.941032Z", - "iopub.status.busy": "2023-08-21T02:29:17.940919Z", - "iopub.status.idle": "2023-08-21T02:29:17.943369Z", - "shell.execute_reply": "2023-08-21T02:29:17.943081Z" + "iopub.execute_input": "2023-08-22T07:01:11.639421Z", + "iopub.status.busy": "2023-08-22T07:01:11.639308Z", + "iopub.status.idle": "2023-08-22T07:01:11.641724Z", + "shell.execute_reply": "2023-08-22T07:01:11.641464Z" }, "lines_to_next_cell": 2 }, @@ -584,10 +584,10 @@ "id": "01a29d71", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.944859Z", - "iopub.status.busy": "2023-08-21T02:29:17.944760Z", - "iopub.status.idle": "2023-08-21T02:29:17.946888Z", - "shell.execute_reply": "2023-08-21T02:29:17.946639Z" + "iopub.execute_input": "2023-08-22T07:01:11.643173Z", + "iopub.status.busy": "2023-08-22T07:01:11.643074Z", + "iopub.status.idle": "2023-08-22T07:01:11.645284Z", + "shell.execute_reply": "2023-08-22T07:01:11.645035Z" } }, "outputs": [ @@ -626,10 +626,10 @@ "id": "95454eb4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.948474Z", - "iopub.status.busy": "2023-08-21T02:29:17.948372Z", - "iopub.status.idle": "2023-08-21T02:29:17.990740Z", - "shell.execute_reply": "2023-08-21T02:29:17.990464Z" + "iopub.execute_input": "2023-08-22T07:01:11.646828Z", + "iopub.status.busy": "2023-08-22T07:01:11.646723Z", + "iopub.status.idle": "2023-08-22T07:01:11.681328Z", + "shell.execute_reply": "2023-08-22T07:01:11.681006Z" }, "lines_to_next_cell": 2 }, @@ -666,10 +666,10 @@ "id": "1f1ac764", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.992261Z", - "iopub.status.busy": "2023-08-21T02:29:17.992149Z", - "iopub.status.idle": "2023-08-21T02:29:17.995141Z", - "shell.execute_reply": "2023-08-21T02:29:17.994894Z" + "iopub.execute_input": "2023-08-22T07:01:11.683039Z", + "iopub.status.busy": "2023-08-22T07:01:11.682931Z", + "iopub.status.idle": "2023-08-22T07:01:11.685981Z", + "shell.execute_reply": "2023-08-22T07:01:11.685726Z" }, "lines_to_next_cell": 2 }, @@ -710,10 +710,10 @@ "id": "298d975d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:17.996686Z", - "iopub.status.busy": "2023-08-21T02:29:17.996590Z", - "iopub.status.idle": "2023-08-21T02:29:17.999332Z", - "shell.execute_reply": "2023-08-21T02:29:17.999076Z" + "iopub.execute_input": "2023-08-22T07:01:11.687516Z", + "iopub.status.busy": "2023-08-22T07:01:11.687436Z", + "iopub.status.idle": "2023-08-22T07:01:11.690137Z", + "shell.execute_reply": "2023-08-22T07:01:11.689879Z" } }, "outputs": [ @@ -762,10 +762,10 @@ "id": "be117713", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:18.000853Z", - "iopub.status.busy": "2023-08-21T02:29:18.000747Z", - "iopub.status.idle": "2023-08-21T02:29:18.487357Z", - "shell.execute_reply": "2023-08-21T02:29:18.487078Z" + "iopub.execute_input": "2023-08-22T07:01:11.691729Z", + "iopub.status.busy": "2023-08-22T07:01:11.691643Z", + "iopub.status.idle": "2023-08-22T07:01:12.083351Z", + "shell.execute_reply": "2023-08-22T07:01:12.083006Z" }, "lines_to_next_cell": 2 }, @@ -822,10 +822,10 @@ "id": "537c4ea8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:18.489069Z", - "iopub.status.busy": "2023-08-21T02:29:18.488949Z", - "iopub.status.idle": "2023-08-21T02:29:18.570869Z", - "shell.execute_reply": "2023-08-21T02:29:18.570427Z" + "iopub.execute_input": "2023-08-22T07:01:12.085028Z", + "iopub.status.busy": "2023-08-22T07:01:12.084925Z", + "iopub.status.idle": "2023-08-22T07:01:12.158318Z", + "shell.execute_reply": "2023-08-22T07:01:12.158031Z" } }, "outputs": [ @@ -863,10 +863,10 @@ "id": "2c88ec87", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:18.572454Z", - "iopub.status.busy": "2023-08-21T02:29:18.572341Z", - "iopub.status.idle": "2023-08-21T02:29:19.005707Z", - "shell.execute_reply": "2023-08-21T02:29:19.005387Z" + "iopub.execute_input": "2023-08-22T07:01:12.160012Z", + "iopub.status.busy": "2023-08-22T07:01:12.159900Z", + "iopub.status.idle": "2023-08-22T07:01:12.510866Z", + "shell.execute_reply": "2023-08-22T07:01:12.510573Z" } }, "outputs": [], @@ -892,10 +892,10 @@ "id": "b6d56819", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.007847Z", - "iopub.status.busy": "2023-08-21T02:29:19.007564Z", - "iopub.status.idle": "2023-08-21T02:29:19.010742Z", - "shell.execute_reply": "2023-08-21T02:29:19.010371Z" + "iopub.execute_input": "2023-08-22T07:01:12.512518Z", + "iopub.status.busy": "2023-08-22T07:01:12.512432Z", + "iopub.status.idle": "2023-08-22T07:01:12.514982Z", + "shell.execute_reply": "2023-08-22T07:01:12.514769Z" } }, "outputs": [ @@ -937,10 +937,10 @@ "id": "b00da3a1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.012400Z", - "iopub.status.busy": "2023-08-21T02:29:19.012298Z", - "iopub.status.idle": "2023-08-21T02:29:19.015314Z", - "shell.execute_reply": "2023-08-21T02:29:19.014978Z" + "iopub.execute_input": "2023-08-22T07:01:12.516361Z", + "iopub.status.busy": "2023-08-22T07:01:12.516283Z", + "iopub.status.idle": "2023-08-22T07:01:12.518438Z", + "shell.execute_reply": "2023-08-22T07:01:12.518191Z" }, "lines_to_next_cell": 0 }, @@ -981,10 +981,10 @@ "id": "1c230117", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.016857Z", - "iopub.status.busy": "2023-08-21T02:29:19.016769Z", - "iopub.status.idle": "2023-08-21T02:29:19.019332Z", - "shell.execute_reply": "2023-08-21T02:29:19.019032Z" + "iopub.execute_input": "2023-08-22T07:01:12.519863Z", + "iopub.status.busy": "2023-08-22T07:01:12.519780Z", + "iopub.status.idle": "2023-08-22T07:01:12.521828Z", + "shell.execute_reply": "2023-08-22T07:01:12.521610Z" }, "lines_to_next_cell": 2 }, @@ -1031,10 +1031,10 @@ "id": "62289650", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.021112Z", - "iopub.status.busy": "2023-08-21T02:29:19.020904Z", - "iopub.status.idle": "2023-08-21T02:29:19.023622Z", - "shell.execute_reply": "2023-08-21T02:29:19.023338Z" + "iopub.execute_input": "2023-08-22T07:01:12.523116Z", + "iopub.status.busy": "2023-08-22T07:01:12.523043Z", + "iopub.status.idle": "2023-08-22T07:01:12.525236Z", + "shell.execute_reply": "2023-08-22T07:01:12.525021Z" } }, "outputs": [], @@ -1065,10 +1065,10 @@ "id": "18b3c0ed", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.025191Z", - "iopub.status.busy": "2023-08-21T02:29:19.025074Z", - "iopub.status.idle": "2023-08-21T02:29:19.262207Z", - "shell.execute_reply": "2023-08-21T02:29:19.261823Z" + "iopub.execute_input": "2023-08-22T07:01:12.526613Z", + "iopub.status.busy": "2023-08-22T07:01:12.526539Z", + "iopub.status.idle": "2023-08-22T07:01:12.740275Z", + "shell.execute_reply": "2023-08-22T07:01:12.739986Z" }, "lines_to_next_cell": 2 }, @@ -1115,10 +1115,10 @@ "id": "eb79e606", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.264174Z", - "iopub.status.busy": "2023-08-21T02:29:19.264030Z", - "iopub.status.idle": "2023-08-21T02:29:19.339232Z", - "shell.execute_reply": "2023-08-21T02:29:19.338912Z" + "iopub.execute_input": "2023-08-22T07:01:12.742002Z", + "iopub.status.busy": "2023-08-22T07:01:12.741882Z", + "iopub.status.idle": "2023-08-22T07:01:12.844984Z", + "shell.execute_reply": "2023-08-22T07:01:12.844724Z" }, "lines_to_next_cell": 2 }, @@ -1166,10 +1166,10 @@ "id": "1afbcf47", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.341009Z", - "iopub.status.busy": "2023-08-21T02:29:19.340889Z", - "iopub.status.idle": "2023-08-21T02:29:19.344670Z", - "shell.execute_reply": "2023-08-21T02:29:19.344391Z" + "iopub.execute_input": "2023-08-22T07:01:12.846468Z", + "iopub.status.busy": "2023-08-22T07:01:12.846384Z", + "iopub.status.idle": "2023-08-22T07:01:12.849714Z", + "shell.execute_reply": "2023-08-22T07:01:12.849454Z" }, "lines_to_next_cell": 2 }, @@ -1219,10 +1219,10 @@ "id": "f73f4c6d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:19.346368Z", - "iopub.status.busy": "2023-08-21T02:29:19.346227Z", - "iopub.status.idle": "2023-08-21T02:29:21.776569Z", - "shell.execute_reply": "2023-08-21T02:29:21.776267Z" + "iopub.execute_input": "2023-08-22T07:01:12.851134Z", + "iopub.status.busy": "2023-08-22T07:01:12.851053Z", + "iopub.status.idle": "2023-08-22T07:01:14.848052Z", + "shell.execute_reply": "2023-08-22T07:01:14.847788Z" }, "lines_to_next_cell": 2 }, @@ -1270,10 +1270,10 @@ "id": "062daf19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:21.778366Z", - "iopub.status.busy": "2023-08-21T02:29:21.778242Z", - "iopub.status.idle": "2023-08-21T02:29:21.990476Z", - "shell.execute_reply": "2023-08-21T02:29:21.989965Z" + "iopub.execute_input": "2023-08-22T07:01:14.849560Z", + "iopub.status.busy": "2023-08-22T07:01:14.849477Z", + "iopub.status.idle": "2023-08-22T07:01:14.990286Z", + "shell.execute_reply": "2023-08-22T07:01:14.989980Z" }, "lines_to_next_cell": 0 }, @@ -1330,10 +1330,10 @@ "id": "6d14fcad", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:29:21.992665Z", - "iopub.status.busy": "2023-08-21T02:29:21.992515Z", - "iopub.status.idle": "2023-08-21T02:34:05.930300Z", - "shell.execute_reply": "2023-08-21T02:34:05.929181Z" + "iopub.execute_input": "2023-08-22T07:01:14.992440Z", + "iopub.status.busy": "2023-08-22T07:01:14.992326Z", + "iopub.status.idle": "2023-08-22T07:04:36.802040Z", + "shell.execute_reply": "2023-08-22T07:04:36.801740Z" } }, "outputs": [], @@ -1376,10 +1376,10 @@ "id": "8f0ec909", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:34:05.935513Z", - "iopub.status.busy": "2023-08-21T02:34:05.935323Z", - "iopub.status.idle": "2023-08-21T02:34:06.118079Z", - "shell.execute_reply": "2023-08-21T02:34:06.117633Z" + "iopub.execute_input": "2023-08-22T07:04:36.803805Z", + "iopub.status.busy": "2023-08-22T07:04:36.803712Z", + "iopub.status.idle": "2023-08-22T07:04:36.913862Z", + "shell.execute_reply": "2023-08-22T07:04:36.913579Z" } }, "outputs": [], @@ -1417,10 +1417,10 @@ "id": "f11339e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:34:06.120138Z", - "iopub.status.busy": "2023-08-21T02:34:06.119994Z", - "iopub.status.idle": "2023-08-21T02:34:06.123846Z", - "shell.execute_reply": "2023-08-21T02:34:06.123478Z" + "iopub.execute_input": "2023-08-22T07:04:36.915631Z", + "iopub.status.busy": "2023-08-22T07:04:36.915542Z", + "iopub.status.idle": "2023-08-22T07:04:36.918059Z", + "shell.execute_reply": "2023-08-22T07:04:36.917797Z" } }, "outputs": [ @@ -1472,10 +1472,10 @@ "id": "d2600773", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:34:06.126460Z", - "iopub.status.busy": "2023-08-21T02:34:06.126346Z", - "iopub.status.idle": "2023-08-21T02:34:06.129561Z", - "shell.execute_reply": "2023-08-21T02:34:06.129124Z" + "iopub.execute_input": "2023-08-22T07:04:36.919428Z", + "iopub.status.busy": "2023-08-22T07:04:36.919345Z", + "iopub.status.idle": "2023-08-22T07:04:36.921649Z", + "shell.execute_reply": "2023-08-22T07:04:36.921430Z" } }, "outputs": [ @@ -1540,10 +1540,10 @@ "id": "924b7705", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:34:06.131323Z", - "iopub.status.busy": "2023-08-21T02:34:06.131207Z", - "iopub.status.idle": "2023-08-21T02:34:06.216626Z", - "shell.execute_reply": "2023-08-21T02:34:06.216270Z" + "iopub.execute_input": "2023-08-22T07:04:36.923042Z", + "iopub.status.busy": "2023-08-22T07:04:36.922969Z", + "iopub.status.idle": "2023-08-22T07:04:36.986633Z", + "shell.execute_reply": "2023-08-22T07:04:36.986366Z" }, "lines_to_next_cell": 0 }, @@ -1578,7 +1578,7 @@ "metadata": { "jupytext": { "cell_metadata_filter": "-all", - "formats": "ipynb,Rmd", + "formats": "Rmd,ipynb", "main_language": "python" }, "language_info": { @@ -1591,7 +1591,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.12" } }, "nbformat": 4, From dc4fb733d78c19bedfa60176e74d9616acc5c7b4 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Tue, 22 Aug 2023 00:17:08 -0700 Subject: [PATCH 15/18] stripped execution data --- Ch02-statlearn-lab.ipynb | 798 +++++----------------------------- Ch03-linreg-lab.ipynb | 252 ++--------- Ch04-classification-lab.ipynb | 553 ++++------------------- Ch05-resample-lab.ipynb | 182 ++------ Ch06-varselect-lab.ipynb | 399 +++-------------- Ch07-nonlin-lab.ipynb | 343 +++------------ Ch08-baggboost-lab.ipynb | 245 ++--------- Ch09-svm-lab.ipynb | 238 ++-------- Ch10-deeplearning-lab.ipynb | 791 +++++---------------------------- Ch11-surv-lab.ipynb | 245 ++--------- Ch12-unsup-lab.ipynb | 406 +++-------------- Ch13-multiple-lab.ipynb | 217 ++------- 12 files changed, 667 insertions(+), 4002 deletions(-) diff --git a/Ch02-statlearn-lab.ipynb b/Ch02-statlearn-lab.ipynb index 9f202fe..e3cf777 100644 --- a/Ch02-statlearn-lab.ipynb +++ b/Ch02-statlearn-lab.ipynb @@ -101,12 +101,7 @@ "execution_count": 1, "id": "9e8aa21f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.520475Z", - "iopub.status.busy": "2023-08-22T06:59:05.520373Z", - "iopub.status.idle": "2023-08-22T06:59:05.524957Z", - "shell.execute_reply": "2023-08-22T06:59:05.524661Z" - } + "execution": {} }, "outputs": [ { @@ -134,12 +129,7 @@ "execution_count": 2, "id": "d62ec119", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.526569Z", - "iopub.status.busy": "2023-08-22T06:59:05.526459Z", - "iopub.status.idle": "2023-08-22T06:59:05.528480Z", - "shell.execute_reply": "2023-08-22T06:59:05.528197Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -159,12 +149,7 @@ "execution_count": 3, "id": "c64e9f4d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.530498Z", - "iopub.status.busy": "2023-08-22T06:59:05.530245Z", - "iopub.status.idle": "2023-08-22T06:59:05.533462Z", - "shell.execute_reply": "2023-08-22T06:59:05.533113Z" - } + "execution": {} }, "outputs": [ { @@ -199,12 +184,7 @@ "execution_count": 4, "id": "9abccc1f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.535049Z", - "iopub.status.busy": "2023-08-22T06:59:05.534962Z", - "iopub.status.idle": "2023-08-22T06:59:05.537010Z", - "shell.execute_reply": "2023-08-22T06:59:05.536734Z" - } + "execution": {} }, "outputs": [ { @@ -248,12 +228,7 @@ "execution_count": 5, "id": "802ca33c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.538667Z", - "iopub.status.busy": "2023-08-22T06:59:05.538580Z", - "iopub.status.idle": "2023-08-22T06:59:05.541098Z", - "shell.execute_reply": "2023-08-22T06:59:05.540721Z" - } + "execution": {} }, "outputs": [ { @@ -289,12 +264,7 @@ "execution_count": 6, "id": "a8c72744", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.542902Z", - "iopub.status.busy": "2023-08-22T06:59:05.542804Z", - "iopub.status.idle": "2023-08-22T06:59:05.545269Z", - "shell.execute_reply": "2023-08-22T06:59:05.544991Z" - } + "execution": {} }, "outputs": [ { @@ -363,12 +333,7 @@ "execution_count": 7, "id": "f1c7d1db", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:05.546995Z", - "iopub.status.busy": "2023-08-22T06:59:05.546897Z", - "iopub.status.idle": "2023-08-22T06:59:07.928068Z", - "shell.execute_reply": "2023-08-22T06:59:07.927627Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -399,12 +364,7 @@ "execution_count": 8, "id": "e2ea2bfd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.930503Z", - "iopub.status.busy": "2023-08-22T06:59:07.930338Z", - "iopub.status.idle": "2023-08-22T06:59:07.932349Z", - "shell.execute_reply": "2023-08-22T06:59:07.932076Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -438,12 +398,7 @@ "execution_count": 9, "id": "59fbf9fd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.934561Z", - "iopub.status.busy": "2023-08-22T06:59:07.934430Z", - "iopub.status.idle": "2023-08-22T06:59:07.936902Z", - "shell.execute_reply": "2023-08-22T06:59:07.936605Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -485,12 +440,7 @@ "execution_count": 10, "id": "2279437e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.939184Z", - "iopub.status.busy": "2023-08-22T06:59:07.938968Z", - "iopub.status.idle": "2023-08-22T06:59:07.941378Z", - "shell.execute_reply": "2023-08-22T06:59:07.941135Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -536,12 +486,7 @@ "execution_count": 11, "id": "75bf1b1e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.943172Z", - "iopub.status.busy": "2023-08-22T06:59:07.942965Z", - "iopub.status.idle": "2023-08-22T06:59:07.945452Z", - "shell.execute_reply": "2023-08-22T06:59:07.945026Z" - } + "execution": {} }, "outputs": [ { @@ -574,12 +519,7 @@ "execution_count": 12, "id": "58292240", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.947238Z", - "iopub.status.busy": "2023-08-22T06:59:07.947112Z", - "iopub.status.idle": "2023-08-22T06:59:07.949367Z", - "shell.execute_reply": "2023-08-22T06:59:07.949033Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -614,12 +554,7 @@ "execution_count": 13, "id": "fc5fff57", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.951095Z", - "iopub.status.busy": "2023-08-22T06:59:07.950962Z", - "iopub.status.idle": "2023-08-22T06:59:07.953323Z", - "shell.execute_reply": "2023-08-22T06:59:07.953058Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -653,12 +588,7 @@ "execution_count": 14, "id": "762562a6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.955159Z", - "iopub.status.busy": "2023-08-22T06:59:07.955029Z", - "iopub.status.idle": "2023-08-22T06:59:07.957291Z", - "shell.execute_reply": "2023-08-22T06:59:07.956944Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -679,12 +609,7 @@ "execution_count": 15, "id": "66d2b82a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.959022Z", - "iopub.status.busy": "2023-08-22T06:59:07.958921Z", - "iopub.status.idle": "2023-08-22T06:59:07.961144Z", - "shell.execute_reply": "2023-08-22T06:59:07.960798Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -717,12 +642,7 @@ "execution_count": 16, "id": "89881402", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.963075Z", - "iopub.status.busy": "2023-08-22T06:59:07.962934Z", - "iopub.status.idle": "2023-08-22T06:59:07.965265Z", - "shell.execute_reply": "2023-08-22T06:59:07.964978Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -760,12 +680,7 @@ "execution_count": 17, "id": "0572d3f6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.967468Z", - "iopub.status.busy": "2023-08-22T06:59:07.967139Z", - "iopub.status.idle": "2023-08-22T06:59:07.969644Z", - "shell.execute_reply": "2023-08-22T06:59:07.969386Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -798,12 +713,7 @@ "execution_count": 18, "id": "33b10a6f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.971652Z", - "iopub.status.busy": "2023-08-22T06:59:07.971489Z", - "iopub.status.idle": "2023-08-22T06:59:07.974229Z", - "shell.execute_reply": "2023-08-22T06:59:07.973900Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -844,12 +754,7 @@ "execution_count": 19, "id": "a32716db", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.976214Z", - "iopub.status.busy": "2023-08-22T06:59:07.976066Z", - "iopub.status.idle": "2023-08-22T06:59:07.978551Z", - "shell.execute_reply": "2023-08-22T06:59:07.978148Z" - } + "execution": {} }, "outputs": [ { @@ -895,12 +800,7 @@ "execution_count": 20, "id": "3db6e1cf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.980462Z", - "iopub.status.busy": "2023-08-22T06:59:07.980329Z", - "iopub.status.idle": "2023-08-22T06:59:07.982878Z", - "shell.execute_reply": "2023-08-22T06:59:07.982438Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -933,12 +833,7 @@ "execution_count": 21, "id": "e15c753f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.984961Z", - "iopub.status.busy": "2023-08-22T06:59:07.984816Z", - "iopub.status.idle": "2023-08-22T06:59:07.987101Z", - "shell.execute_reply": "2023-08-22T06:59:07.986805Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -974,12 +869,7 @@ "execution_count": 22, "id": "91c6e7d8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.989269Z", - "iopub.status.busy": "2023-08-22T06:59:07.988940Z", - "iopub.status.idle": "2023-08-22T06:59:07.991567Z", - "shell.execute_reply": "2023-08-22T06:59:07.991233Z" - } + "execution": {} }, "outputs": [ { @@ -1032,12 +922,7 @@ "execution_count": 23, "id": "59d95dce", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:07.993423Z", - "iopub.status.busy": "2023-08-22T06:59:07.993299Z", - "iopub.status.idle": "2023-08-22T06:59:08.133462Z", - "shell.execute_reply": "2023-08-22T06:59:08.132910Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1072,12 +957,7 @@ "execution_count": 24, "id": "a6fde9af", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.135655Z", - "iopub.status.busy": "2023-08-22T06:59:08.135507Z", - "iopub.status.idle": "2023-08-22T06:59:08.138481Z", - "shell.execute_reply": "2023-08-22T06:59:08.138180Z" - } + "execution": {} }, "outputs": [ { @@ -1116,12 +996,7 @@ "execution_count": 25, "id": "fadb6b45", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.140173Z", - "iopub.status.busy": "2023-08-22T06:59:08.140051Z", - "iopub.status.idle": "2023-08-22T06:59:08.142777Z", - "shell.execute_reply": "2023-08-22T06:59:08.142404Z" - } + "execution": {} }, "outputs": [ { @@ -1153,12 +1028,7 @@ "execution_count": 26, "id": "fda3134b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.144782Z", - "iopub.status.busy": "2023-08-22T06:59:08.144640Z", - "iopub.status.idle": "2023-08-22T06:59:08.147297Z", - "shell.execute_reply": "2023-08-22T06:59:08.146996Z" - } + "execution": {} }, "outputs": [ { @@ -1189,12 +1059,7 @@ "execution_count": 27, "id": "52eb335b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.148995Z", - "iopub.status.busy": "2023-08-22T06:59:08.148870Z", - "iopub.status.idle": "2023-08-22T06:59:08.151571Z", - "shell.execute_reply": "2023-08-22T06:59:08.151251Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1236,12 +1101,7 @@ "execution_count": 28, "id": "ac5e9d29", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.154113Z", - "iopub.status.busy": "2023-08-22T06:59:08.153958Z", - "iopub.status.idle": "2023-08-22T06:59:08.157534Z", - "shell.execute_reply": "2023-08-22T06:59:08.156973Z" - } + "execution": {} }, "outputs": [ { @@ -1282,12 +1142,7 @@ "execution_count": 29, "id": "55fa905e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.159589Z", - "iopub.status.busy": "2023-08-22T06:59:08.159437Z", - "iopub.status.idle": "2023-08-22T06:59:08.161722Z", - "shell.execute_reply": "2023-08-22T06:59:08.161369Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1309,12 +1164,7 @@ "execution_count": 30, "id": "fde0dc19", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.164153Z", - "iopub.status.busy": "2023-08-22T06:59:08.163979Z", - "iopub.status.idle": "2023-08-22T06:59:08.168094Z", - "shell.execute_reply": "2023-08-22T06:59:08.167676Z" - } + "execution": {} }, "outputs": [ { @@ -1349,12 +1199,7 @@ "execution_count": 31, "id": "5099cf54", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.169980Z", - "iopub.status.busy": "2023-08-22T06:59:08.169865Z", - "iopub.status.idle": "2023-08-22T06:59:08.173468Z", - "shell.execute_reply": "2023-08-22T06:59:08.172857Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1400,12 +1245,7 @@ "execution_count": 32, "id": "9d8074e5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.175381Z", - "iopub.status.busy": "2023-08-22T06:59:08.175239Z", - "iopub.status.idle": "2023-08-22T06:59:08.177926Z", - "shell.execute_reply": "2023-08-22T06:59:08.177603Z" - } + "execution": {} }, "outputs": [ { @@ -1446,12 +1286,7 @@ "execution_count": 33, "id": "e98472df", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.179784Z", - "iopub.status.busy": "2023-08-22T06:59:08.179647Z", - "iopub.status.idle": "2023-08-22T06:59:08.182540Z", - "shell.execute_reply": "2023-08-22T06:59:08.182002Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1485,12 +1320,7 @@ "execution_count": 34, "id": "8c2784fd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.184240Z", - "iopub.status.busy": "2023-08-22T06:59:08.184117Z", - "iopub.status.idle": "2023-08-22T06:59:08.186691Z", - "shell.execute_reply": "2023-08-22T06:59:08.186367Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1523,12 +1353,7 @@ "execution_count": 35, "id": "7e7205f2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.188421Z", - "iopub.status.busy": "2023-08-22T06:59:08.188291Z", - "iopub.status.idle": "2023-08-22T06:59:08.191242Z", - "shell.execute_reply": "2023-08-22T06:59:08.190935Z" - } + "execution": {} }, "outputs": [ { @@ -1560,12 +1385,7 @@ "execution_count": 36, "id": "fce06849", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.192889Z", - "iopub.status.busy": "2023-08-22T06:59:08.192762Z", - "iopub.status.idle": "2023-08-22T06:59:08.195517Z", - "shell.execute_reply": "2023-08-22T06:59:08.195194Z" - } + "execution": {} }, "outputs": [ { @@ -1606,12 +1426,7 @@ "execution_count": 37, "id": "1403ff7a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.197212Z", - "iopub.status.busy": "2023-08-22T06:59:08.197063Z", - "iopub.status.idle": "2023-08-22T06:59:08.199463Z", - "shell.execute_reply": "2023-08-22T06:59:08.199082Z" - } + "execution": {} }, "outputs": [ { @@ -1642,12 +1457,7 @@ "execution_count": 38, "id": "7e9255ba", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.201135Z", - "iopub.status.busy": "2023-08-22T06:59:08.201013Z", - "iopub.status.idle": "2023-08-22T06:59:08.203278Z", - "shell.execute_reply": "2023-08-22T06:59:08.202984Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1712,12 +1522,7 @@ "execution_count": 39, "id": "8236e5f7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:08.205399Z", - "iopub.status.busy": "2023-08-22T06:59:08.205262Z", - "iopub.status.idle": "2023-08-22T06:59:09.267032Z", - "shell.execute_reply": "2023-08-22T06:59:09.266627Z" - } + "execution": {} }, "outputs": [ { @@ -1754,12 +1559,7 @@ "execution_count": 40, "id": "ddc9ed4f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.269192Z", - "iopub.status.busy": "2023-08-22T06:59:09.269015Z", - "iopub.status.idle": "2023-08-22T06:59:09.336385Z", - "shell.execute_reply": "2023-08-22T06:59:09.335994Z" - } + "execution": {} }, "outputs": [ { @@ -1792,12 +1592,7 @@ "execution_count": 41, "id": "c64ed600", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.338601Z", - "iopub.status.busy": "2023-08-22T06:59:09.338466Z", - "iopub.status.idle": "2023-08-22T06:59:09.408187Z", - "shell.execute_reply": "2023-08-22T06:59:09.407850Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1840,12 +1635,7 @@ "execution_count": 42, "id": "bc6245e2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.410036Z", - "iopub.status.busy": "2023-08-22T06:59:09.409914Z", - "iopub.status.idle": "2023-08-22T06:59:09.481803Z", - "shell.execute_reply": "2023-08-22T06:59:09.481516Z" - } + "execution": {} }, "outputs": [ { @@ -1880,12 +1670,7 @@ "execution_count": 43, "id": "2454807b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.483769Z", - "iopub.status.busy": "2023-08-22T06:59:09.483410Z", - "iopub.status.idle": "2023-08-22T06:59:09.583871Z", - "shell.execute_reply": "2023-08-22T06:59:09.583567Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1943,12 +1728,7 @@ "execution_count": 44, "id": "1e18a793", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.585676Z", - "iopub.status.busy": "2023-08-22T06:59:09.585555Z", - "iopub.status.idle": "2023-08-22T06:59:09.674249Z", - "shell.execute_reply": "2023-08-22T06:59:09.673902Z" - } + "execution": {} }, "outputs": [ { @@ -1984,12 +1764,7 @@ "execution_count": 45, "id": "aec3f009", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.676005Z", - "iopub.status.busy": "2023-08-22T06:59:09.675879Z", - "iopub.status.idle": "2023-08-22T06:59:09.733152Z", - "shell.execute_reply": "2023-08-22T06:59:09.732799Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2038,12 +1813,7 @@ "execution_count": 46, "id": "2cbc7fd4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.734976Z", - "iopub.status.busy": "2023-08-22T06:59:09.734855Z", - "iopub.status.idle": "2023-08-22T06:59:09.987982Z", - "shell.execute_reply": "2023-08-22T06:59:09.987518Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2078,12 +1848,7 @@ "execution_count": 47, "id": "702f80d9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:09.989943Z", - "iopub.status.busy": "2023-08-22T06:59:09.989799Z", - "iopub.status.idle": "2023-08-22T06:59:10.164367Z", - "shell.execute_reply": "2023-08-22T06:59:10.164050Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2131,12 +1896,7 @@ "execution_count": 48, "id": "5493d229", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:10.166485Z", - "iopub.status.busy": "2023-08-22T06:59:10.166339Z", - "iopub.status.idle": "2023-08-22T06:59:11.473366Z", - "shell.execute_reply": "2023-08-22T06:59:11.473053Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -2158,12 +1918,7 @@ "execution_count": 49, "id": "bd07af12", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:11.475355Z", - "iopub.status.busy": "2023-08-22T06:59:11.475181Z", - "iopub.status.idle": "2023-08-22T06:59:11.696662Z", - "shell.execute_reply": "2023-08-22T06:59:11.696345Z" - } + "execution": {} }, "outputs": [ { @@ -2208,12 +1963,7 @@ "execution_count": 50, "id": "01019508", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:11.698588Z", - "iopub.status.busy": "2023-08-22T06:59:11.698446Z", - "iopub.status.idle": "2023-08-22T06:59:11.986555Z", - "shell.execute_reply": "2023-08-22T06:59:11.986111Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2249,12 +1999,7 @@ "execution_count": 51, "id": "7d08992f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:11.988767Z", - "iopub.status.busy": "2023-08-22T06:59:11.988614Z", - "iopub.status.idle": "2023-08-22T06:59:12.104022Z", - "shell.execute_reply": "2023-08-22T06:59:12.103708Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2295,12 +2040,7 @@ "execution_count": 52, "id": "1f89d704", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.105969Z", - "iopub.status.busy": "2023-08-22T06:59:12.105871Z", - "iopub.status.idle": "2023-08-22T06:59:12.198374Z", - "shell.execute_reply": "2023-08-22T06:59:12.197945Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2343,12 +2083,7 @@ "execution_count": 53, "id": "cd971131", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.200827Z", - "iopub.status.busy": "2023-08-22T06:59:12.200655Z", - "iopub.status.idle": "2023-08-22T06:59:12.203494Z", - "shell.execute_reply": "2023-08-22T06:59:12.203195Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2383,12 +2118,7 @@ "execution_count": 54, "id": "aa630d16", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.205484Z", - "iopub.status.busy": "2023-08-22T06:59:12.205351Z", - "iopub.status.idle": "2023-08-22T06:59:12.207885Z", - "shell.execute_reply": "2023-08-22T06:59:12.207564Z" - } + "execution": {} }, "outputs": [ { @@ -2424,12 +2154,7 @@ "execution_count": 55, "id": "89955ee2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.209574Z", - "iopub.status.busy": "2023-08-22T06:59:12.209454Z", - "iopub.status.idle": "2023-08-22T06:59:12.212189Z", - "shell.execute_reply": "2023-08-22T06:59:12.211670Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2462,12 +2187,7 @@ "execution_count": 56, "id": "517f592d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.214090Z", - "iopub.status.busy": "2023-08-22T06:59:12.213954Z", - "iopub.status.idle": "2023-08-22T06:59:12.216634Z", - "shell.execute_reply": "2023-08-22T06:59:12.216229Z" - } + "execution": {} }, "outputs": [ { @@ -2529,12 +2249,7 @@ "execution_count": 57, "id": "35927abd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.218701Z", - "iopub.status.busy": "2023-08-22T06:59:12.218551Z", - "iopub.status.idle": "2023-08-22T06:59:12.221779Z", - "shell.execute_reply": "2023-08-22T06:59:12.221078Z" - } + "execution": {} }, "outputs": [ { @@ -2570,12 +2285,7 @@ "execution_count": 58, "id": "78ee7f5b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.223849Z", - "iopub.status.busy": "2023-08-22T06:59:12.223730Z", - "iopub.status.idle": "2023-08-22T06:59:12.226375Z", - "shell.execute_reply": "2023-08-22T06:59:12.226073Z" - } + "execution": {} }, "outputs": [ { @@ -2611,12 +2321,7 @@ "execution_count": 59, "id": "16212696", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.228118Z", - "iopub.status.busy": "2023-08-22T06:59:12.227993Z", - "iopub.status.idle": "2023-08-22T06:59:12.230254Z", - "shell.execute_reply": "2023-08-22T06:59:12.229993Z" - } + "execution": {} }, "outputs": [ { @@ -2650,12 +2355,7 @@ "execution_count": 60, "id": "d5f473d2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.231967Z", - "iopub.status.busy": "2023-08-22T06:59:12.231858Z", - "iopub.status.idle": "2023-08-22T06:59:12.234317Z", - "shell.execute_reply": "2023-08-22T06:59:12.234032Z" - } + "execution": {} }, "outputs": [ { @@ -2691,12 +2391,7 @@ "execution_count": 61, "id": "c89646d6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.236331Z", - "iopub.status.busy": "2023-08-22T06:59:12.236194Z", - "iopub.status.idle": "2023-08-22T06:59:12.238788Z", - "shell.execute_reply": "2023-08-22T06:59:12.238448Z" - } + "execution": {} }, "outputs": [ { @@ -2727,12 +2422,7 @@ "execution_count": 62, "id": "87f6b4f2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.240562Z", - "iopub.status.busy": "2023-08-22T06:59:12.240434Z", - "iopub.status.idle": "2023-08-22T06:59:12.242956Z", - "shell.execute_reply": "2023-08-22T06:59:12.242696Z" - } + "execution": {} }, "outputs": [ { @@ -2763,12 +2453,7 @@ "execution_count": 63, "id": "5da5bda8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.244576Z", - "iopub.status.busy": "2023-08-22T06:59:12.244457Z", - "iopub.status.idle": "2023-08-22T06:59:12.267725Z", - "shell.execute_reply": "2023-08-22T06:59:12.267329Z" - } + "execution": {} }, "outputs": [ { @@ -2802,12 +2487,7 @@ "execution_count": 64, "id": "ac48a95b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.269754Z", - "iopub.status.busy": "2023-08-22T06:59:12.269614Z", - "iopub.status.idle": "2023-08-22T06:59:12.272265Z", - "shell.execute_reply": "2023-08-22T06:59:12.271962Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2851,12 +2531,7 @@ "execution_count": 65, "id": "ee195cc4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.273998Z", - "iopub.status.busy": "2023-08-22T06:59:12.273857Z", - "iopub.status.idle": "2023-08-22T06:59:12.276565Z", - "shell.execute_reply": "2023-08-22T06:59:12.276235Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2894,12 +2569,7 @@ "execution_count": 66, "id": "48917bb5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.278649Z", - "iopub.status.busy": "2023-08-22T06:59:12.278494Z", - "iopub.status.idle": "2023-08-22T06:59:12.281280Z", - "shell.execute_reply": "2023-08-22T06:59:12.280843Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2964,12 +2634,7 @@ "execution_count": 67, "id": "5d4caf22", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.282968Z", - "iopub.status.busy": "2023-08-22T06:59:12.282854Z", - "iopub.status.idle": "2023-08-22T06:59:12.285234Z", - "shell.execute_reply": "2023-08-22T06:59:12.284961Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3002,12 +2667,7 @@ "execution_count": 68, "id": "348820e3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.287427Z", - "iopub.status.busy": "2023-08-22T06:59:12.287184Z", - "iopub.status.idle": "2023-08-22T06:59:12.289915Z", - "shell.execute_reply": "2023-08-22T06:59:12.289589Z" - } + "execution": {} }, "outputs": [ { @@ -3041,12 +2701,7 @@ "execution_count": 69, "id": "4aafe45b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.291767Z", - "iopub.status.busy": "2023-08-22T06:59:12.291634Z", - "iopub.status.idle": "2023-08-22T06:59:12.294302Z", - "shell.execute_reply": "2023-08-22T06:59:12.293967Z" - } + "execution": {} }, "outputs": [ { @@ -3087,12 +2742,7 @@ "execution_count": 70, "id": "1be6a588", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.296189Z", - "iopub.status.busy": "2023-08-22T06:59:12.296052Z", - "iopub.status.idle": "2023-08-22T06:59:12.298784Z", - "shell.execute_reply": "2023-08-22T06:59:12.298383Z" - } + "execution": {} }, "outputs": [ { @@ -3126,12 +2776,7 @@ "execution_count": 71, "id": "e83da57b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.300802Z", - "iopub.status.busy": "2023-08-22T06:59:12.300663Z", - "iopub.status.idle": "2023-08-22T06:59:12.303240Z", - "shell.execute_reply": "2023-08-22T06:59:12.302865Z" - } + "execution": {} }, "outputs": [ { @@ -3173,12 +2818,7 @@ "execution_count": 72, "id": "09675294", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.305143Z", - "iopub.status.busy": "2023-08-22T06:59:12.305025Z", - "iopub.status.idle": "2023-08-22T06:59:12.307529Z", - "shell.execute_reply": "2023-08-22T06:59:12.307219Z" - } + "execution": {} }, "outputs": [ { @@ -3213,12 +2853,7 @@ "execution_count": 73, "id": "a85614e4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.309554Z", - "iopub.status.busy": "2023-08-22T06:59:12.309418Z", - "iopub.status.idle": "2023-08-22T06:59:12.311737Z", - "shell.execute_reply": "2023-08-22T06:59:12.311441Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3305,12 +2940,7 @@ "execution_count": 74, "id": "ff81e644", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:12.313549Z", - "iopub.status.busy": "2023-08-22T06:59:12.313428Z", - "iopub.status.idle": "2023-08-22T06:59:14.571524Z", - "shell.execute_reply": "2023-08-22T06:59:14.571235Z" - } + "execution": {} }, "outputs": [ { @@ -3537,12 +3167,7 @@ "execution_count": 75, "id": "5b45aa7f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.573445Z", - "iopub.status.busy": "2023-08-22T06:59:14.573227Z", - "iopub.status.idle": "2023-08-22T06:59:14.576905Z", - "shell.execute_reply": "2023-08-22T06:59:14.576624Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3574,12 +3199,7 @@ "execution_count": 76, "id": "413f626a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.578771Z", - "iopub.status.busy": "2023-08-22T06:59:14.578606Z", - "iopub.status.idle": "2023-08-22T06:59:14.581727Z", - "shell.execute_reply": "2023-08-22T06:59:14.581462Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3625,12 +3245,7 @@ "execution_count": 77, "id": "57b86346", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.583287Z", - "iopub.status.busy": "2023-08-22T06:59:14.583182Z", - "iopub.status.idle": "2023-08-22T06:59:14.585660Z", - "shell.execute_reply": "2023-08-22T06:59:14.585401Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3686,12 +3301,7 @@ "execution_count": 78, "id": "a9698b26", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.587247Z", - "iopub.status.busy": "2023-08-22T06:59:14.587134Z", - "iopub.status.idle": "2023-08-22T06:59:14.591564Z", - "shell.execute_reply": "2023-08-22T06:59:14.591275Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3727,12 +3337,7 @@ "execution_count": 79, "id": "4877cb2c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.593387Z", - "iopub.status.busy": "2023-08-22T06:59:14.593233Z", - "iopub.status.idle": "2023-08-22T06:59:14.595399Z", - "shell.execute_reply": "2023-08-22T06:59:14.595111Z" - } + "execution": {} }, "outputs": [ { @@ -3766,12 +3371,7 @@ "execution_count": 80, "id": "2ba1d33d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.596985Z", - "iopub.status.busy": "2023-08-22T06:59:14.596880Z", - "iopub.status.idle": "2023-08-22T06:59:14.599760Z", - "shell.execute_reply": "2023-08-22T06:59:14.599435Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3806,12 +3406,7 @@ "execution_count": 81, "id": "3d03baab", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.602110Z", - "iopub.status.busy": "2023-08-22T06:59:14.601973Z", - "iopub.status.idle": "2023-08-22T06:59:14.604410Z", - "shell.execute_reply": "2023-08-22T06:59:14.604070Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3850,12 +3445,7 @@ "execution_count": 82, "id": "410b4dd7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.606098Z", - "iopub.status.busy": "2023-08-22T06:59:14.605987Z", - "iopub.status.idle": "2023-08-22T06:59:14.610632Z", - "shell.execute_reply": "2023-08-22T06:59:14.610234Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3966,12 +3556,7 @@ "execution_count": 83, "id": "3540804d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.612402Z", - "iopub.status.busy": "2023-08-22T06:59:14.612271Z", - "iopub.status.idle": "2023-08-22T06:59:14.625177Z", - "shell.execute_reply": "2023-08-22T06:59:14.624839Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4853,12 +4438,7 @@ "execution_count": 84, "id": "66d174f1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.626829Z", - "iopub.status.busy": "2023-08-22T06:59:14.626719Z", - "iopub.status.idle": "2023-08-22T06:59:14.631422Z", - "shell.execute_reply": "2023-08-22T06:59:14.631104Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4988,12 +4568,7 @@ "execution_count": 85, "id": "52789c77", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.633211Z", - "iopub.status.busy": "2023-08-22T06:59:14.633074Z", - "iopub.status.idle": "2023-08-22T06:59:14.635511Z", - "shell.execute_reply": "2023-08-22T06:59:14.635190Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5029,12 +4604,7 @@ "execution_count": 86, "id": "d83650bf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.637090Z", - "iopub.status.busy": "2023-08-22T06:59:14.636984Z", - "iopub.status.idle": "2023-08-22T06:59:14.643250Z", - "shell.execute_reply": "2023-08-22T06:59:14.642921Z" - } + "execution": {} }, "outputs": [ { @@ -5253,12 +4823,7 @@ "execution_count": 87, "id": "880d79d9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.644959Z", - "iopub.status.busy": "2023-08-22T06:59:14.644832Z", - "iopub.status.idle": "2023-08-22T06:59:14.647067Z", - "shell.execute_reply": "2023-08-22T06:59:14.646780Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5296,12 +4861,7 @@ "execution_count": 88, "id": "c01f4095", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.648616Z", - "iopub.status.busy": "2023-08-22T06:59:14.648506Z", - "iopub.status.idle": "2023-08-22T06:59:14.653020Z", - "shell.execute_reply": "2023-08-22T06:59:14.652673Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5409,12 +4969,7 @@ "execution_count": 89, "id": "a4202eb8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.654821Z", - "iopub.status.busy": "2023-08-22T06:59:14.654708Z", - "iopub.status.idle": "2023-08-22T06:59:14.658952Z", - "shell.execute_reply": "2023-08-22T06:59:14.658676Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5521,12 +5076,7 @@ "execution_count": 90, "id": "948b2d07", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.660688Z", - "iopub.status.busy": "2023-08-22T06:59:14.660582Z", - "iopub.status.idle": "2023-08-22T06:59:14.665683Z", - "shell.execute_reply": "2023-08-22T06:59:14.665320Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5675,12 +5225,7 @@ "execution_count": 91, "id": "1cfdcc5c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.667792Z", - "iopub.status.busy": "2023-08-22T06:59:14.667649Z", - "iopub.status.idle": "2023-08-22T06:59:14.672086Z", - "shell.execute_reply": "2023-08-22T06:59:14.671668Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5762,12 +5307,7 @@ "execution_count": 92, "id": "fd9c5cda", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.674155Z", - "iopub.status.busy": "2023-08-22T06:59:14.674020Z", - "iopub.status.idle": "2023-08-22T06:59:14.677900Z", - "shell.execute_reply": "2023-08-22T06:59:14.677570Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5855,12 +5395,7 @@ "execution_count": 93, "id": "6d431cb5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.679838Z", - "iopub.status.busy": "2023-08-22T06:59:14.679694Z", - "iopub.status.idle": "2023-08-22T06:59:14.685743Z", - "shell.execute_reply": "2023-08-22T06:59:14.685309Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -6275,12 +5810,7 @@ "execution_count": 94, "id": "fac41ce1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.687552Z", - "iopub.status.busy": "2023-08-22T06:59:14.687421Z", - "iopub.status.idle": "2023-08-22T06:59:14.693477Z", - "shell.execute_reply": "2023-08-22T06:59:14.693157Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -6699,12 +6229,7 @@ "execution_count": 95, "id": "b0885654", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.695271Z", - "iopub.status.busy": "2023-08-22T06:59:14.695116Z", - "iopub.status.idle": "2023-08-22T06:59:14.700210Z", - "shell.execute_reply": "2023-08-22T06:59:14.699919Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -6979,12 +6504,7 @@ "execution_count": 96, "id": "213945a6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.702075Z", - "iopub.status.busy": "2023-08-22T06:59:14.701942Z", - "iopub.status.idle": "2023-08-22T06:59:14.708849Z", - "shell.execute_reply": "2023-08-22T06:59:14.708468Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7370,12 +6890,7 @@ "execution_count": 97, "id": "a3c4060a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.710560Z", - "iopub.status.busy": "2023-08-22T06:59:14.710418Z", - "iopub.status.idle": "2023-08-22T06:59:14.712662Z", - "shell.execute_reply": "2023-08-22T06:59:14.712379Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7414,12 +6929,7 @@ "execution_count": 98, "id": "f2bffb69", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.714548Z", - "iopub.status.busy": "2023-08-22T06:59:14.714416Z", - "iopub.status.idle": "2023-08-22T06:59:14.716724Z", - "shell.execute_reply": "2023-08-22T06:59:14.716275Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7466,12 +6976,7 @@ "execution_count": 99, "id": "ee827a53", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.718538Z", - "iopub.status.busy": "2023-08-22T06:59:14.718418Z", - "iopub.status.idle": "2023-08-22T06:59:14.720778Z", - "shell.execute_reply": "2023-08-22T06:59:14.720410Z" - } + "execution": {} }, "outputs": [ { @@ -7521,12 +7026,7 @@ "execution_count": 100, "id": "3a097fbc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.722745Z", - "iopub.status.busy": "2023-08-22T06:59:14.722445Z", - "iopub.status.idle": "2023-08-22T06:59:14.727643Z", - "shell.execute_reply": "2023-08-22T06:59:14.727302Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -7617,12 +7117,7 @@ "execution_count": 101, "id": "e064e170", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.729283Z", - "iopub.status.busy": "2023-08-22T06:59:14.729148Z", - "iopub.status.idle": "2023-08-22T06:59:14.732019Z", - "shell.execute_reply": "2023-08-22T06:59:14.731599Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7674,12 +7169,7 @@ "execution_count": 102, "id": "c915ca52", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.733916Z", - "iopub.status.busy": "2023-08-22T06:59:14.733787Z", - "iopub.status.idle": "2023-08-22T06:59:14.823121Z", - "shell.execute_reply": "2023-08-22T06:59:14.822788Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7723,12 +7213,7 @@ "execution_count": 103, "id": "65cd6d02", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.825251Z", - "iopub.status.busy": "2023-08-22T06:59:14.825113Z", - "iopub.status.idle": "2023-08-22T06:59:14.905789Z", - "shell.execute_reply": "2023-08-22T06:59:14.905480Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7765,12 +7250,7 @@ "execution_count": 104, "id": "76b5c0b1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.907636Z", - "iopub.status.busy": "2023-08-22T06:59:14.907511Z", - "iopub.status.idle": "2023-08-22T06:59:14.997060Z", - "shell.execute_reply": "2023-08-22T06:59:14.996751Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7805,12 +7285,7 @@ "execution_count": 105, "id": "183a2c2b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:14.998844Z", - "iopub.status.busy": "2023-08-22T06:59:14.998722Z", - "iopub.status.idle": "2023-08-22T06:59:15.033680Z", - "shell.execute_reply": "2023-08-22T06:59:15.033292Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7836,12 +7311,7 @@ "execution_count": 106, "id": "75fbb981", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.035870Z", - "iopub.status.busy": "2023-08-22T06:59:15.035723Z", - "iopub.status.idle": "2023-08-22T06:59:15.198431Z", - "shell.execute_reply": "2023-08-22T06:59:15.198047Z" - } + "execution": {} }, "outputs": [ { @@ -7884,12 +7354,7 @@ "execution_count": 107, "id": "55b3a1cc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.200753Z", - "iopub.status.busy": "2023-08-22T06:59:15.200526Z", - "iopub.status.idle": "2023-08-22T06:59:15.203898Z", - "shell.execute_reply": "2023-08-22T06:59:15.203556Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7923,12 +7388,7 @@ "execution_count": 108, "id": "f3d88794", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.205746Z", - "iopub.status.busy": "2023-08-22T06:59:15.205652Z", - "iopub.status.idle": "2023-08-22T06:59:15.305674Z", - "shell.execute_reply": "2023-08-22T06:59:15.305240Z" - } + "execution": {} }, "outputs": [ { @@ -7960,12 +7420,7 @@ "execution_count": 109, "id": "eea49f5b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.307641Z", - "iopub.status.busy": "2023-08-22T06:59:15.307491Z", - "iopub.status.idle": "2023-08-22T06:59:15.405217Z", - "shell.execute_reply": "2023-08-22T06:59:15.404785Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7998,12 +7453,7 @@ "execution_count": 110, "id": "d5bcfff8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.407321Z", - "iopub.status.busy": "2023-08-22T06:59:15.407190Z", - "iopub.status.idle": "2023-08-22T06:59:15.503021Z", - "shell.execute_reply": "2023-08-22T06:59:15.502607Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8040,12 +7490,7 @@ "execution_count": 111, "id": "edb66cae", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:15.504880Z", - "iopub.status.busy": "2023-08-22T06:59:15.504746Z", - "iopub.status.idle": "2023-08-22T06:59:16.457367Z", - "shell.execute_reply": "2023-08-22T06:59:16.457033Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8078,12 +7523,7 @@ "execution_count": 112, "id": "4f5d25d9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:16.459211Z", - "iopub.status.busy": "2023-08-22T06:59:16.459087Z", - "iopub.status.idle": "2023-08-22T06:59:16.684825Z", - "shell.execute_reply": "2023-08-22T06:59:16.684501Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8117,12 +7557,7 @@ "execution_count": 113, "id": "ce7b23e2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:16.686592Z", - "iopub.status.busy": "2023-08-22T06:59:16.686475Z", - "iopub.status.idle": "2023-08-22T06:59:16.692382Z", - "shell.execute_reply": "2023-08-22T06:59:16.692013Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8230,12 +7665,7 @@ "execution_count": 114, "id": "a6545d2f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:16.694320Z", - "iopub.status.busy": "2023-08-22T06:59:16.694191Z", - "iopub.status.idle": "2023-08-22T06:59:16.698368Z", - "shell.execute_reply": "2023-08-22T06:59:16.698098Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch03-linreg-lab.ipynb b/Ch03-linreg-lab.ipynb index 78a516a..4d38fa6 100644 --- a/Ch03-linreg-lab.ipynb +++ b/Ch03-linreg-lab.ipynb @@ -26,12 +26,7 @@ "execution_count": 1, "id": "b18c1628", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:19.963803Z", - "iopub.status.busy": "2023-08-22T06:59:19.963695Z", - "iopub.status.idle": "2023-08-22T06:59:20.384511Z", - "shell.execute_reply": "2023-08-22T06:59:20.384219Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -59,12 +54,7 @@ "execution_count": 2, "id": "a10a1d7d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:20.387117Z", - "iopub.status.busy": "2023-08-22T06:59:20.386932Z", - "iopub.status.idle": "2023-08-22T06:59:27.510372Z", - "shell.execute_reply": "2023-08-22T06:59:27.510076Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -92,12 +82,7 @@ "execution_count": 3, "id": "756c0524", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:27.512280Z", - "iopub.status.busy": "2023-08-22T06:59:27.512129Z", - "iopub.status.idle": "2023-08-22T06:59:27.514850Z", - "shell.execute_reply": "2023-08-22T06:59:27.514531Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -123,12 +108,7 @@ "execution_count": 4, "id": "2c370a6e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:27.516720Z", - "iopub.status.busy": "2023-08-22T06:59:27.516584Z", - "iopub.status.idle": "2023-08-22T06:59:30.213761Z", - "shell.execute_reply": "2023-08-22T06:59:30.213403Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -155,12 +135,7 @@ "execution_count": 5, "id": "43bcb3a9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.215847Z", - "iopub.status.busy": "2023-08-22T06:59:30.215679Z", - "iopub.status.idle": "2023-08-22T06:59:30.219200Z", - "shell.execute_reply": "2023-08-22T06:59:30.218854Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -236,12 +211,7 @@ "execution_count": 6, "id": "cb81bfb0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.220842Z", - "iopub.status.busy": "2023-08-22T06:59:30.220745Z", - "iopub.status.idle": "2023-08-22T06:59:30.223794Z", - "shell.execute_reply": "2023-08-22T06:59:30.223517Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -439,12 +409,7 @@ "execution_count": 7, "id": "29e9bdab", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.225458Z", - "iopub.status.busy": "2023-08-22T06:59:30.225336Z", - "iopub.status.idle": "2023-08-22T06:59:30.227667Z", - "shell.execute_reply": "2023-08-22T06:59:30.227385Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -497,12 +462,7 @@ "execution_count": 8, "id": "72a15de5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.229351Z", - "iopub.status.busy": "2023-08-22T06:59:30.229229Z", - "iopub.status.idle": "2023-08-22T06:59:30.233978Z", - "shell.execute_reply": "2023-08-22T06:59:30.233738Z" - } + "execution": {} }, "outputs": [ { @@ -541,12 +501,7 @@ "execution_count": 9, "id": "26837cfe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.235692Z", - "iopub.status.busy": "2023-08-22T06:59:30.235572Z", - "iopub.status.idle": "2023-08-22T06:59:30.240548Z", - "shell.execute_reply": "2023-08-22T06:59:30.240254Z" - } + "execution": {} }, "outputs": [ { @@ -631,12 +586,7 @@ "execution_count": 10, "id": "c70cbdb5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.242180Z", - "iopub.status.busy": "2023-08-22T06:59:30.242082Z", - "iopub.status.idle": "2023-08-22T06:59:30.244423Z", - "shell.execute_reply": "2023-08-22T06:59:30.244043Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -666,12 +616,7 @@ "execution_count": 11, "id": "6f2d7c78", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.246386Z", - "iopub.status.busy": "2023-08-22T06:59:30.246241Z", - "iopub.status.idle": "2023-08-22T06:59:30.304643Z", - "shell.execute_reply": "2023-08-22T06:59:30.304342Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -777,12 +722,7 @@ "execution_count": 12, "id": "cdec4294", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.306725Z", - "iopub.status.busy": "2023-08-22T06:59:30.306537Z", - "iopub.status.idle": "2023-08-22T06:59:30.313928Z", - "shell.execute_reply": "2023-08-22T06:59:30.313612Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -872,12 +812,7 @@ "execution_count": 13, "id": "edf2efcb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.316046Z", - "iopub.status.busy": "2023-08-22T06:59:30.315927Z", - "iopub.status.idle": "2023-08-22T06:59:30.322463Z", - "shell.execute_reply": "2023-08-22T06:59:30.322137Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -976,12 +911,7 @@ "execution_count": 14, "id": "49fc8992", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.324453Z", - "iopub.status.busy": "2023-08-22T06:59:30.324311Z", - "iopub.status.idle": "2023-08-22T06:59:30.334219Z", - "shell.execute_reply": "2023-08-22T06:59:30.333881Z" - } + "execution": {} }, "outputs": [ { @@ -1132,12 +1062,7 @@ "execution_count": 15, "id": "6d0f4c3a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.336071Z", - "iopub.status.busy": "2023-08-22T06:59:30.335936Z", - "iopub.status.idle": "2023-08-22T06:59:30.338769Z", - "shell.execute_reply": "2023-08-22T06:59:30.338416Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1175,12 +1100,7 @@ "execution_count": 16, "id": "132ffded", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.340661Z", - "iopub.status.busy": "2023-08-22T06:59:30.340521Z", - "iopub.status.idle": "2023-08-22T06:59:30.345095Z", - "shell.execute_reply": "2023-08-22T06:59:30.344737Z" - } + "execution": {} }, "outputs": [ { @@ -1259,12 +1179,7 @@ "execution_count": 17, "id": "b654a050", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.346874Z", - "iopub.status.busy": "2023-08-22T06:59:30.346735Z", - "iopub.status.idle": "2023-08-22T06:59:30.349291Z", - "shell.execute_reply": "2023-08-22T06:59:30.349007Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1297,12 +1212,7 @@ "execution_count": 18, "id": "148ed59d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.351073Z", - "iopub.status.busy": "2023-08-22T06:59:30.350934Z", - "iopub.status.idle": "2023-08-22T06:59:30.353516Z", - "shell.execute_reply": "2023-08-22T06:59:30.353225Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1336,12 +1246,7 @@ "execution_count": 19, "id": "d9d7b844", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.355404Z", - "iopub.status.busy": "2023-08-22T06:59:30.355267Z", - "iopub.status.idle": "2023-08-22T06:59:30.357759Z", - "shell.execute_reply": "2023-08-22T06:59:30.357461Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1396,12 +1301,7 @@ "execution_count": 20, "id": "79de2913", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.359458Z", - "iopub.status.busy": "2023-08-22T06:59:30.359349Z", - "iopub.status.idle": "2023-08-22T06:59:30.361244Z", - "shell.execute_reply": "2023-08-22T06:59:30.360996Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1430,12 +1330,7 @@ "execution_count": 21, "id": "a9b843c7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.362847Z", - "iopub.status.busy": "2023-08-22T06:59:30.362727Z", - "iopub.status.idle": "2023-08-22T06:59:30.364665Z", - "shell.execute_reply": "2023-08-22T06:59:30.364410Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1470,12 +1365,7 @@ "execution_count": 22, "id": "7e116800", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.366228Z", - "iopub.status.busy": "2023-08-22T06:59:30.366005Z", - "iopub.status.idle": "2023-08-22T06:59:30.451927Z", - "shell.execute_reply": "2023-08-22T06:59:30.451614Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1534,12 +1424,7 @@ "execution_count": 23, "id": "b524399e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.453712Z", - "iopub.status.busy": "2023-08-22T06:59:30.453582Z", - "iopub.status.idle": "2023-08-22T06:59:30.544088Z", - "shell.execute_reply": "2023-08-22T06:59:30.543647Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1582,12 +1467,7 @@ "execution_count": 24, "id": "8c95b6b0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.545979Z", - "iopub.status.busy": "2023-08-22T06:59:30.545829Z", - "iopub.status.idle": "2023-08-22T06:59:30.629333Z", - "shell.execute_reply": "2023-08-22T06:59:30.628907Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1650,12 +1530,7 @@ "execution_count": 25, "id": "04ed8362", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.631304Z", - "iopub.status.busy": "2023-08-22T06:59:30.631172Z", - "iopub.status.idle": "2023-08-22T06:59:30.643510Z", - "shell.execute_reply": "2023-08-22T06:59:30.643228Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1748,12 +1623,7 @@ "execution_count": 26, "id": "6483e190", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.645260Z", - "iopub.status.busy": "2023-08-22T06:59:30.645134Z", - "iopub.status.idle": "2023-08-22T06:59:30.647637Z", - "shell.execute_reply": "2023-08-22T06:59:30.647310Z" - } + "execution": {} }, "outputs": [ { @@ -1788,12 +1658,7 @@ "execution_count": 27, "id": "99a6f9d0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.649333Z", - "iopub.status.busy": "2023-08-22T06:59:30.649188Z", - "iopub.status.idle": "2023-08-22T06:59:30.667501Z", - "shell.execute_reply": "2023-08-22T06:59:30.667201Z" - } + "execution": {} }, "outputs": [ { @@ -1964,12 +1829,7 @@ "execution_count": 28, "id": "78cf55d0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.669290Z", - "iopub.status.busy": "2023-08-22T06:59:30.669145Z", - "iopub.status.idle": "2023-08-22T06:59:30.687452Z", - "shell.execute_reply": "2023-08-22T06:59:30.687132Z" - } + "execution": {} }, "outputs": [ { @@ -2152,12 +2012,7 @@ "execution_count": 29, "id": "902f6474", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.689227Z", - "iopub.status.busy": "2023-08-22T06:59:30.689072Z", - "iopub.status.idle": "2023-08-22T06:59:30.695976Z", - "shell.execute_reply": "2023-08-22T06:59:30.695604Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2284,12 +2139,7 @@ "execution_count": 30, "id": "ea1c88e9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.697875Z", - "iopub.status.busy": "2023-08-22T06:59:30.697744Z", - "iopub.status.idle": "2023-08-22T06:59:30.702854Z", - "shell.execute_reply": "2023-08-22T06:59:30.702396Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -2317,12 +2167,7 @@ "execution_count": 31, "id": "e9ff159c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.705060Z", - "iopub.status.busy": "2023-08-22T06:59:30.704928Z", - "iopub.status.idle": "2023-08-22T06:59:30.718546Z", - "shell.execute_reply": "2023-08-22T06:59:30.718288Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2425,12 +2270,7 @@ "execution_count": 32, "id": "c98f54b2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.720315Z", - "iopub.status.busy": "2023-08-22T06:59:30.720166Z", - "iopub.status.idle": "2023-08-22T06:59:30.733544Z", - "shell.execute_reply": "2023-08-22T06:59:30.733105Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2543,12 +2383,7 @@ "execution_count": 33, "id": "53065cac", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.735632Z", - "iopub.status.busy": "2023-08-22T06:59:30.735509Z", - "iopub.status.idle": "2023-08-22T06:59:30.740862Z", - "shell.execute_reply": "2023-08-22T06:59:30.740579Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2653,12 +2488,7 @@ "execution_count": 34, "id": "8c654809", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.742508Z", - "iopub.status.busy": "2023-08-22T06:59:30.742387Z", - "iopub.status.idle": "2023-08-22T06:59:30.835769Z", - "shell.execute_reply": "2023-08-22T06:59:30.835368Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2719,12 +2549,7 @@ "execution_count": 35, "id": "2182f0ec", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.837767Z", - "iopub.status.busy": "2023-08-22T06:59:30.837636Z", - "iopub.status.idle": "2023-08-22T06:59:30.842380Z", - "shell.execute_reply": "2023-08-22T06:59:30.842026Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2770,12 +2595,7 @@ "execution_count": 36, "id": "d614fdcb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:30.844518Z", - "iopub.status.busy": "2023-08-22T06:59:30.844367Z", - "iopub.status.idle": "2023-08-22T06:59:30.871405Z", - "shell.execute_reply": "2023-08-22T06:59:30.871052Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch04-classification-lab.ipynb b/Ch04-classification-lab.ipynb index eaa27c9..a4d5e34 100644 --- a/Ch04-classification-lab.ipynb +++ b/Ch04-classification-lab.ipynb @@ -45,12 +45,7 @@ "execution_count": 1, "id": "95d28c33", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:34.104356Z", - "iopub.status.busy": "2023-08-22T06:59:34.104253Z", - "iopub.status.idle": "2023-08-22T06:59:35.054094Z", - "shell.execute_reply": "2023-08-22T06:59:35.053754Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -76,12 +71,7 @@ "execution_count": 2, "id": "f7fb5f2a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.056108Z", - "iopub.status.busy": "2023-08-22T06:59:35.055950Z", - "iopub.status.idle": "2023-08-22T06:59:35.206682Z", - "shell.execute_reply": "2023-08-22T06:59:35.206381Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -111,12 +101,7 @@ "execution_count": 3, "id": "7845390b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.208609Z", - "iopub.status.busy": "2023-08-22T06:59:35.208499Z", - "iopub.status.idle": "2023-08-22T06:59:35.218856Z", - "shell.execute_reply": "2023-08-22T06:59:35.218543Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -331,12 +316,7 @@ "execution_count": 4, "id": "a92e287a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.220822Z", - "iopub.status.busy": "2023-08-22T06:59:35.220658Z", - "iopub.status.idle": "2023-08-22T06:59:35.223146Z", - "shell.execute_reply": "2023-08-22T06:59:35.222864Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -375,12 +355,7 @@ "execution_count": 5, "id": "96bb1e00", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.224965Z", - "iopub.status.busy": "2023-08-22T06:59:35.224831Z", - "iopub.status.idle": "2023-08-22T06:59:35.229701Z", - "shell.execute_reply": "2023-08-22T06:59:35.229442Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -556,12 +531,7 @@ "execution_count": 6, "id": "4ddb96ba", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.231485Z", - "iopub.status.busy": "2023-08-22T06:59:35.231354Z", - "iopub.status.idle": "2023-08-22T06:59:35.319629Z", - "shell.execute_reply": "2023-08-22T06:59:35.319199Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -603,12 +573,7 @@ "execution_count": 7, "id": "df59bcac", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.321733Z", - "iopub.status.busy": "2023-08-22T06:59:35.321597Z", - "iopub.status.idle": "2023-08-22T06:59:35.382350Z", - "shell.execute_reply": "2023-08-22T06:59:35.381919Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -743,12 +708,7 @@ "execution_count": 8, "id": "f45f26de", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.384570Z", - "iopub.status.busy": "2023-08-22T06:59:35.384386Z", - "iopub.status.idle": "2023-08-22T06:59:35.387199Z", - "shell.execute_reply": "2023-08-22T06:59:35.386864Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -788,12 +748,7 @@ "execution_count": 9, "id": "e9f38895", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.388777Z", - "iopub.status.busy": "2023-08-22T06:59:35.388675Z", - "iopub.status.idle": "2023-08-22T06:59:35.391038Z", - "shell.execute_reply": "2023-08-22T06:59:35.390743Z" - } + "execution": {} }, "outputs": [ { @@ -839,12 +794,7 @@ "execution_count": 10, "id": "4f20356d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.392617Z", - "iopub.status.busy": "2023-08-22T06:59:35.392475Z", - "iopub.status.idle": "2023-08-22T06:59:35.395311Z", - "shell.execute_reply": "2023-08-22T06:59:35.395042Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -883,12 +833,7 @@ "execution_count": 11, "id": "152b3063", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.396940Z", - "iopub.status.busy": "2023-08-22T06:59:35.396826Z", - "iopub.status.idle": "2023-08-22T06:59:35.398854Z", - "shell.execute_reply": "2023-08-22T06:59:35.398548Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -916,12 +861,7 @@ "execution_count": 12, "id": "0f89f7ae", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.400476Z", - "iopub.status.busy": "2023-08-22T06:59:35.400370Z", - "iopub.status.idle": "2023-08-22T06:59:35.406304Z", - "shell.execute_reply": "2023-08-22T06:59:35.405994Z" - } + "execution": {} }, "outputs": [ { @@ -1005,12 +945,7 @@ "execution_count": 13, "id": "d55dd7ec", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.408001Z", - "iopub.status.busy": "2023-08-22T06:59:35.407888Z", - "iopub.status.idle": "2023-08-22T06:59:35.410520Z", - "shell.execute_reply": "2023-08-22T06:59:35.410222Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1068,12 +1003,7 @@ "execution_count": 14, "id": "b998a060", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.412348Z", - "iopub.status.busy": "2023-08-22T06:59:35.412200Z", - "iopub.status.idle": "2023-08-22T06:59:35.415670Z", - "shell.execute_reply": "2023-08-22T06:59:35.415360Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1134,12 +1064,7 @@ "execution_count": 15, "id": "814e34ce", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.417692Z", - "iopub.status.busy": "2023-08-22T06:59:35.417600Z", - "iopub.status.idle": "2023-08-22T06:59:35.422315Z", - "shell.execute_reply": "2023-08-22T06:59:35.421995Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1171,12 +1096,7 @@ "execution_count": 16, "id": "644823f9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.424241Z", - "iopub.status.busy": "2023-08-22T06:59:35.424099Z", - "iopub.status.idle": "2023-08-22T06:59:35.426371Z", - "shell.execute_reply": "2023-08-22T06:59:35.425999Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1200,12 +1120,7 @@ "execution_count": 17, "id": "51217c85", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.428375Z", - "iopub.status.busy": "2023-08-22T06:59:35.428239Z", - "iopub.status.idle": "2023-08-22T06:59:35.432849Z", - "shell.execute_reply": "2023-08-22T06:59:35.432491Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1285,12 +1200,7 @@ "execution_count": 18, "id": "a73446bf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.434489Z", - "iopub.status.busy": "2023-08-22T06:59:35.434371Z", - "iopub.status.idle": "2023-08-22T06:59:35.437237Z", - "shell.execute_reply": "2023-08-22T06:59:35.436914Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1343,12 +1253,7 @@ "execution_count": 19, "id": "8174767d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.439129Z", - "iopub.status.busy": "2023-08-22T06:59:35.438980Z", - "iopub.status.idle": "2023-08-22T06:59:35.449036Z", - "shell.execute_reply": "2023-08-22T06:59:35.448757Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1437,12 +1342,7 @@ "execution_count": 20, "id": "cba7e815", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.450840Z", - "iopub.status.busy": "2023-08-22T06:59:35.450725Z", - "iopub.status.idle": "2023-08-22T06:59:35.452944Z", - "shell.execute_reply": "2023-08-22T06:59:35.452674Z" - } + "execution": {} }, "outputs": [ { @@ -1491,12 +1391,7 @@ "execution_count": 21, "id": "97993185", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.454539Z", - "iopub.status.busy": "2023-08-22T06:59:35.454423Z", - "iopub.status.idle": "2023-08-22T06:59:35.458834Z", - "shell.execute_reply": "2023-08-22T06:59:35.458553Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1543,12 +1438,7 @@ "execution_count": 22, "id": "4bc774e9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.460658Z", - "iopub.status.busy": "2023-08-22T06:59:35.460534Z", - "iopub.status.idle": "2023-08-22T06:59:35.462216Z", - "shell.execute_reply": "2023-08-22T06:59:35.461957Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1571,12 +1461,7 @@ "execution_count": 23, "id": "8c6c0723", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.463858Z", - "iopub.status.busy": "2023-08-22T06:59:35.463759Z", - "iopub.status.idle": "2023-08-22T06:59:35.469987Z", - "shell.execute_reply": "2023-08-22T06:59:35.469710Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1627,12 +1512,7 @@ "execution_count": 24, "id": "cf8fd5ac", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.471584Z", - "iopub.status.busy": "2023-08-22T06:59:35.471470Z", - "iopub.status.idle": "2023-08-22T06:59:35.473834Z", - "shell.execute_reply": "2023-08-22T06:59:35.473552Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1668,12 +1548,7 @@ "execution_count": 25, "id": "bfd6b3f8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.475293Z", - "iopub.status.busy": "2023-08-22T06:59:35.475189Z", - "iopub.status.idle": "2023-08-22T06:59:35.477448Z", - "shell.execute_reply": "2023-08-22T06:59:35.477007Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1706,12 +1581,7 @@ "execution_count": 26, "id": "a1f75de4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.479354Z", - "iopub.status.busy": "2023-08-22T06:59:35.479219Z", - "iopub.status.idle": "2023-08-22T06:59:35.481609Z", - "shell.execute_reply": "2023-08-22T06:59:35.481305Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1743,12 +1613,7 @@ "execution_count": 27, "id": "82794178", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.483264Z", - "iopub.status.busy": "2023-08-22T06:59:35.483156Z", - "iopub.status.idle": "2023-08-22T06:59:35.485247Z", - "shell.execute_reply": "2023-08-22T06:59:35.484948Z" - } + "execution": {} }, "outputs": [ { @@ -1781,12 +1646,7 @@ "execution_count": 28, "id": "9b571047", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.486831Z", - "iopub.status.busy": "2023-08-22T06:59:35.486719Z", - "iopub.status.idle": "2023-08-22T06:59:35.489231Z", - "shell.execute_reply": "2023-08-22T06:59:35.488879Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1808,12 +1668,7 @@ "execution_count": 29, "id": "60f3d13a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.490888Z", - "iopub.status.busy": "2023-08-22T06:59:35.490781Z", - "iopub.status.idle": "2023-08-22T06:59:35.494972Z", - "shell.execute_reply": "2023-08-22T06:59:35.494699Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1895,12 +1750,7 @@ "execution_count": 30, "id": "96e680d9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.496550Z", - "iopub.status.busy": "2023-08-22T06:59:35.496460Z", - "iopub.status.idle": "2023-08-22T06:59:35.500050Z", - "shell.execute_reply": "2023-08-22T06:59:35.499652Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1939,12 +1789,7 @@ "execution_count": 31, "id": "b6695125", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.501821Z", - "iopub.status.busy": "2023-08-22T06:59:35.501696Z", - "iopub.status.idle": "2023-08-22T06:59:35.504118Z", - "shell.execute_reply": "2023-08-22T06:59:35.503779Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1985,12 +1830,7 @@ "execution_count": 32, "id": "3f38a14e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.505774Z", - "iopub.status.busy": "2023-08-22T06:59:35.505669Z", - "iopub.status.idle": "2023-08-22T06:59:35.508018Z", - "shell.execute_reply": "2023-08-22T06:59:35.507737Z" - } + "execution": {} }, "outputs": [ { @@ -2050,12 +1890,7 @@ "execution_count": 33, "id": "9b645803", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.510093Z", - "iopub.status.busy": "2023-08-22T06:59:35.509967Z", - "iopub.status.idle": "2023-08-22T06:59:35.514060Z", - "shell.execute_reply": "2023-08-22T06:59:35.513746Z" - } + "execution": {} }, "outputs": [ { @@ -2090,12 +1925,7 @@ "execution_count": 34, "id": "abfae544", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.515774Z", - "iopub.status.busy": "2023-08-22T06:59:35.515682Z", - "iopub.status.idle": "2023-08-22T06:59:35.518169Z", - "shell.execute_reply": "2023-08-22T06:59:35.517903Z" - } + "execution": {} }, "outputs": [ { @@ -2129,12 +1959,7 @@ "execution_count": 35, "id": "2a3bb41e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.519953Z", - "iopub.status.busy": "2023-08-22T06:59:35.519849Z", - "iopub.status.idle": "2023-08-22T06:59:35.522248Z", - "shell.execute_reply": "2023-08-22T06:59:35.521930Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2171,12 +1996,7 @@ "execution_count": 36, "id": "1c64310b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.523826Z", - "iopub.status.busy": "2023-08-22T06:59:35.523714Z", - "iopub.status.idle": "2023-08-22T06:59:35.528214Z", - "shell.execute_reply": "2023-08-22T06:59:35.527959Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2256,12 +2076,7 @@ "execution_count": 37, "id": "0c05c5a8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.530152Z", - "iopub.status.busy": "2023-08-22T06:59:35.530024Z", - "iopub.status.idle": "2023-08-22T06:59:35.532713Z", - "shell.execute_reply": "2023-08-22T06:59:35.532375Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2312,12 +2127,7 @@ "execution_count": 38, "id": "47d85305", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.534353Z", - "iopub.status.busy": "2023-08-22T06:59:35.534232Z", - "iopub.status.idle": "2023-08-22T06:59:35.537918Z", - "shell.execute_reply": "2023-08-22T06:59:35.537612Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2353,12 +2163,7 @@ "execution_count": 39, "id": "c553aadf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.539480Z", - "iopub.status.busy": "2023-08-22T06:59:35.539391Z", - "iopub.status.idle": "2023-08-22T06:59:35.541924Z", - "shell.execute_reply": "2023-08-22T06:59:35.541560Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2390,12 +2195,7 @@ "execution_count": 40, "id": "4604bd3d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.543604Z", - "iopub.status.busy": "2023-08-22T06:59:35.543514Z", - "iopub.status.idle": "2023-08-22T06:59:35.545770Z", - "shell.execute_reply": "2023-08-22T06:59:35.545483Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2429,12 +2229,7 @@ "execution_count": 41, "id": "5ac2cabe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.547333Z", - "iopub.status.busy": "2023-08-22T06:59:35.547227Z", - "iopub.status.idle": "2023-08-22T06:59:35.549381Z", - "shell.execute_reply": "2023-08-22T06:59:35.549124Z" - } + "execution": {} }, "outputs": [ { @@ -2466,12 +2261,7 @@ "execution_count": 42, "id": "f8623945", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.551288Z", - "iopub.status.busy": "2023-08-22T06:59:35.551134Z", - "iopub.status.idle": "2023-08-22T06:59:35.553370Z", - "shell.execute_reply": "2023-08-22T06:59:35.553102Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2506,12 +2296,7 @@ "execution_count": 43, "id": "0790f26e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.554980Z", - "iopub.status.busy": "2023-08-22T06:59:35.554846Z", - "iopub.status.idle": "2023-08-22T06:59:35.557806Z", - "shell.execute_reply": "2023-08-22T06:59:35.557573Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2545,12 +2330,7 @@ "execution_count": 44, "id": "4a8cf0ce", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.559235Z", - "iopub.status.busy": "2023-08-22T06:59:35.559122Z", - "iopub.status.idle": "2023-08-22T06:59:35.562452Z", - "shell.execute_reply": "2023-08-22T06:59:35.562071Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2585,12 +2365,7 @@ "execution_count": 45, "id": "94e7ff1a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.564237Z", - "iopub.status.busy": "2023-08-22T06:59:35.564138Z", - "iopub.status.idle": "2023-08-22T06:59:35.568635Z", - "shell.execute_reply": "2023-08-22T06:59:35.568359Z" - } + "execution": {} }, "outputs": [ { @@ -2670,12 +2445,7 @@ "execution_count": 46, "id": "137e23aa", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.570127Z", - "iopub.status.busy": "2023-08-22T06:59:35.570011Z", - "iopub.status.idle": "2023-08-22T06:59:35.573407Z", - "shell.execute_reply": "2023-08-22T06:59:35.573097Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2720,12 +2490,7 @@ "execution_count": 47, "id": "142c5217", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.575043Z", - "iopub.status.busy": "2023-08-22T06:59:35.574949Z", - "iopub.status.idle": "2023-08-22T06:59:35.585246Z", - "shell.execute_reply": "2023-08-22T06:59:35.584962Z" - } + "execution": {} }, "outputs": [ { @@ -2808,12 +2573,7 @@ "execution_count": 48, "id": "f5a272ee", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.587100Z", - "iopub.status.busy": "2023-08-22T06:59:35.586985Z", - "iopub.status.idle": "2023-08-22T06:59:35.589510Z", - "shell.execute_reply": "2023-08-22T06:59:35.589151Z" - } + "execution": {} }, "outputs": [ { @@ -2845,12 +2605,7 @@ "execution_count": 49, "id": "95e206a8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.591165Z", - "iopub.status.busy": "2023-08-22T06:59:35.591045Z", - "iopub.status.idle": "2023-08-22T06:59:35.598648Z", - "shell.execute_reply": "2023-08-22T06:59:35.598383Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2900,12 +2655,7 @@ "execution_count": 50, "id": "422563b7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.600269Z", - "iopub.status.busy": "2023-08-22T06:59:35.600186Z", - "iopub.status.idle": "2023-08-22T06:59:35.616715Z", - "shell.execute_reply": "2023-08-22T06:59:35.616375Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2944,12 +2694,7 @@ "execution_count": 51, "id": "583c860c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.618509Z", - "iopub.status.busy": "2023-08-22T06:59:35.618392Z", - "iopub.status.idle": "2023-08-22T06:59:35.620427Z", - "shell.execute_reply": "2023-08-22T06:59:35.620213Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2981,12 +2726,7 @@ "execution_count": 52, "id": "19ee3bf2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.622075Z", - "iopub.status.busy": "2023-08-22T06:59:35.621970Z", - "iopub.status.idle": "2023-08-22T06:59:35.624662Z", - "shell.execute_reply": "2023-08-22T06:59:35.624306Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -3030,12 +2770,7 @@ "execution_count": 53, "id": "fdc0e5f1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.626535Z", - "iopub.status.busy": "2023-08-22T06:59:35.626411Z", - "iopub.status.idle": "2023-08-22T06:59:35.628326Z", - "shell.execute_reply": "2023-08-22T06:59:35.628023Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3069,12 +2804,7 @@ "execution_count": 54, "id": "2bb9d48b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.630001Z", - "iopub.status.busy": "2023-08-22T06:59:35.629870Z", - "iopub.status.idle": "2023-08-22T06:59:35.636000Z", - "shell.execute_reply": "2023-08-22T06:59:35.635697Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3097,12 +2827,7 @@ "execution_count": 55, "id": "649b57b3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.637746Z", - "iopub.status.busy": "2023-08-22T06:59:35.637618Z", - "iopub.status.idle": "2023-08-22T06:59:35.643400Z", - "shell.execute_reply": "2023-08-22T06:59:35.643102Z" - } + "execution": {} }, "outputs": [ { @@ -3153,12 +2878,7 @@ "execution_count": 56, "id": "d0aafd5e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.644912Z", - "iopub.status.busy": "2023-08-22T06:59:35.644814Z", - "iopub.status.idle": "2023-08-22T06:59:35.648144Z", - "shell.execute_reply": "2023-08-22T06:59:35.647828Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3188,12 +2908,7 @@ "execution_count": 57, "id": "ad02fb42", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.649991Z", - "iopub.status.busy": "2023-08-22T06:59:35.649857Z", - "iopub.status.idle": "2023-08-22T06:59:35.851869Z", - "shell.execute_reply": "2023-08-22T06:59:35.850800Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3241,12 +2956,7 @@ "execution_count": 58, "id": "901f772e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.857360Z", - "iopub.status.busy": "2023-08-22T06:59:35.856994Z", - "iopub.status.idle": "2023-08-22T06:59:35.868149Z", - "shell.execute_reply": "2023-08-22T06:59:35.867281Z" - } + "execution": {} }, "outputs": [ { @@ -3326,12 +3036,7 @@ "execution_count": 59, "id": "684f8941", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.872302Z", - "iopub.status.busy": "2023-08-22T06:59:35.871992Z", - "iopub.status.idle": "2023-08-22T06:59:35.881501Z", - "shell.execute_reply": "2023-08-22T06:59:35.879490Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3370,12 +3075,7 @@ "execution_count": 60, "id": "4d984cf0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:35.885276Z", - "iopub.status.busy": "2023-08-22T06:59:35.884561Z", - "iopub.status.idle": "2023-08-22T06:59:36.032887Z", - "shell.execute_reply": "2023-08-22T06:59:36.032527Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3437,12 +3137,7 @@ "execution_count": 61, "id": "d24f4e50", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.035053Z", - "iopub.status.busy": "2023-08-22T06:59:36.034905Z", - "iopub.status.idle": "2023-08-22T06:59:36.559516Z", - "shell.execute_reply": "2023-08-22T06:59:36.557112Z" - } + "execution": {} }, "outputs": [ { @@ -3534,12 +3229,7 @@ "execution_count": 62, "id": "25152580", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.564551Z", - "iopub.status.busy": "2023-08-22T06:59:36.564196Z", - "iopub.status.idle": "2023-08-22T06:59:36.582460Z", - "shell.execute_reply": "2023-08-22T06:59:36.580635Z" - } + "execution": {} }, "outputs": [ { @@ -3609,12 +3299,7 @@ "execution_count": 63, "id": "b8ea6e08", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.590532Z", - "iopub.status.busy": "2023-08-22T06:59:36.590038Z", - "iopub.status.idle": "2023-08-22T06:59:36.605488Z", - "shell.execute_reply": "2023-08-22T06:59:36.602880Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3649,12 +3334,7 @@ "execution_count": 64, "id": "def80d79", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.610362Z", - "iopub.status.busy": "2023-08-22T06:59:36.609709Z", - "iopub.status.idle": "2023-08-22T06:59:36.624089Z", - "shell.execute_reply": "2023-08-22T06:59:36.623200Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3675,12 +3355,7 @@ "execution_count": 65, "id": "f899d5ab", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.630386Z", - "iopub.status.busy": "2023-08-22T06:59:36.629966Z", - "iopub.status.idle": "2023-08-22T06:59:36.636403Z", - "shell.execute_reply": "2023-08-22T06:59:36.635734Z" - } + "execution": {} }, "outputs": [ { @@ -3717,12 +3392,7 @@ "execution_count": 66, "id": "76f4cea5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.642541Z", - "iopub.status.busy": "2023-08-22T06:59:36.642195Z", - "iopub.status.idle": "2023-08-22T06:59:36.742213Z", - "shell.execute_reply": "2023-08-22T06:59:36.740543Z" - } + "execution": {} }, "outputs": [ { @@ -4121,12 +3791,7 @@ "execution_count": 67, "id": "5778ada8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.748318Z", - "iopub.status.busy": "2023-08-22T06:59:36.747980Z", - "iopub.status.idle": "2023-08-22T06:59:36.753044Z", - "shell.execute_reply": "2023-08-22T06:59:36.752001Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -4148,12 +3813,7 @@ "execution_count": 68, "id": "c6da14b9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.761294Z", - "iopub.status.busy": "2023-08-22T06:59:36.760741Z", - "iopub.status.idle": "2023-08-22T06:59:36.824675Z", - "shell.execute_reply": "2023-08-22T06:59:36.823419Z" - } + "execution": {} }, "outputs": [ { @@ -4558,12 +4218,7 @@ "execution_count": 69, "id": "461d57c5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.832613Z", - "iopub.status.busy": "2023-08-22T06:59:36.831243Z", - "iopub.status.idle": "2023-08-22T06:59:36.839557Z", - "shell.execute_reply": "2023-08-22T06:59:36.838190Z" - } + "execution": {} }, "outputs": [ { @@ -4595,12 +4250,7 @@ "execution_count": 70, "id": "05d33247", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.846635Z", - "iopub.status.busy": "2023-08-22T06:59:36.846336Z", - "iopub.status.idle": "2023-08-22T06:59:36.854114Z", - "shell.execute_reply": "2023-08-22T06:59:36.853108Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -4638,12 +4288,7 @@ "execution_count": 71, "id": "bee42b38", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.861230Z", - "iopub.status.busy": "2023-08-22T06:59:36.860269Z", - "iopub.status.idle": "2023-08-22T06:59:36.869236Z", - "shell.execute_reply": "2023-08-22T06:59:36.868250Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4687,12 +4332,7 @@ "execution_count": 72, "id": "4aa60857", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.876998Z", - "iopub.status.busy": "2023-08-22T06:59:36.876016Z", - "iopub.status.idle": "2023-08-22T06:59:36.883621Z", - "shell.execute_reply": "2023-08-22T06:59:36.882372Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4744,12 +4384,7 @@ "execution_count": 73, "id": "894d3e2c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:36.889441Z", - "iopub.status.busy": "2023-08-22T06:59:36.888780Z", - "iopub.status.idle": "2023-08-22T06:59:37.004601Z", - "shell.execute_reply": "2023-08-22T06:59:37.003102Z" - } + "execution": {} }, "outputs": [ { @@ -4786,12 +4421,7 @@ "execution_count": 74, "id": "d636746e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.014352Z", - "iopub.status.busy": "2023-08-22T06:59:37.013713Z", - "iopub.status.idle": "2023-08-22T06:59:37.022133Z", - "shell.execute_reply": "2023-08-22T06:59:37.021189Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -4815,12 +4445,7 @@ "execution_count": 75, "id": "ce6a1623", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.030881Z", - "iopub.status.busy": "2023-08-22T06:59:37.030334Z", - "iopub.status.idle": "2023-08-22T06:59:37.126992Z", - "shell.execute_reply": "2023-08-22T06:59:37.126566Z" - } + "execution": {} }, "outputs": [ { @@ -4861,12 +4486,7 @@ "execution_count": 76, "id": "9fb8b759", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.128893Z", - "iopub.status.busy": "2023-08-22T06:59:37.128737Z", - "iopub.status.idle": "2023-08-22T06:59:37.220758Z", - "shell.execute_reply": "2023-08-22T06:59:37.219419Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -4886,12 +4506,7 @@ "execution_count": 77, "id": "ee272341", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.227931Z", - "iopub.status.busy": "2023-08-22T06:59:37.227304Z", - "iopub.status.idle": "2023-08-22T06:59:37.252847Z", - "shell.execute_reply": "2023-08-22T06:59:37.251756Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -4920,12 +4535,7 @@ "execution_count": 78, "id": "1f5bde07", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.263402Z", - "iopub.status.busy": "2023-08-22T06:59:37.262273Z", - "iopub.status.idle": "2023-08-22T06:59:37.482693Z", - "shell.execute_reply": "2023-08-22T06:59:37.479472Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4977,12 +4587,7 @@ "execution_count": 79, "id": "b0bd66a1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:37.487973Z", - "iopub.status.busy": "2023-08-22T06:59:37.486725Z", - "iopub.status.idle": "2023-08-22T06:59:37.588898Z", - "shell.execute_reply": "2023-08-22T06:59:37.588557Z" - } + "execution": {} }, "outputs": [ { diff --git a/Ch05-resample-lab.ipynb b/Ch05-resample-lab.ipynb index 2314c64..4edfa41 100644 --- a/Ch05-resample-lab.ipynb +++ b/Ch05-resample-lab.ipynb @@ -28,12 +28,7 @@ "execution_count": 1, "id": "e7712cfe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:40.827828Z", - "iopub.status.busy": "2023-08-22T06:59:40.827725Z", - "iopub.status.idle": "2023-08-22T06:59:41.658013Z", - "shell.execute_reply": "2023-08-22T06:59:41.657645Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -60,12 +55,7 @@ "execution_count": 2, "id": "21c2ed4f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.659951Z", - "iopub.status.busy": "2023-08-22T06:59:41.659798Z", - "iopub.status.idle": "2023-08-22T06:59:41.661744Z", - "shell.execute_reply": "2023-08-22T06:59:41.661437Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -104,12 +94,7 @@ "execution_count": 3, "id": "8af59641", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.663216Z", - "iopub.status.busy": "2023-08-22T06:59:41.663117Z", - "iopub.status.idle": "2023-08-22T06:59:41.667680Z", - "shell.execute_reply": "2023-08-22T06:59:41.667343Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -132,12 +117,7 @@ "execution_count": 4, "id": "d9b0b7c8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.669501Z", - "iopub.status.busy": "2023-08-22T06:59:41.669395Z", - "iopub.status.idle": "2023-08-22T06:59:41.674461Z", - "shell.execute_reply": "2023-08-22T06:59:41.674176Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -162,12 +142,7 @@ "execution_count": 5, "id": "3e77d831", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.676257Z", - "iopub.status.busy": "2023-08-22T06:59:41.676134Z", - "iopub.status.idle": "2023-08-22T06:59:41.680728Z", - "shell.execute_reply": "2023-08-22T06:59:41.680456Z" - } + "execution": {} }, "outputs": [ { @@ -206,12 +181,7 @@ "execution_count": 6, "id": "0aa4bfcc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.682418Z", - "iopub.status.busy": "2023-08-22T06:59:41.682304Z", - "iopub.status.idle": "2023-08-22T06:59:41.684531Z", - "shell.execute_reply": "2023-08-22T06:59:41.684276Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -249,12 +219,7 @@ "execution_count": 7, "id": "a0dbd55f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.686084Z", - "iopub.status.busy": "2023-08-22T06:59:41.685977Z", - "iopub.status.idle": "2023-08-22T06:59:41.701551Z", - "shell.execute_reply": "2023-08-22T06:59:41.701265Z" - } + "execution": {} }, "outputs": [ { @@ -293,12 +258,7 @@ "execution_count": 8, "id": "885136a4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.703198Z", - "iopub.status.busy": "2023-08-22T06:59:41.703080Z", - "iopub.status.idle": "2023-08-22T06:59:41.719142Z", - "shell.execute_reply": "2023-08-22T06:59:41.718778Z" - } + "execution": {} }, "outputs": [ { @@ -376,12 +336,7 @@ "execution_count": 9, "id": "6d957d8c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:41.721067Z", - "iopub.status.busy": "2023-08-22T06:59:41.720935Z", - "iopub.status.idle": "2023-08-22T06:59:42.841536Z", - "shell.execute_reply": "2023-08-22T06:59:42.841242Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -444,12 +399,7 @@ "execution_count": 10, "id": "e2b5ce95", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:42.843438Z", - "iopub.status.busy": "2023-08-22T06:59:42.843308Z", - "iopub.status.idle": "2023-08-22T06:59:43.408832Z", - "shell.execute_reply": "2023-08-22T06:59:43.408347Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -501,12 +451,7 @@ "execution_count": 11, "id": "1dda1bd7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.411083Z", - "iopub.status.busy": "2023-08-22T06:59:43.410940Z", - "iopub.status.idle": "2023-08-22T06:59:43.413889Z", - "shell.execute_reply": "2023-08-22T06:59:43.413456Z" - } + "execution": {} }, "outputs": [ { @@ -543,12 +488,7 @@ "execution_count": 12, "id": "fb25fa70", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.415865Z", - "iopub.status.busy": "2023-08-22T06:59:43.415724Z", - "iopub.status.idle": "2023-08-22T06:59:43.437716Z", - "shell.execute_reply": "2023-08-22T06:59:43.437344Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -608,12 +548,7 @@ "execution_count": 13, "id": "d78795cd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.439940Z", - "iopub.status.busy": "2023-08-22T06:59:43.439783Z", - "iopub.status.idle": "2023-08-22T06:59:43.447580Z", - "shell.execute_reply": "2023-08-22T06:59:43.447286Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -652,12 +587,7 @@ "execution_count": 14, "id": "0407ad56", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.449591Z", - "iopub.status.busy": "2023-08-22T06:59:43.449452Z", - "iopub.status.idle": "2023-08-22T06:59:43.483638Z", - "shell.execute_reply": "2023-08-22T06:59:43.483222Z" - } + "execution": {} }, "outputs": [ { @@ -726,12 +656,7 @@ "execution_count": 15, "id": "f04f15bd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.485600Z", - "iopub.status.busy": "2023-08-22T06:59:43.485469Z", - "iopub.status.idle": "2023-08-22T06:59:43.488993Z", - "shell.execute_reply": "2023-08-22T06:59:43.488698Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -760,12 +685,7 @@ "execution_count": 16, "id": "f98c0323", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.490952Z", - "iopub.status.busy": "2023-08-22T06:59:43.490857Z", - "iopub.status.idle": "2023-08-22T06:59:43.494027Z", - "shell.execute_reply": "2023-08-22T06:59:43.493695Z" - } + "execution": {} }, "outputs": [ { @@ -799,12 +719,7 @@ "execution_count": 17, "id": "bcd40175", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.495852Z", - "iopub.status.busy": "2023-08-22T06:59:43.495690Z", - "iopub.status.idle": "2023-08-22T06:59:43.498806Z", - "shell.execute_reply": "2023-08-22T06:59:43.498500Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -842,12 +757,7 @@ "execution_count": 18, "id": "ab6602cd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.500527Z", - "iopub.status.busy": "2023-08-22T06:59:43.500424Z", - "iopub.status.idle": "2023-08-22T06:59:43.502886Z", - "shell.execute_reply": "2023-08-22T06:59:43.502621Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -887,12 +797,7 @@ "execution_count": 19, "id": "4a323513", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.504576Z", - "iopub.status.busy": "2023-08-22T06:59:43.504471Z", - "iopub.status.idle": "2023-08-22T06:59:43.776972Z", - "shell.execute_reply": "2023-08-22T06:59:43.776638Z" - } + "execution": {} }, "outputs": [ { @@ -953,12 +858,7 @@ "execution_count": 20, "id": "0220f3af", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.778737Z", - "iopub.status.busy": "2023-08-22T06:59:43.778622Z", - "iopub.status.idle": "2023-08-22T06:59:43.780660Z", - "shell.execute_reply": "2023-08-22T06:59:43.780373Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -988,12 +888,7 @@ "execution_count": 21, "id": "62037dcb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.782304Z", - "iopub.status.busy": "2023-08-22T06:59:43.782178Z", - "iopub.status.idle": "2023-08-22T06:59:43.783926Z", - "shell.execute_reply": "2023-08-22T06:59:43.783681Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1021,12 +916,7 @@ "execution_count": 22, "id": "b8bdb7a4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.785584Z", - "iopub.status.busy": "2023-08-22T06:59:43.785479Z", - "iopub.status.idle": "2023-08-22T06:59:43.814180Z", - "shell.execute_reply": "2023-08-22T06:59:43.813871Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1072,12 +962,7 @@ "execution_count": 23, "id": "36808258", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:43.815884Z", - "iopub.status.busy": "2023-08-22T06:59:43.815750Z", - "iopub.status.idle": "2023-08-22T06:59:46.317022Z", - "shell.execute_reply": "2023-08-22T06:59:46.316748Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1122,12 +1007,7 @@ "execution_count": 24, "id": "c9aea297", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:46.318852Z", - "iopub.status.busy": "2023-08-22T06:59:46.318744Z", - "iopub.status.idle": "2023-08-22T06:59:46.401268Z", - "shell.execute_reply": "2023-08-22T06:59:46.400928Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1194,12 +1074,7 @@ "execution_count": 25, "id": "79c56529", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:46.403009Z", - "iopub.status.busy": "2023-08-22T06:59:46.402852Z", - "iopub.status.idle": "2023-08-22T06:59:50.039894Z", - "shell.execute_reply": "2023-08-22T06:59:50.039566Z" - } + "execution": {} }, "outputs": [ { @@ -1237,12 +1112,7 @@ "execution_count": 26, "id": "4d0b4edc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:50.041629Z", - "iopub.status.busy": "2023-08-22T06:59:50.041514Z", - "iopub.status.idle": "2023-08-22T06:59:50.052046Z", - "shell.execute_reply": "2023-08-22T06:59:50.051690Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch06-varselect-lab.ipynb b/Ch06-varselect-lab.ipynb index 94ddd1b..4bf0246 100644 --- a/Ch06-varselect-lab.ipynb +++ b/Ch06-varselect-lab.ipynb @@ -25,12 +25,7 @@ "execution_count": 1, "id": "638bdae9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:53.093245Z", - "iopub.status.busy": "2023-08-22T06:59:53.093143Z", - "iopub.status.idle": "2023-08-22T06:59:54.054493Z", - "shell.execute_reply": "2023-08-22T06:59:54.054110Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -60,12 +55,7 @@ "execution_count": 2, "id": "c4b3398b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:54.056594Z", - "iopub.status.busy": "2023-08-22T06:59:54.056412Z", - "iopub.status.idle": "2023-08-22T06:59:56.004484Z", - "shell.execute_reply": "2023-08-22T06:59:56.004082Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -124,12 +114,7 @@ "execution_count": 3, "id": "18d03122", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.006401Z", - "iopub.status.busy": "2023-08-22T06:59:56.006276Z", - "iopub.status.idle": "2023-08-22T06:59:56.013280Z", - "shell.execute_reply": "2023-08-22T06:59:56.012957Z" - } + "execution": {} }, "outputs": [ { @@ -163,12 +148,7 @@ "execution_count": 4, "id": "87a4ba00", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.014992Z", - "iopub.status.busy": "2023-08-22T06:59:56.014883Z", - "iopub.status.idle": "2023-08-22T06:59:56.017852Z", - "shell.execute_reply": "2023-08-22T06:59:56.017594Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -204,12 +184,7 @@ "execution_count": 5, "id": "97d6b69c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.019330Z", - "iopub.status.busy": "2023-08-22T06:59:56.019227Z", - "iopub.status.idle": "2023-08-22T06:59:56.021261Z", - "shell.execute_reply": "2023-08-22T06:59:56.020923Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -236,12 +211,7 @@ "execution_count": 6, "id": "2575e116", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.023126Z", - "iopub.status.busy": "2023-08-22T06:59:56.023002Z", - "iopub.status.idle": "2023-08-22T06:59:56.043909Z", - "shell.execute_reply": "2023-08-22T06:59:56.043598Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -264,12 +234,7 @@ "execution_count": 7, "id": "4cfae1c0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.046001Z", - "iopub.status.busy": "2023-08-22T06:59:56.045882Z", - "iopub.status.idle": "2023-08-22T06:59:56.047752Z", - "shell.execute_reply": "2023-08-22T06:59:56.047459Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -302,12 +267,7 @@ "execution_count": 8, "id": "98b62676", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.049394Z", - "iopub.status.busy": "2023-08-22T06:59:56.049284Z", - "iopub.status.idle": "2023-08-22T06:59:56.051180Z", - "shell.execute_reply": "2023-08-22T06:59:56.050841Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -333,12 +293,7 @@ "execution_count": 9, "id": "3d1bd25a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:56.053484Z", - "iopub.status.busy": "2023-08-22T06:59:56.053197Z", - "iopub.status.idle": "2023-08-22T06:59:57.116576Z", - "shell.execute_reply": "2023-08-22T06:59:57.116202Z" - } + "execution": {} }, "outputs": [ { @@ -390,12 +345,7 @@ "execution_count": 10, "id": "b25dfa6c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:57.118521Z", - "iopub.status.busy": "2023-08-22T06:59:57.118381Z", - "iopub.status.idle": "2023-08-22T06:59:57.757333Z", - "shell.execute_reply": "2023-08-22T06:59:57.756933Z" - } + "execution": {} }, "outputs": [ { @@ -456,12 +406,7 @@ "execution_count": 11, "id": "0ef3f82d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:57.759379Z", - "iopub.status.busy": "2023-08-22T06:59:57.759234Z", - "iopub.status.idle": "2023-08-22T06:59:57.761149Z", - "shell.execute_reply": "2023-08-22T06:59:57.760820Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -484,12 +429,7 @@ "execution_count": 12, "id": "d4a8cf16", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:57.762826Z", - "iopub.status.busy": "2023-08-22T06:59:57.762724Z", - "iopub.status.idle": "2023-08-22T06:59:58.384792Z", - "shell.execute_reply": "2023-08-22T06:59:58.384441Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -529,12 +469,7 @@ "execution_count": 13, "id": "ce40a9ba", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:58.386657Z", - "iopub.status.busy": "2023-08-22T06:59:58.386521Z", - "iopub.status.idle": "2023-08-22T06:59:58.504180Z", - "shell.execute_reply": "2023-08-22T06:59:58.503223Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -598,12 +533,7 @@ "execution_count": 14, "id": "c7416ff6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:59:58.509147Z", - "iopub.status.busy": "2023-08-22T06:59:58.508897Z", - "iopub.status.idle": "2023-08-22T07:00:01.677521Z", - "shell.execute_reply": "2023-08-22T07:00:01.677198Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -652,12 +582,7 @@ "execution_count": 15, "id": "a2ae089b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:01.679228Z", - "iopub.status.busy": "2023-08-22T07:00:01.679111Z", - "iopub.status.idle": "2023-08-22T07:00:01.681995Z", - "shell.execute_reply": "2023-08-22T07:00:01.681709Z" - } + "execution": {} }, "outputs": [ { @@ -694,12 +619,7 @@ "execution_count": 16, "id": "1681a9db", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:01.683590Z", - "iopub.status.busy": "2023-08-22T07:00:01.683477Z", - "iopub.status.idle": "2023-08-22T07:00:01.759136Z", - "shell.execute_reply": "2023-08-22T07:00:01.758804Z" - } + "execution": {} }, "outputs": [ { @@ -740,12 +660,7 @@ "execution_count": 17, "id": "5764b0ba", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:01.760831Z", - "iopub.status.busy": "2023-08-22T07:00:01.760716Z", - "iopub.status.idle": "2023-08-22T07:00:02.384829Z", - "shell.execute_reply": "2023-08-22T07:00:02.384507Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -774,12 +689,7 @@ "execution_count": 18, "id": "d76f3d3a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:02.387276Z", - "iopub.status.busy": "2023-08-22T07:00:02.386879Z", - "iopub.status.idle": "2023-08-22T07:00:02.468255Z", - "shell.execute_reply": "2023-08-22T07:00:02.467684Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -827,12 +737,7 @@ "execution_count": 19, "id": "ed25c2d4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:02.470331Z", - "iopub.status.busy": "2023-08-22T07:00:02.470178Z", - "iopub.status.idle": "2023-08-22T07:00:02.491378Z", - "shell.execute_reply": "2023-08-22T07:00:02.491048Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -856,12 +761,7 @@ "execution_count": 20, "id": "31e99e02", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:02.493549Z", - "iopub.status.busy": "2023-08-22T07:00:02.493371Z", - "iopub.status.idle": "2023-08-22T07:00:07.838494Z", - "shell.execute_reply": "2023-08-22T07:00:07.838064Z" - } + "execution": {} }, "outputs": [ { @@ -911,12 +811,7 @@ "execution_count": 21, "id": "214d0f23", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:07.840443Z", - "iopub.status.busy": "2023-08-22T07:00:07.840298Z", - "iopub.status.idle": "2023-08-22T07:00:07.842812Z", - "shell.execute_reply": "2023-08-22T07:00:07.842557Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -976,12 +871,7 @@ "execution_count": 22, "id": "ca7469fb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:07.844529Z", - "iopub.status.busy": "2023-08-22T07:00:07.844419Z", - "iopub.status.idle": "2023-08-22T07:00:07.900374Z", - "shell.execute_reply": "2023-08-22T07:00:07.899998Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1443,12 +1333,7 @@ "execution_count": 23, "id": "a5b4b3a7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:07.902654Z", - "iopub.status.busy": "2023-08-22T07:00:07.902513Z", - "iopub.status.idle": "2023-08-22T07:00:07.912659Z", - "shell.execute_reply": "2023-08-22T07:00:07.912286Z" - } + "execution": {} }, "outputs": [ { @@ -1865,12 +1750,7 @@ "execution_count": 24, "id": "ffdcd0c6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:07.914460Z", - "iopub.status.busy": "2023-08-22T07:00:07.914335Z", - "iopub.status.idle": "2023-08-22T07:00:08.105311Z", - "shell.execute_reply": "2023-08-22T07:00:08.104857Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1910,12 +1790,7 @@ "execution_count": 25, "id": "e60d63d3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.107307Z", - "iopub.status.busy": "2023-08-22T07:00:08.107179Z", - "iopub.status.idle": "2023-08-22T07:00:08.110477Z", - "shell.execute_reply": "2023-08-22T07:00:08.110049Z" - } + "execution": {} }, "outputs": [ { @@ -1967,12 +1842,7 @@ "execution_count": 26, "id": "a2253f89", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.112116Z", - "iopub.status.busy": "2023-08-22T07:00:08.112018Z", - "iopub.status.idle": "2023-08-22T07:00:08.114728Z", - "shell.execute_reply": "2023-08-22T07:00:08.114379Z" - } + "execution": {} }, "outputs": [ { @@ -2005,12 +1875,7 @@ "execution_count": 27, "id": "aa10fcf4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.116886Z", - "iopub.status.busy": "2023-08-22T07:00:08.116732Z", - "iopub.status.idle": "2023-08-22T07:00:08.119361Z", - "shell.execute_reply": "2023-08-22T07:00:08.119014Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2046,12 +1911,7 @@ "execution_count": 28, "id": "f5bc4121", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.121086Z", - "iopub.status.busy": "2023-08-22T07:00:08.120969Z", - "iopub.status.idle": "2023-08-22T07:00:08.133376Z", - "shell.execute_reply": "2023-08-22T07:00:08.133011Z" - } + "execution": {} }, "outputs": [ { @@ -2099,12 +1959,7 @@ "execution_count": 29, "id": "e4018437", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.135390Z", - "iopub.status.busy": "2023-08-22T07:00:08.135249Z", - "iopub.status.idle": "2023-08-22T07:00:08.138028Z", - "shell.execute_reply": "2023-08-22T07:00:08.137669Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2146,12 +2001,7 @@ "execution_count": 30, "id": "aaa73183", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.140104Z", - "iopub.status.busy": "2023-08-22T07:00:08.139927Z", - "iopub.status.idle": "2023-08-22T07:00:08.147255Z", - "shell.execute_reply": "2023-08-22T07:00:08.146900Z" - } + "execution": {} }, "outputs": [ { @@ -2204,12 +2054,7 @@ "execution_count": 31, "id": "8f95689e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.149814Z", - "iopub.status.busy": "2023-08-22T07:00:08.149544Z", - "iopub.status.idle": "2023-08-22T07:00:08.157631Z", - "shell.execute_reply": "2023-08-22T07:00:08.157328Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2261,12 +2106,7 @@ "execution_count": 32, "id": "725a3200", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.159712Z", - "iopub.status.busy": "2023-08-22T07:00:08.159508Z", - "iopub.status.idle": "2023-08-22T07:00:08.559312Z", - "shell.execute_reply": "2023-08-22T07:00:08.558977Z" - } + "execution": {} }, "outputs": [ { @@ -2518,12 +2358,7 @@ "execution_count": 33, "id": "823982cc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:08.561312Z", - "iopub.status.busy": "2023-08-22T07:00:08.561182Z", - "iopub.status.idle": "2023-08-22T07:00:11.194918Z", - "shell.execute_reply": "2023-08-22T07:00:11.194585Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3576,12 +3411,7 @@ "execution_count": 34, "id": "b1b7d3b4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:11.196745Z", - "iopub.status.busy": "2023-08-22T07:00:11.196604Z", - "iopub.status.idle": "2023-08-22T07:00:11.287223Z", - "shell.execute_reply": "2023-08-22T07:00:11.286902Z" - } + "execution": {} }, "outputs": [ { @@ -3620,12 +3450,7 @@ "execution_count": 35, "id": "59a69421", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:11.289077Z", - "iopub.status.busy": "2023-08-22T07:00:11.288949Z", - "iopub.status.idle": "2023-08-22T07:00:13.927873Z", - "shell.execute_reply": "2023-08-22T07:00:13.927443Z" - } + "execution": {} }, "outputs": [ { @@ -4710,12 +4535,7 @@ "execution_count": 36, "id": "572b14c3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:13.930022Z", - "iopub.status.busy": "2023-08-22T07:00:13.929865Z", - "iopub.status.idle": "2023-08-22T07:00:14.018201Z", - "shell.execute_reply": "2023-08-22T07:00:14.017805Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -4759,12 +4579,7 @@ "execution_count": 37, "id": "a6129b36", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.020355Z", - "iopub.status.busy": "2023-08-22T07:00:14.020186Z", - "iopub.status.idle": "2023-08-22T07:00:14.305398Z", - "shell.execute_reply": "2023-08-22T07:00:14.305076Z" - } + "execution": {} }, "outputs": [ { @@ -6862,12 +6677,7 @@ "execution_count": 38, "id": "3683157f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.307687Z", - "iopub.status.busy": "2023-08-22T07:00:14.307502Z", - "iopub.status.idle": "2023-08-22T07:00:14.399739Z", - "shell.execute_reply": "2023-08-22T07:00:14.399295Z" - } + "execution": {} }, "outputs": [ { @@ -6909,12 +6719,7 @@ "execution_count": 39, "id": "1d504d1b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.401869Z", - "iopub.status.busy": "2023-08-22T07:00:14.401710Z", - "iopub.status.idle": "2023-08-22T07:00:14.404500Z", - "shell.execute_reply": "2023-08-22T07:00:14.404205Z" - } + "execution": {} }, "outputs": [ { @@ -6948,12 +6753,7 @@ "execution_count": 40, "id": "8503f6ed", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.406204Z", - "iopub.status.busy": "2023-08-22T07:00:14.406092Z", - "iopub.status.idle": "2023-08-22T07:00:14.408483Z", - "shell.execute_reply": "2023-08-22T07:00:14.408172Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7013,12 +6813,7 @@ "execution_count": 41, "id": "47ab71ff", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.410278Z", - "iopub.status.busy": "2023-08-22T07:00:14.410146Z", - "iopub.status.idle": "2023-08-22T07:00:14.412596Z", - "shell.execute_reply": "2023-08-22T07:00:14.412250Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7040,12 +6835,7 @@ "execution_count": 42, "id": "825b7073", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.414295Z", - "iopub.status.busy": "2023-08-22T07:00:14.414146Z", - "iopub.status.idle": "2023-08-22T07:00:14.676526Z", - "shell.execute_reply": "2023-08-22T07:00:14.676174Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -9106,12 +8896,7 @@ "execution_count": 43, "id": "efb2d25e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.678953Z", - "iopub.status.busy": "2023-08-22T07:00:14.678802Z", - "iopub.status.idle": "2023-08-22T07:00:14.728316Z", - "shell.execute_reply": "2023-08-22T07:00:14.727946Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -9142,12 +8927,7 @@ "execution_count": 44, "id": "5d2977a4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.730133Z", - "iopub.status.busy": "2023-08-22T07:00:14.730000Z", - "iopub.status.idle": "2023-08-22T07:00:14.740248Z", - "shell.execute_reply": "2023-08-22T07:00:14.739889Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -9176,12 +8956,7 @@ "execution_count": 45, "id": "0d833201", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.742261Z", - "iopub.status.busy": "2023-08-22T07:00:14.742118Z", - "iopub.status.idle": "2023-08-22T07:00:14.896514Z", - "shell.execute_reply": "2023-08-22T07:00:14.896137Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -9219,12 +8994,7 @@ "execution_count": 46, "id": "bfbf2fe3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.898477Z", - "iopub.status.busy": "2023-08-22T07:00:14.898358Z", - "iopub.status.idle": "2023-08-22T07:00:14.900774Z", - "shell.execute_reply": "2023-08-22T07:00:14.900366Z" - } + "execution": {} }, "outputs": [ { @@ -9255,12 +9025,7 @@ "execution_count": 47, "id": "ccb9a209", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.902539Z", - "iopub.status.busy": "2023-08-22T07:00:14.902374Z", - "iopub.status.idle": "2023-08-22T07:00:14.997062Z", - "shell.execute_reply": "2023-08-22T07:00:14.996746Z" - } + "execution": {} }, "outputs": [ { @@ -9302,12 +9067,7 @@ "execution_count": 48, "id": "40eff15b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:14.998878Z", - "iopub.status.busy": "2023-08-22T07:00:14.998760Z", - "iopub.status.idle": "2023-08-22T07:00:15.001284Z", - "shell.execute_reply": "2023-08-22T07:00:15.000943Z" - } + "execution": {} }, "outputs": [ { @@ -9372,12 +9132,7 @@ "execution_count": 49, "id": "2bd0cc9c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.003376Z", - "iopub.status.busy": "2023-08-22T07:00:15.003216Z", - "iopub.status.idle": "2023-08-22T07:00:15.007328Z", - "shell.execute_reply": "2023-08-22T07:00:15.007008Z" - } + "execution": {} }, "outputs": [ { @@ -9416,12 +9171,7 @@ "execution_count": 50, "id": "f188c54a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.008975Z", - "iopub.status.busy": "2023-08-22T07:00:15.008880Z", - "iopub.status.idle": "2023-08-22T07:00:15.012449Z", - "shell.execute_reply": "2023-08-22T07:00:15.012179Z" - } + "execution": {} }, "outputs": [ { @@ -9459,12 +9209,7 @@ "execution_count": 51, "id": "8be53659", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.014465Z", - "iopub.status.busy": "2023-08-22T07:00:15.014315Z", - "iopub.status.idle": "2023-08-22T07:00:15.127942Z", - "shell.execute_reply": "2023-08-22T07:00:15.127535Z" - } + "execution": {} }, "outputs": [ { @@ -9519,12 +9264,7 @@ "execution_count": 52, "id": "b6c30e1c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.129800Z", - "iopub.status.busy": "2023-08-22T07:00:15.129659Z", - "iopub.status.idle": "2023-08-22T07:00:15.218853Z", - "shell.execute_reply": "2023-08-22T07:00:15.218439Z" - } + "execution": {} }, "outputs": [ { @@ -9574,12 +9314,7 @@ "execution_count": 53, "id": "6fedf71f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.220829Z", - "iopub.status.busy": "2023-08-22T07:00:15.220699Z", - "iopub.status.idle": "2023-08-22T07:00:15.226460Z", - "shell.execute_reply": "2023-08-22T07:00:15.226111Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -9620,12 +9355,7 @@ "execution_count": 54, "id": "f78e9153", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.228509Z", - "iopub.status.busy": "2023-08-22T07:00:15.228362Z", - "iopub.status.idle": "2023-08-22T07:00:15.230933Z", - "shell.execute_reply": "2023-08-22T07:00:15.230633Z" - } + "execution": {} }, "outputs": [ { @@ -9675,12 +9405,7 @@ "execution_count": 55, "id": "31120c88", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.232659Z", - "iopub.status.busy": "2023-08-22T07:00:15.232549Z", - "iopub.status.idle": "2023-08-22T07:00:15.235970Z", - "shell.execute_reply": "2023-08-22T07:00:15.235650Z" - } + "execution": {} }, "outputs": [ { @@ -9717,12 +9442,7 @@ "execution_count": 56, "id": "fc6b3a12", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.237863Z", - "iopub.status.busy": "2023-08-22T07:00:15.237759Z", - "iopub.status.idle": "2023-08-22T07:00:15.333920Z", - "shell.execute_reply": "2023-08-22T07:00:15.333623Z" - } + "execution": {} }, "outputs": [ { @@ -9770,12 +9490,7 @@ "execution_count": 57, "id": "b806f0e8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:15.335731Z", - "iopub.status.busy": "2023-08-22T07:00:15.335610Z", - "iopub.status.idle": "2023-08-22T07:00:15.425776Z", - "shell.execute_reply": "2023-08-22T07:00:15.425408Z" - } + "execution": {} }, "outputs": [ { diff --git a/Ch07-nonlin-lab.ipynb b/Ch07-nonlin-lab.ipynb index 347036d..397b203 100644 --- a/Ch07-nonlin-lab.ipynb +++ b/Ch07-nonlin-lab.ipynb @@ -20,12 +20,7 @@ "execution_count": 1, "id": "f0d9a8c8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:19.101721Z", - "iopub.status.busy": "2023-08-22T07:00:19.101624Z", - "iopub.status.idle": "2023-08-22T07:00:20.128515Z", - "shell.execute_reply": "2023-08-22T07:00:20.128166Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -54,12 +49,7 @@ "execution_count": 2, "id": "c4bc71b4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.130689Z", - "iopub.status.busy": "2023-08-22T07:00:20.130382Z", - "iopub.status.idle": "2023-08-22T07:00:20.144261Z", - "shell.execute_reply": "2023-08-22T07:00:20.143915Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -93,12 +83,7 @@ "execution_count": 3, "id": "14649fd7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.146307Z", - "iopub.status.busy": "2023-08-22T07:00:20.146145Z", - "iopub.status.idle": "2023-08-22T07:00:20.154062Z", - "shell.execute_reply": "2023-08-22T07:00:20.153676Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -123,12 +108,7 @@ "execution_count": 4, "id": "bca84aa3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.155897Z", - "iopub.status.busy": "2023-08-22T07:00:20.155777Z", - "iopub.status.idle": "2023-08-22T07:00:20.258666Z", - "shell.execute_reply": "2023-08-22T07:00:20.253837Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -258,12 +238,7 @@ "execution_count": 5, "id": "411af5ab", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.267608Z", - "iopub.status.busy": "2023-08-22T07:00:20.265087Z", - "iopub.status.idle": "2023-08-22T07:00:20.272250Z", - "shell.execute_reply": "2023-08-22T07:00:20.271081Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -293,12 +268,7 @@ "execution_count": 6, "id": "0eb6317c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.278663Z", - "iopub.status.busy": "2023-08-22T07:00:20.278281Z", - "iopub.status.idle": "2023-08-22T07:00:20.286475Z", - "shell.execute_reply": "2023-08-22T07:00:20.285277Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -350,12 +320,7 @@ "execution_count": 7, "id": "714f2c6d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.291120Z", - "iopub.status.busy": "2023-08-22T07:00:20.289650Z", - "iopub.status.idle": "2023-08-22T07:00:20.490780Z", - "shell.execute_reply": "2023-08-22T07:00:20.489475Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -419,12 +384,7 @@ "execution_count": 8, "id": "0f5f60ed", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.501016Z", - "iopub.status.busy": "2023-08-22T07:00:20.500451Z", - "iopub.status.idle": "2023-08-22T07:00:20.542279Z", - "shell.execute_reply": "2023-08-22T07:00:20.541055Z" - } + "execution": {} }, "outputs": [ { @@ -559,12 +519,7 @@ "execution_count": 9, "id": "3ca7417d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.547883Z", - "iopub.status.busy": "2023-08-22T07:00:20.546804Z", - "iopub.status.idle": "2023-08-22T07:00:20.558851Z", - "shell.execute_reply": "2023-08-22T07:00:20.557712Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -668,12 +623,7 @@ "execution_count": 10, "id": "caadfcc3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.563550Z", - "iopub.status.busy": "2023-08-22T07:00:20.562723Z", - "iopub.status.idle": "2023-08-22T07:00:20.568989Z", - "shell.execute_reply": "2023-08-22T07:00:20.568096Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -709,12 +659,7 @@ "execution_count": 11, "id": "92de2600", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.574149Z", - "iopub.status.busy": "2023-08-22T07:00:20.573276Z", - "iopub.status.idle": "2023-08-22T07:00:20.605121Z", - "shell.execute_reply": "2023-08-22T07:00:20.604136Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -819,12 +764,7 @@ "execution_count": 12, "id": "a4452162", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.609844Z", - "iopub.status.busy": "2023-08-22T07:00:20.609519Z", - "iopub.status.idle": "2023-08-22T07:00:20.635472Z", - "shell.execute_reply": "2023-08-22T07:00:20.634538Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -932,12 +872,7 @@ "execution_count": 13, "id": "5b317cb2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.644474Z", - "iopub.status.busy": "2023-08-22T07:00:20.644125Z", - "iopub.status.idle": "2023-08-22T07:00:20.652869Z", - "shell.execute_reply": "2023-08-22T07:00:20.652118Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -959,12 +894,7 @@ "execution_count": 14, "id": "ba682884", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.659807Z", - "iopub.status.busy": "2023-08-22T07:00:20.659436Z", - "iopub.status.idle": "2023-08-22T07:00:20.794764Z", - "shell.execute_reply": "2023-08-22T07:00:20.793804Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1024,12 +954,7 @@ "execution_count": 15, "id": "84c211b3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.802014Z", - "iopub.status.busy": "2023-08-22T07:00:20.801524Z", - "iopub.status.idle": "2023-08-22T07:00:20.820547Z", - "shell.execute_reply": "2023-08-22T07:00:20.819213Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1153,12 +1078,7 @@ "execution_count": 16, "id": "60466a94", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.827052Z", - "iopub.status.busy": "2023-08-22T07:00:20.826622Z", - "iopub.status.idle": "2023-08-22T07:00:20.840226Z", - "shell.execute_reply": "2023-08-22T07:00:20.838401Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1196,12 +1116,7 @@ "execution_count": 17, "id": "ff6d9fcb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.847470Z", - "iopub.status.busy": "2023-08-22T07:00:20.846698Z", - "iopub.status.idle": "2023-08-22T07:00:20.876785Z", - "shell.execute_reply": "2023-08-22T07:00:20.874921Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1322,12 +1237,7 @@ "execution_count": 18, "id": "2a206718", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.884203Z", - "iopub.status.busy": "2023-08-22T07:00:20.883987Z", - "iopub.status.idle": "2023-08-22T07:00:20.912686Z", - "shell.execute_reply": "2023-08-22T07:00:20.910961Z" - } + "execution": {} }, "outputs": [ { @@ -1458,12 +1368,7 @@ "execution_count": 19, "id": "766241f2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.920607Z", - "iopub.status.busy": "2023-08-22T07:00:20.918963Z", - "iopub.status.idle": "2023-08-22T07:00:20.929300Z", - "shell.execute_reply": "2023-08-22T07:00:20.928186Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1503,12 +1408,7 @@ "execution_count": 20, "id": "71b3ac84", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.943822Z", - "iopub.status.busy": "2023-08-22T07:00:20.943014Z", - "iopub.status.idle": "2023-08-22T07:00:20.968025Z", - "shell.execute_reply": "2023-08-22T07:00:20.966003Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1637,12 +1537,7 @@ "execution_count": 21, "id": "eb35ef98", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:20.975032Z", - "iopub.status.busy": "2023-08-22T07:00:20.974773Z", - "iopub.status.idle": "2023-08-22T07:00:21.001621Z", - "shell.execute_reply": "2023-08-22T07:00:20.999410Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1754,12 +1649,7 @@ "execution_count": 22, "id": "78b393fe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.009111Z", - "iopub.status.busy": "2023-08-22T07:00:21.008401Z", - "iopub.status.idle": "2023-08-22T07:00:21.127979Z", - "shell.execute_reply": "2023-08-22T07:00:21.126680Z" - } + "execution": {} }, "outputs": [ { @@ -1802,12 +1692,7 @@ "execution_count": 23, "id": "cb014cc6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.135155Z", - "iopub.status.busy": "2023-08-22T07:00:21.134355Z", - "iopub.status.idle": "2023-08-22T07:00:21.153025Z", - "shell.execute_reply": "2023-08-22T07:00:21.152246Z" - } + "execution": {} }, "outputs": [ { @@ -1848,12 +1733,7 @@ "execution_count": 24, "id": "106dc178", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.159707Z", - "iopub.status.busy": "2023-08-22T07:00:21.159506Z", - "iopub.status.idle": "2023-08-22T07:00:21.446559Z", - "shell.execute_reply": "2023-08-22T07:00:21.445625Z" - } + "execution": {} }, "outputs": [ { @@ -1894,12 +1774,7 @@ "execution_count": 25, "id": "d0334df0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.454580Z", - "iopub.status.busy": "2023-08-22T07:00:21.453805Z", - "iopub.status.idle": "2023-08-22T07:00:21.741596Z", - "shell.execute_reply": "2023-08-22T07:00:21.740381Z" - } + "execution": {} }, "outputs": [ { @@ -1949,12 +1824,7 @@ "execution_count": 26, "id": "e00ec554", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.748135Z", - "iopub.status.busy": "2023-08-22T07:00:21.747093Z", - "iopub.status.idle": "2023-08-22T07:00:21.771304Z", - "shell.execute_reply": "2023-08-22T07:00:21.768895Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1991,12 +1861,7 @@ "execution_count": 27, "id": "28e301a2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:21.776636Z", - "iopub.status.busy": "2023-08-22T07:00:21.775975Z", - "iopub.status.idle": "2023-08-22T07:00:22.088656Z", - "shell.execute_reply": "2023-08-22T07:00:22.087101Z" - } + "execution": {} }, "outputs": [ { @@ -2053,12 +1918,7 @@ "execution_count": 28, "id": "7988af75", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.093999Z", - "iopub.status.busy": "2023-08-22T07:00:22.092990Z", - "iopub.status.idle": "2023-08-22T07:00:22.104732Z", - "shell.execute_reply": "2023-08-22T07:00:22.103894Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -2092,12 +1952,7 @@ "execution_count": 29, "id": "1a4803f3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.111630Z", - "iopub.status.busy": "2023-08-22T07:00:22.109538Z", - "iopub.status.idle": "2023-08-22T07:00:22.238185Z", - "shell.execute_reply": "2023-08-22T07:00:22.237011Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2155,12 +2010,7 @@ "execution_count": 30, "id": "dc655431", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.242955Z", - "iopub.status.busy": "2023-08-22T07:00:22.242470Z", - "iopub.status.idle": "2023-08-22T07:00:22.377106Z", - "shell.execute_reply": "2023-08-22T07:00:22.375348Z" - } + "execution": {} }, "outputs": [ { @@ -2216,12 +2066,7 @@ "execution_count": 31, "id": "90ea4ff0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.382764Z", - "iopub.status.busy": "2023-08-22T07:00:22.381824Z", - "iopub.status.idle": "2023-08-22T07:00:22.403585Z", - "shell.execute_reply": "2023-08-22T07:00:22.401813Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -2253,12 +2098,7 @@ "execution_count": 32, "id": "104bc542", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.408939Z", - "iopub.status.busy": "2023-08-22T07:00:22.408540Z", - "iopub.status.idle": "2023-08-22T07:00:22.524209Z", - "shell.execute_reply": "2023-08-22T07:00:22.522972Z" - } + "execution": {} }, "outputs": [ { @@ -2296,12 +2136,7 @@ "execution_count": 33, "id": "d5884f39", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.529074Z", - "iopub.status.busy": "2023-08-22T07:00:22.528274Z", - "iopub.status.idle": "2023-08-22T07:00:22.562860Z", - "shell.execute_reply": "2023-08-22T07:00:22.561973Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -2329,12 +2164,7 @@ "execution_count": 34, "id": "9155767c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.569210Z", - "iopub.status.busy": "2023-08-22T07:00:22.568849Z", - "iopub.status.idle": "2023-08-22T07:00:22.677881Z", - "shell.execute_reply": "2023-08-22T07:00:22.676932Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2382,12 +2212,7 @@ "execution_count": 35, "id": "048524d1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.685366Z", - "iopub.status.busy": "2023-08-22T07:00:22.684753Z", - "iopub.status.idle": "2023-08-22T07:00:22.790525Z", - "shell.execute_reply": "2023-08-22T07:00:22.789666Z" - } + "execution": {} }, "outputs": [ { @@ -2429,12 +2254,7 @@ "execution_count": 36, "id": "3d632d24", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.797262Z", - "iopub.status.busy": "2023-08-22T07:00:22.796333Z", - "iopub.status.idle": "2023-08-22T07:00:22.839603Z", - "shell.execute_reply": "2023-08-22T07:00:22.837625Z" - } + "execution": {} }, "outputs": [ { @@ -2476,12 +2296,7 @@ "execution_count": 37, "id": "f5e21a13", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.850660Z", - "iopub.status.busy": "2023-08-22T07:00:22.849974Z", - "iopub.status.idle": "2023-08-22T07:00:22.858653Z", - "shell.execute_reply": "2023-08-22T07:00:22.857543Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2583,12 +2398,7 @@ "execution_count": 38, "id": "6bc84bd9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.866946Z", - "iopub.status.busy": "2023-08-22T07:00:22.866205Z", - "iopub.status.idle": "2023-08-22T07:00:22.902537Z", - "shell.execute_reply": "2023-08-22T07:00:22.901746Z" - } + "execution": {} }, "outputs": [ { @@ -2693,12 +2503,7 @@ "execution_count": 39, "id": "dd9e0491", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.910365Z", - "iopub.status.busy": "2023-08-22T07:00:22.909672Z", - "iopub.status.idle": "2023-08-22T07:00:22.916982Z", - "shell.execute_reply": "2023-08-22T07:00:22.915954Z" - } + "execution": {} }, "outputs": [ { @@ -2766,12 +2571,7 @@ "execution_count": 40, "id": "cb3cb4ef", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.924618Z", - "iopub.status.busy": "2023-08-22T07:00:22.924291Z", - "iopub.status.idle": "2023-08-22T07:00:22.938562Z", - "shell.execute_reply": "2023-08-22T07:00:22.937364Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2792,12 +2592,7 @@ "execution_count": 41, "id": "583711cb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:22.946138Z", - "iopub.status.busy": "2023-08-22T07:00:22.945678Z", - "iopub.status.idle": "2023-08-22T07:00:23.056404Z", - "shell.execute_reply": "2023-08-22T07:00:23.054342Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2826,12 +2621,7 @@ "execution_count": 42, "id": "259d273b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.062645Z", - "iopub.status.busy": "2023-08-22T07:00:23.062312Z", - "iopub.status.idle": "2023-08-22T07:00:23.191981Z", - "shell.execute_reply": "2023-08-22T07:00:23.190477Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2870,12 +2660,7 @@ "execution_count": 43, "id": "71dde739", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.199542Z", - "iopub.status.busy": "2023-08-22T07:00:23.199201Z", - "iopub.status.idle": "2023-08-22T07:00:23.217281Z", - "shell.execute_reply": "2023-08-22T07:00:23.216211Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2979,12 +2764,7 @@ "execution_count": 44, "id": "126b4433", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.225140Z", - "iopub.status.busy": "2023-08-22T07:00:23.224675Z", - "iopub.status.idle": "2023-08-22T07:00:23.231622Z", - "shell.execute_reply": "2023-08-22T07:00:23.230728Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3013,12 +2793,7 @@ "execution_count": 45, "id": "71357343", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.238285Z", - "iopub.status.busy": "2023-08-22T07:00:23.237444Z", - "iopub.status.idle": "2023-08-22T07:00:23.300732Z", - "shell.execute_reply": "2023-08-22T07:00:23.299079Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3056,12 +2831,7 @@ "execution_count": 46, "id": "568fe30f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.308132Z", - "iopub.status.busy": "2023-08-22T07:00:23.307471Z", - "iopub.status.idle": "2023-08-22T07:00:23.412833Z", - "shell.execute_reply": "2023-08-22T07:00:23.411958Z" - } + "execution": {} }, "outputs": [ { @@ -3090,12 +2860,7 @@ "execution_count": 47, "id": "56f3acef", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.419875Z", - "iopub.status.busy": "2023-08-22T07:00:23.419189Z", - "iopub.status.idle": "2023-08-22T07:00:23.528901Z", - "shell.execute_reply": "2023-08-22T07:00:23.527531Z" - } + "execution": {} }, "outputs": [ { @@ -3123,12 +2888,7 @@ "execution_count": 48, "id": "74d23615", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.533975Z", - "iopub.status.busy": "2023-08-22T07:00:23.533655Z", - "iopub.status.idle": "2023-08-22T07:00:23.643883Z", - "shell.execute_reply": "2023-08-22T07:00:23.643400Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3171,12 +2931,7 @@ "execution_count": 49, "id": "5a0046bf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:23.646013Z", - "iopub.status.busy": "2023-08-22T07:00:23.645883Z", - "iopub.status.idle": "2023-08-22T07:00:23.774046Z", - "shell.execute_reply": "2023-08-22T07:00:23.773509Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch08-baggboost-lab.ipynb b/Ch08-baggboost-lab.ipynb index b378a78..bb098cf 100644 --- a/Ch08-baggboost-lab.ipynb +++ b/Ch08-baggboost-lab.ipynb @@ -25,12 +25,7 @@ "execution_count": 1, "id": "5061d7d5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:27.086529Z", - "iopub.status.busy": "2023-08-22T07:00:27.086444Z", - "iopub.status.idle": "2023-08-22T07:00:28.125805Z", - "shell.execute_reply": "2023-08-22T07:00:28.125477Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -57,12 +52,7 @@ "execution_count": 2, "id": "747b056a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.127941Z", - "iopub.status.busy": "2023-08-22T07:00:28.127762Z", - "iopub.status.idle": "2023-08-22T07:00:28.677332Z", - "shell.execute_reply": "2023-08-22T07:00:28.676967Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -105,12 +95,7 @@ "execution_count": 3, "id": "a29167fd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.679410Z", - "iopub.status.busy": "2023-08-22T07:00:28.679295Z", - "iopub.status.idle": "2023-08-22T07:00:28.684543Z", - "shell.execute_reply": "2023-08-22T07:00:28.684233Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -136,12 +121,7 @@ "execution_count": 4, "id": "9fc6c8b9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.686277Z", - "iopub.status.busy": "2023-08-22T07:00:28.686146Z", - "iopub.status.idle": "2023-08-22T07:00:28.699975Z", - "shell.execute_reply": "2023-08-22T07:00:28.699627Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -171,12 +151,7 @@ "execution_count": 5, "id": "533f0949", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.702236Z", - "iopub.status.busy": "2023-08-22T07:00:28.702106Z", - "iopub.status.idle": "2023-08-22T07:00:28.707600Z", - "shell.execute_reply": "2023-08-22T07:00:28.707288Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -223,12 +198,7 @@ "execution_count": 6, "id": "c4a8718e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.709124Z", - "iopub.status.busy": "2023-08-22T07:00:28.709024Z", - "iopub.status.idle": "2023-08-22T07:00:28.711727Z", - "shell.execute_reply": "2023-08-22T07:00:28.711484Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -270,12 +240,7 @@ "execution_count": 7, "id": "2fe92cb1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.713483Z", - "iopub.status.busy": "2023-08-22T07:00:28.713358Z", - "iopub.status.idle": "2023-08-22T07:00:28.716712Z", - "shell.execute_reply": "2023-08-22T07:00:28.716377Z" - } + "execution": {} }, "outputs": [ { @@ -313,12 +278,7 @@ "execution_count": 8, "id": "823745dc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.718214Z", - "iopub.status.busy": "2023-08-22T07:00:28.718128Z", - "iopub.status.idle": "2023-08-22T07:00:28.972065Z", - "shell.execute_reply": "2023-08-22T07:00:28.971661Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -361,12 +321,7 @@ "execution_count": 9, "id": "38ec5f13", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.974012Z", - "iopub.status.busy": "2023-08-22T07:00:28.973872Z", - "iopub.status.idle": "2023-08-22T07:00:28.976664Z", - "shell.execute_reply": "2023-08-22T07:00:28.976277Z" - } + "execution": {} }, "outputs": [ { @@ -426,12 +381,7 @@ "execution_count": 10, "id": "3959f39a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.978468Z", - "iopub.status.busy": "2023-08-22T07:00:28.978343Z", - "iopub.status.idle": "2023-08-22T07:00:28.984086Z", - "shell.execute_reply": "2023-08-22T07:00:28.983816Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -482,12 +432,7 @@ "execution_count": 11, "id": "201c4690", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.986102Z", - "iopub.status.busy": "2023-08-22T07:00:28.985936Z", - "iopub.status.idle": "2023-08-22T07:00:28.988314Z", - "shell.execute_reply": "2023-08-22T07:00:28.988003Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -515,12 +460,7 @@ "execution_count": 12, "id": "a8dc5c3a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.990208Z", - "iopub.status.busy": "2023-08-22T07:00:28.990083Z", - "iopub.status.idle": "2023-08-22T07:00:28.994160Z", - "shell.execute_reply": "2023-08-22T07:00:28.993813Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -555,12 +495,7 @@ "execution_count": 13, "id": "0cbe0d28", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:28.996199Z", - "iopub.status.busy": "2023-08-22T07:00:28.996086Z", - "iopub.status.idle": "2023-08-22T07:00:28.999517Z", - "shell.execute_reply": "2023-08-22T07:00:28.999166Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -585,12 +520,7 @@ "execution_count": 14, "id": "ea649080", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.001372Z", - "iopub.status.busy": "2023-08-22T07:00:29.001246Z", - "iopub.status.idle": "2023-08-22T07:00:29.236635Z", - "shell.execute_reply": "2023-08-22T07:00:29.236312Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -628,12 +558,7 @@ "execution_count": 15, "id": "e005da14", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.238455Z", - "iopub.status.busy": "2023-08-22T07:00:29.238325Z", - "iopub.status.idle": "2023-08-22T07:00:29.937364Z", - "shell.execute_reply": "2023-08-22T07:00:29.937016Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -670,12 +595,7 @@ "execution_count": 16, "id": "23324f7e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.939343Z", - "iopub.status.busy": "2023-08-22T07:00:29.939187Z", - "iopub.status.idle": "2023-08-22T07:00:29.942069Z", - "shell.execute_reply": "2023-08-22T07:00:29.941716Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -710,12 +630,7 @@ "execution_count": 17, "id": "6dcd8b37", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.943944Z", - "iopub.status.busy": "2023-08-22T07:00:29.943797Z", - "iopub.status.idle": "2023-08-22T07:00:29.951177Z", - "shell.execute_reply": "2023-08-22T07:00:29.950818Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -816,12 +731,7 @@ "execution_count": 18, "id": "0459d3a9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.953197Z", - "iopub.status.busy": "2023-08-22T07:00:29.952962Z", - "iopub.status.idle": "2023-08-22T07:00:29.965364Z", - "shell.execute_reply": "2023-08-22T07:00:29.965021Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -846,12 +756,7 @@ "execution_count": 19, "id": "34bf2864", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.967326Z", - "iopub.status.busy": "2023-08-22T07:00:29.967175Z", - "iopub.status.idle": "2023-08-22T07:00:29.969789Z", - "shell.execute_reply": "2023-08-22T07:00:29.969459Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -877,12 +782,7 @@ "execution_count": 20, "id": "dd0dfd8a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:29.971954Z", - "iopub.status.busy": "2023-08-22T07:00:29.971825Z", - "iopub.status.idle": "2023-08-22T07:00:30.219764Z", - "shell.execute_reply": "2023-08-22T07:00:30.219356Z" - } + "execution": {} }, "outputs": [ { @@ -931,12 +831,7 @@ "execution_count": 21, "id": "33fb7786", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.221897Z", - "iopub.status.busy": "2023-08-22T07:00:30.221737Z", - "iopub.status.idle": "2023-08-22T07:00:30.264092Z", - "shell.execute_reply": "2023-08-22T07:00:30.263767Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -966,12 +861,7 @@ "execution_count": 22, "id": "a386755b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.265998Z", - "iopub.status.busy": "2023-08-22T07:00:30.265875Z", - "iopub.status.idle": "2023-08-22T07:00:30.268622Z", - "shell.execute_reply": "2023-08-22T07:00:30.268322Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1012,12 +902,7 @@ "execution_count": 23, "id": "3d646928", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.270273Z", - "iopub.status.busy": "2023-08-22T07:00:30.270155Z", - "iopub.status.idle": "2023-08-22T07:00:30.522160Z", - "shell.execute_reply": "2023-08-22T07:00:30.521845Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1073,12 +958,7 @@ "execution_count": 24, "id": "275feef7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.524138Z", - "iopub.status.busy": "2023-08-22T07:00:30.524014Z", - "iopub.status.idle": "2023-08-22T07:00:30.657807Z", - "shell.execute_reply": "2023-08-22T07:00:30.657403Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1117,12 +997,7 @@ "execution_count": 25, "id": "01dbbef3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.660013Z", - "iopub.status.busy": "2023-08-22T07:00:30.659853Z", - "iopub.status.idle": "2023-08-22T07:00:30.742817Z", - "shell.execute_reply": "2023-08-22T07:00:30.742410Z" - } + "execution": {} }, "outputs": [ { @@ -1170,12 +1045,7 @@ "execution_count": 26, "id": "b75cc90e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:30.744837Z", - "iopub.status.busy": "2023-08-22T07:00:30.744692Z", - "iopub.status.idle": "2023-08-22T07:00:31.411169Z", - "shell.execute_reply": "2023-08-22T07:00:31.410861Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1219,12 +1089,7 @@ "execution_count": 27, "id": "bf9a5ed4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:31.412847Z", - "iopub.status.busy": "2023-08-22T07:00:31.412730Z", - "iopub.status.idle": "2023-08-22T07:00:31.503962Z", - "shell.execute_reply": "2023-08-22T07:00:31.503621Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1262,12 +1127,7 @@ "execution_count": 28, "id": "71316e9a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:31.505738Z", - "iopub.status.busy": "2023-08-22T07:00:31.505608Z", - "iopub.status.idle": "2023-08-22T07:00:31.511656Z", - "shell.execute_reply": "2023-08-22T07:00:31.511297Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1420,12 +1280,7 @@ "execution_count": 29, "id": "0bcc5ff1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:31.513595Z", - "iopub.status.busy": "2023-08-22T07:00:31.513453Z", - "iopub.status.idle": "2023-08-22T07:00:34.630915Z", - "shell.execute_reply": "2023-08-22T07:00:34.630577Z" - } + "execution": {} }, "outputs": [ { @@ -1468,12 +1323,7 @@ "execution_count": 30, "id": "060f47eb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:34.632952Z", - "iopub.status.busy": "2023-08-22T07:00:34.632784Z", - "iopub.status.idle": "2023-08-22T07:00:35.097134Z", - "shell.execute_reply": "2023-08-22T07:00:35.096800Z" - } + "execution": {} }, "outputs": [ { @@ -1518,12 +1368,7 @@ "execution_count": 31, "id": "43505dad", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:35.100329Z", - "iopub.status.busy": "2023-08-22T07:00:35.100143Z", - "iopub.status.idle": "2023-08-22T07:00:35.112033Z", - "shell.execute_reply": "2023-08-22T07:00:35.111605Z" - } + "execution": {} }, "outputs": [ { @@ -1559,12 +1404,7 @@ "execution_count": 32, "id": "c0a03126", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:35.113963Z", - "iopub.status.busy": "2023-08-22T07:00:35.113830Z", - "iopub.status.idle": "2023-08-22T07:00:37.129817Z", - "shell.execute_reply": "2023-08-22T07:00:37.129514Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1626,12 +1466,7 @@ "execution_count": 33, "id": "58f6e11f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:37.131701Z", - "iopub.status.busy": "2023-08-22T07:00:37.131582Z", - "iopub.status.idle": "2023-08-22T07:00:38.482392Z", - "shell.execute_reply": "2023-08-22T07:00:38.481994Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1667,12 +1502,7 @@ "execution_count": 34, "id": "a5b1296f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:38.485515Z", - "iopub.status.busy": "2023-08-22T07:00:38.485339Z", - "iopub.status.idle": "2023-08-22T07:00:38.830191Z", - "shell.execute_reply": "2023-08-22T07:00:38.829761Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1706,12 +1536,7 @@ "execution_count": 35, "id": "36c52755", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:38.832666Z", - "iopub.status.busy": "2023-08-22T07:00:38.832460Z", - "iopub.status.idle": "2023-08-22T07:00:38.836173Z", - "shell.execute_reply": "2023-08-22T07:00:38.835780Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch09-svm-lab.ipynb b/Ch09-svm-lab.ipynb index 3b96de8..c496134 100644 --- a/Ch09-svm-lab.ipynb +++ b/Ch09-svm-lab.ipynb @@ -27,12 +27,7 @@ "execution_count": 1, "id": "3973b95f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:43.196408Z", - "iopub.status.busy": "2023-08-22T07:00:43.196299Z", - "iopub.status.idle": "2023-08-22T07:00:44.031971Z", - "shell.execute_reply": "2023-08-22T07:00:44.031635Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -57,12 +52,7 @@ "execution_count": 2, "id": "0161e55e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.034329Z", - "iopub.status.busy": "2023-08-22T07:00:44.034140Z", - "iopub.status.idle": "2023-08-22T07:00:44.066591Z", - "shell.execute_reply": "2023-08-22T07:00:44.066283Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -85,12 +75,7 @@ "execution_count": 3, "id": "7661b056", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.068359Z", - "iopub.status.busy": "2023-08-22T07:00:44.068256Z", - "iopub.status.idle": "2023-08-22T07:00:44.070030Z", - "shell.execute_reply": "2023-08-22T07:00:44.069763Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -125,12 +110,7 @@ "execution_count": 4, "id": "46e9ab84", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.071771Z", - "iopub.status.busy": "2023-08-22T07:00:44.071636Z", - "iopub.status.idle": "2023-08-22T07:00:44.163199Z", - "shell.execute_reply": "2023-08-22T07:00:44.162710Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -170,12 +150,7 @@ "execution_count": 5, "id": "605ffdc0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.165309Z", - "iopub.status.busy": "2023-08-22T07:00:44.165170Z", - "iopub.status.idle": "2023-08-22T07:00:44.169891Z", - "shell.execute_reply": "2023-08-22T07:00:44.169496Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -214,12 +189,7 @@ "execution_count": 6, "id": "302a49a1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.171704Z", - "iopub.status.busy": "2023-08-22T07:00:44.171421Z", - "iopub.status.idle": "2023-08-22T07:00:44.323926Z", - "shell.execute_reply": "2023-08-22T07:00:44.323505Z" - } + "execution": {} }, "outputs": [ { @@ -259,12 +229,7 @@ "execution_count": 7, "id": "cc1d6a13", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.326070Z", - "iopub.status.busy": "2023-08-22T07:00:44.325931Z", - "iopub.status.idle": "2023-08-22T07:00:44.449908Z", - "shell.execute_reply": "2023-08-22T07:00:44.449566Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -305,12 +270,7 @@ "execution_count": 8, "id": "6133c846", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.451882Z", - "iopub.status.busy": "2023-08-22T07:00:44.451759Z", - "iopub.status.idle": "2023-08-22T07:00:44.454360Z", - "shell.execute_reply": "2023-08-22T07:00:44.454092Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -343,12 +303,7 @@ "execution_count": 9, "id": "9adb3793", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.456205Z", - "iopub.status.busy": "2023-08-22T07:00:44.456086Z", - "iopub.status.idle": "2023-08-22T07:00:44.482752Z", - "shell.execute_reply": "2023-08-22T07:00:44.482392Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -391,12 +346,7 @@ "execution_count": 10, "id": "d3ab343e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.484837Z", - "iopub.status.busy": "2023-08-22T07:00:44.484685Z", - "iopub.status.idle": "2023-08-22T07:00:44.487229Z", - "shell.execute_reply": "2023-08-22T07:00:44.486932Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -432,12 +382,7 @@ "execution_count": 11, "id": "6aba117e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.488910Z", - "iopub.status.busy": "2023-08-22T07:00:44.488789Z", - "iopub.status.idle": "2023-08-22T07:00:44.490857Z", - "shell.execute_reply": "2023-08-22T07:00:44.490592Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -461,12 +406,7 @@ "execution_count": 12, "id": "dbe7d737", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.492721Z", - "iopub.status.busy": "2023-08-22T07:00:44.492565Z", - "iopub.status.idle": "2023-08-22T07:00:44.498024Z", - "shell.execute_reply": "2023-08-22T07:00:44.497699Z" - } + "execution": {} }, "outputs": [ { @@ -548,12 +488,7 @@ "execution_count": 13, "id": "ab1697c2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.499990Z", - "iopub.status.busy": "2023-08-22T07:00:44.499862Z", - "iopub.status.idle": "2023-08-22T07:00:44.504347Z", - "shell.execute_reply": "2023-08-22T07:00:44.504085Z" - } + "execution": {} }, "outputs": [ { @@ -639,12 +574,7 @@ "execution_count": 14, "id": "0fd42b1e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.506318Z", - "iopub.status.busy": "2023-08-22T07:00:44.506164Z", - "iopub.status.idle": "2023-08-22T07:00:44.587482Z", - "shell.execute_reply": "2023-08-22T07:00:44.587059Z" - } + "execution": {} }, "outputs": [ { @@ -677,12 +607,7 @@ "execution_count": 15, "id": "09c15299", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.589398Z", - "iopub.status.busy": "2023-08-22T07:00:44.589260Z", - "iopub.status.idle": "2023-08-22T07:00:44.594250Z", - "shell.execute_reply": "2023-08-22T07:00:44.593884Z" - } + "execution": {} }, "outputs": [ { @@ -764,12 +689,7 @@ "execution_count": 16, "id": "d5fd2ff9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.596069Z", - "iopub.status.busy": "2023-08-22T07:00:44.595957Z", - "iopub.status.idle": "2023-08-22T07:00:44.704810Z", - "shell.execute_reply": "2023-08-22T07:00:44.704515Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -809,12 +729,7 @@ "execution_count": 17, "id": "39aff1b1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.706840Z", - "iopub.status.busy": "2023-08-22T07:00:44.706674Z", - "iopub.status.idle": "2023-08-22T07:00:44.711712Z", - "shell.execute_reply": "2023-08-22T07:00:44.711351Z" - } + "execution": {} }, "outputs": [ { @@ -896,12 +811,7 @@ "execution_count": 18, "id": "63a9d752", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.713664Z", - "iopub.status.busy": "2023-08-22T07:00:44.713515Z", - "iopub.status.idle": "2023-08-22T07:00:44.825679Z", - "shell.execute_reply": "2023-08-22T07:00:44.825364Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -949,12 +859,7 @@ "execution_count": 19, "id": "2fee8df5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.827655Z", - "iopub.status.busy": "2023-08-22T07:00:44.827492Z", - "iopub.status.idle": "2023-08-22T07:00:44.829859Z", - "shell.execute_reply": "2023-08-22T07:00:44.829433Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -977,12 +882,7 @@ "execution_count": 20, "id": "48f01abe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.831676Z", - "iopub.status.busy": "2023-08-22T07:00:44.831542Z", - "iopub.status.idle": "2023-08-22T07:00:44.912763Z", - "shell.execute_reply": "2023-08-22T07:00:44.912396Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1030,12 +930,7 @@ "execution_count": 21, "id": "4acc3246", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.914642Z", - "iopub.status.busy": "2023-08-22T07:00:44.914493Z", - "iopub.status.idle": "2023-08-22T07:00:44.918862Z", - "shell.execute_reply": "2023-08-22T07:00:44.918577Z" - } + "execution": {} }, "outputs": [ { @@ -1078,12 +973,7 @@ "execution_count": 22, "id": "e9852a28", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:44.920379Z", - "iopub.status.busy": "2023-08-22T07:00:44.920289Z", - "iopub.status.idle": "2023-08-22T07:00:45.229404Z", - "shell.execute_reply": "2023-08-22T07:00:45.229004Z" - } + "execution": {} }, "outputs": [ { @@ -1122,12 +1012,7 @@ "execution_count": 23, "id": "01232fc9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.231425Z", - "iopub.status.busy": "2023-08-22T07:00:45.231287Z", - "iopub.status.idle": "2023-08-22T07:00:45.394458Z", - "shell.execute_reply": "2023-08-22T07:00:45.394098Z" - } + "execution": {} }, "outputs": [ { @@ -1166,12 +1051,7 @@ "execution_count": 24, "id": "bcbd15a4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.396381Z", - "iopub.status.busy": "2023-08-22T07:00:45.396249Z", - "iopub.status.idle": "2023-08-22T07:00:45.487743Z", - "shell.execute_reply": "2023-08-22T07:00:45.487417Z" - } + "execution": {} }, "outputs": [ { @@ -1214,12 +1094,7 @@ "execution_count": 25, "id": "28ca551e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.489428Z", - "iopub.status.busy": "2023-08-22T07:00:45.489307Z", - "iopub.status.idle": "2023-08-22T07:00:45.761918Z", - "shell.execute_reply": "2023-08-22T07:00:45.761509Z" - } + "execution": {} }, "outputs": [ { @@ -1348,12 +1223,7 @@ "execution_count": 26, "id": "68ac9421", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.763931Z", - "iopub.status.busy": "2023-08-22T07:00:45.763759Z", - "iopub.status.idle": "2023-08-22T07:00:45.849017Z", - "shell.execute_reply": "2023-08-22T07:00:45.848298Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1393,12 +1263,7 @@ "execution_count": 27, "id": "f79a9e0a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.851590Z", - "iopub.status.busy": "2023-08-22T07:00:45.851425Z", - "iopub.status.idle": "2023-08-22T07:00:45.979876Z", - "shell.execute_reply": "2023-08-22T07:00:45.979437Z" - } + "execution": {} }, "outputs": [ { @@ -1442,12 +1307,7 @@ "execution_count": 28, "id": "bdb9e503", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.982037Z", - "iopub.status.busy": "2023-08-22T07:00:45.981884Z", - "iopub.status.idle": "2023-08-22T07:00:45.986135Z", - "shell.execute_reply": "2023-08-22T07:00:45.985717Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1473,12 +1333,7 @@ "execution_count": 29, "id": "329f5d2c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:45.988269Z", - "iopub.status.busy": "2023-08-22T07:00:45.988146Z", - "iopub.status.idle": "2023-08-22T07:00:46.085414Z", - "shell.execute_reply": "2023-08-22T07:00:46.084883Z" - } + "execution": {} }, "outputs": [ { @@ -1528,12 +1383,7 @@ "execution_count": 30, "id": "267e113d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:46.087864Z", - "iopub.status.busy": "2023-08-22T07:00:46.087700Z", - "iopub.status.idle": "2023-08-22T07:00:46.169591Z", - "shell.execute_reply": "2023-08-22T07:00:46.169145Z" - } + "execution": {} }, "outputs": [ { @@ -1569,12 +1419,7 @@ "execution_count": 31, "id": "64cbebd0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:46.171760Z", - "iopub.status.busy": "2023-08-22T07:00:46.171615Z", - "iopub.status.idle": "2023-08-22T07:00:46.921038Z", - "shell.execute_reply": "2023-08-22T07:00:46.920658Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1633,12 +1478,7 @@ "execution_count": 32, "id": "b6e6f12b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:46.923126Z", - "iopub.status.busy": "2023-08-22T07:00:46.922983Z", - "iopub.status.idle": "2023-08-22T07:00:46.997998Z", - "shell.execute_reply": "2023-08-22T07:00:46.997721Z" - } + "execution": {} }, "outputs": [ { @@ -1679,12 +1519,7 @@ "execution_count": 33, "id": "273a10b2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:47.000124Z", - "iopub.status.busy": "2023-08-22T07:00:46.999957Z", - "iopub.status.idle": "2023-08-22T07:00:47.027848Z", - "shell.execute_reply": "2023-08-22T07:00:47.027461Z" - } + "execution": {} }, "outputs": [ { @@ -1793,12 +1628,7 @@ "execution_count": 34, "id": "bc3079a7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:47.030032Z", - "iopub.status.busy": "2023-08-22T07:00:47.029880Z", - "iopub.status.idle": "2023-08-22T07:00:47.040946Z", - "shell.execute_reply": "2023-08-22T07:00:47.040538Z" - } + "execution": {} }, "outputs": [ { diff --git a/Ch10-deeplearning-lab.ipynb b/Ch10-deeplearning-lab.ipynb index 4c5a709..32d85fc 100644 --- a/Ch10-deeplearning-lab.ipynb +++ b/Ch10-deeplearning-lab.ipynb @@ -26,12 +26,7 @@ "execution_count": 1, "id": "cf431f3f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:23.822772Z", - "iopub.status.busy": "2023-08-22T06:36:23.822498Z", - "iopub.status.idle": "2023-08-22T06:36:35.889421Z", - "shell.execute_reply": "2023-08-22T06:36:35.888914Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -69,12 +64,7 @@ "execution_count": 2, "id": "1db00e03", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:35.892370Z", - "iopub.status.busy": "2023-08-22T06:36:35.892133Z", - "iopub.status.idle": "2023-08-22T06:36:37.554519Z", - "shell.execute_reply": "2023-08-22T06:36:37.554232Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -102,12 +92,7 @@ "execution_count": 3, "id": "3da0a445", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:37.556320Z", - "iopub.status.busy": "2023-08-22T06:36:37.556190Z", - "iopub.status.idle": "2023-08-22T06:36:38.312094Z", - "shell.execute_reply": "2023-08-22T06:36:38.311799Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -133,12 +118,7 @@ "execution_count": 4, "id": "bbbf32fe", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.313997Z", - "iopub.status.busy": "2023-08-22T06:36:38.313882Z", - "iopub.status.idle": "2023-08-22T06:36:38.557850Z", - "shell.execute_reply": "2023-08-22T06:36:38.557519Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -160,12 +140,7 @@ "execution_count": 5, "id": "3810caf4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.559742Z", - "iopub.status.busy": "2023-08-22T06:36:38.559626Z", - "iopub.status.idle": "2023-08-22T06:36:38.563148Z", - "shell.execute_reply": "2023-08-22T06:36:38.562883Z" - } + "execution": {} }, "outputs": [ { @@ -197,12 +172,7 @@ "execution_count": 6, "id": "454dc419", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.564731Z", - "iopub.status.busy": "2023-08-22T06:36:38.564619Z", - "iopub.status.idle": "2023-08-22T06:36:38.566404Z", - "shell.execute_reply": "2023-08-22T06:36:38.566156Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -239,12 +209,7 @@ "execution_count": 7, "id": "cd43a4c6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.567754Z", - "iopub.status.busy": "2023-08-22T06:36:38.567677Z", - "iopub.status.idle": "2023-08-22T06:36:38.569838Z", - "shell.execute_reply": "2023-08-22T06:36:38.569588Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -275,12 +240,7 @@ "execution_count": 8, "id": "eaf84e9c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.571182Z", - "iopub.status.busy": "2023-08-22T06:36:38.571106Z", - "iopub.status.idle": "2023-08-22T06:36:38.572982Z", - "shell.execute_reply": "2023-08-22T06:36:38.572746Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -311,12 +271,7 @@ "execution_count": 9, "id": "d007a49b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.574407Z", - "iopub.status.busy": "2023-08-22T06:36:38.574330Z", - "iopub.status.idle": "2023-08-22T06:36:38.575831Z", - "shell.execute_reply": "2023-08-22T06:36:38.575582Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -339,12 +294,7 @@ "execution_count": 10, "id": "9da64364", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.577295Z", - "iopub.status.busy": "2023-08-22T06:36:38.577214Z", - "iopub.status.idle": "2023-08-22T06:36:38.582891Z", - "shell.execute_reply": "2023-08-22T06:36:38.582646Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -373,12 +323,7 @@ "execution_count": 11, "id": "a2cfe999", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.584411Z", - "iopub.status.busy": "2023-08-22T06:36:38.584330Z", - "iopub.status.idle": "2023-08-22T06:36:38.602242Z", - "shell.execute_reply": "2023-08-22T06:36:38.601986Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -415,12 +360,7 @@ "execution_count": 12, "id": "5c600069", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.603814Z", - "iopub.status.busy": "2023-08-22T06:36:38.603735Z", - "iopub.status.idle": "2023-08-22T06:36:38.605828Z", - "shell.execute_reply": "2023-08-22T06:36:38.605618Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -447,12 +387,7 @@ "execution_count": 13, "id": "6ea4f551", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.607262Z", - "iopub.status.busy": "2023-08-22T06:36:38.607183Z", - "iopub.status.idle": "2023-08-22T06:36:38.611049Z", - "shell.execute_reply": "2023-08-22T06:36:38.610800Z" - } + "execution": {} }, "outputs": [ { @@ -490,12 +425,7 @@ "execution_count": 14, "id": "f1b8b3f5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.612499Z", - "iopub.status.busy": "2023-08-22T06:36:38.612413Z", - "iopub.status.idle": "2023-08-22T06:36:38.614248Z", - "shell.execute_reply": "2023-08-22T06:36:38.614031Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -520,12 +450,7 @@ "execution_count": 15, "id": "50ce4171", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.615637Z", - "iopub.status.busy": "2023-08-22T06:36:38.615534Z", - "iopub.status.idle": "2023-08-22T06:36:38.617783Z", - "shell.execute_reply": "2023-08-22T06:36:38.617551Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -551,12 +476,7 @@ "execution_count": 16, "id": "94c4ab75", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:38.619363Z", - "iopub.status.busy": "2023-08-22T06:36:38.619259Z", - "iopub.status.idle": "2023-08-22T06:36:50.960206Z", - "shell.execute_reply": "2023-08-22T06:36:50.959901Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -585,12 +505,7 @@ "execution_count": 17, "id": "86e45999", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.962061Z", - "iopub.status.busy": "2023-08-22T06:36:50.961947Z", - "iopub.status.idle": "2023-08-22T06:36:50.964427Z", - "shell.execute_reply": "2023-08-22T06:36:50.964181Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -633,12 +548,7 @@ "execution_count": 18, "id": "00ac7606", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.965887Z", - "iopub.status.busy": "2023-08-22T06:36:50.965780Z", - "iopub.status.idle": "2023-08-22T06:36:50.967993Z", - "shell.execute_reply": "2023-08-22T06:36:50.967736Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -698,12 +608,7 @@ "execution_count": 19, "id": "bb7ff7e9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.969396Z", - "iopub.status.busy": "2023-08-22T06:36:50.969288Z", - "iopub.status.idle": "2023-08-22T06:36:50.971584Z", - "shell.execute_reply": "2023-08-22T06:36:50.971363Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -740,12 +645,7 @@ "execution_count": 20, "id": "b60d34e1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.973300Z", - "iopub.status.busy": "2023-08-22T06:36:50.973196Z", - "iopub.status.idle": "2023-08-22T06:36:50.979604Z", - "shell.execute_reply": "2023-08-22T06:36:50.979367Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -814,12 +714,7 @@ "execution_count": 21, "id": "42f63682", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.981129Z", - "iopub.status.busy": "2023-08-22T06:36:50.981043Z", - "iopub.status.idle": "2023-08-22T06:36:50.983074Z", - "shell.execute_reply": "2023-08-22T06:36:50.982803Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -842,12 +737,7 @@ "execution_count": 22, "id": "57fbf564", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.984595Z", - "iopub.status.busy": "2023-08-22T06:36:50.984509Z", - "iopub.status.idle": "2023-08-22T06:36:50.986442Z", - "shell.execute_reply": "2023-08-22T06:36:50.986202Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -884,12 +774,7 @@ "execution_count": 23, "id": "570bdd73", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.987814Z", - "iopub.status.busy": "2023-08-22T06:36:50.987734Z", - "iopub.status.idle": "2023-08-22T06:36:50.989404Z", - "shell.execute_reply": "2023-08-22T06:36:50.989173Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -923,12 +808,7 @@ "execution_count": 24, "id": "c08a4d6d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.990908Z", - "iopub.status.busy": "2023-08-22T06:36:50.990826Z", - "iopub.status.idle": "2023-08-22T06:36:50.992776Z", - "shell.execute_reply": "2023-08-22T06:36:50.992504Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -958,12 +838,7 @@ "execution_count": 25, "id": "aaa1e593", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.994186Z", - "iopub.status.busy": "2023-08-22T06:36:50.994113Z", - "iopub.status.idle": "2023-08-22T06:36:50.996729Z", - "shell.execute_reply": "2023-08-22T06:36:50.996486Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -992,12 +867,7 @@ "execution_count": 26, "id": "1a4e9b3c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:50.998209Z", - "iopub.status.busy": "2023-08-22T06:36:50.998126Z", - "iopub.status.idle": "2023-08-22T06:36:51.000007Z", - "shell.execute_reply": "2023-08-22T06:36:50.999781Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1030,12 +900,7 @@ "execution_count": 27, "id": "2f839fde", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:51.001398Z", - "iopub.status.busy": "2023-08-22T06:36:51.001321Z", - "iopub.status.idle": "2023-08-22T06:36:57.231774Z", - "shell.execute_reply": "2023-08-22T06:36:57.231473Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1824,12 +1689,7 @@ "execution_count": 28, "id": "672b4410", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:57.233763Z", - "iopub.status.busy": "2023-08-22T06:36:57.233589Z", - "iopub.status.idle": "2023-08-22T06:36:58.499876Z", - "shell.execute_reply": "2023-08-22T06:36:58.499595Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1894,12 +1754,7 @@ "execution_count": 29, "id": "8cf6ef60", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.501449Z", - "iopub.status.busy": "2023-08-22T06:36:58.501342Z", - "iopub.status.idle": "2023-08-22T06:36:58.505142Z", - "shell.execute_reply": "2023-08-22T06:36:58.504888Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1920,12 +1775,7 @@ "execution_count": 30, "id": "67ce1e26", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.506556Z", - "iopub.status.busy": "2023-08-22T06:36:58.506485Z", - "iopub.status.idle": "2023-08-22T06:36:58.508767Z", - "shell.execute_reply": "2023-08-22T06:36:58.508514Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1969,12 +1819,7 @@ "execution_count": 31, "id": "deb684d2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.510129Z", - "iopub.status.busy": "2023-08-22T06:36:58.510060Z", - "iopub.status.idle": "2023-08-22T06:36:58.709656Z", - "shell.execute_reply": "2023-08-22T06:36:58.700996Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2022,12 +1867,7 @@ "execution_count": 32, "id": "454033dd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.732799Z", - "iopub.status.busy": "2023-08-22T06:36:58.729950Z", - "iopub.status.idle": "2023-08-22T06:36:58.780581Z", - "shell.execute_reply": "2023-08-22T06:36:58.765673Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2074,12 +1914,7 @@ "execution_count": 33, "id": "71b3d0d0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.807133Z", - "iopub.status.busy": "2023-08-22T06:36:58.800859Z", - "iopub.status.idle": "2023-08-22T06:36:58.836318Z", - "shell.execute_reply": "2023-08-22T06:36:58.822052Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -2113,12 +1948,7 @@ "execution_count": 34, "id": "def8605c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.852033Z", - "iopub.status.busy": "2023-08-22T06:36:58.848358Z", - "iopub.status.idle": "2023-08-22T06:36:58.873333Z", - "shell.execute_reply": "2023-08-22T06:36:58.873077Z" - } + "execution": {} }, "outputs": [ { @@ -2175,12 +2005,7 @@ "execution_count": 35, "id": "8b9e2b8c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.874850Z", - "iopub.status.busy": "2023-08-22T06:36:58.874776Z", - "iopub.status.idle": "2023-08-22T06:36:58.877600Z", - "shell.execute_reply": "2023-08-22T06:36:58.877374Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2205,12 +2030,7 @@ "execution_count": 36, "id": "a4b95dc6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:36:58.879121Z", - "iopub.status.busy": "2023-08-22T06:36:58.879027Z", - "iopub.status.idle": "2023-08-22T06:37:01.493098Z", - "shell.execute_reply": "2023-08-22T06:37:01.492695Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2250,12 +2070,7 @@ "execution_count": 37, "id": "17714c25", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.495059Z", - "iopub.status.busy": "2023-08-22T06:37:01.494927Z", - "iopub.status.idle": "2023-08-22T06:37:01.497746Z", - "shell.execute_reply": "2023-08-22T06:37:01.497412Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2297,12 +2112,7 @@ "execution_count": 38, "id": "88a4bf46", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.499269Z", - "iopub.status.busy": "2023-08-22T06:37:01.499164Z", - "iopub.status.idle": "2023-08-22T06:37:01.501783Z", - "shell.execute_reply": "2023-08-22T06:37:01.501554Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2323,12 +2133,7 @@ "execution_count": 39, "id": "ea0d9387", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.503288Z", - "iopub.status.busy": "2023-08-22T06:37:01.503188Z", - "iopub.status.idle": "2023-08-22T06:37:01.506547Z", - "shell.execute_reply": "2023-08-22T06:37:01.506292Z" - } + "execution": {} }, "outputs": [ { @@ -2361,12 +2166,7 @@ "execution_count": 40, "id": "17c34a29", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.507963Z", - "iopub.status.busy": "2023-08-22T06:37:01.507888Z", - "iopub.status.idle": "2023-08-22T06:37:01.511369Z", - "shell.execute_reply": "2023-08-22T06:37:01.511148Z" - } + "execution": {} }, "outputs": [ { @@ -2430,12 +2230,7 @@ "execution_count": 41, "id": "a0608bd1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.512793Z", - "iopub.status.busy": "2023-08-22T06:37:01.512716Z", - "iopub.status.idle": "2023-08-22T06:37:01.515484Z", - "shell.execute_reply": "2023-08-22T06:37:01.515264Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2457,12 +2252,7 @@ "execution_count": 42, "id": "cf8e3d9d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:01.516943Z", - "iopub.status.busy": "2023-08-22T06:37:01.516871Z", - "iopub.status.idle": "2023-08-22T06:37:52.281809Z", - "shell.execute_reply": "2023-08-22T06:37:52.281494Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2986,12 +2776,7 @@ "execution_count": 43, "id": "45e03385", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:52.284184Z", - "iopub.status.busy": "2023-08-22T06:37:52.284067Z", - "iopub.status.idle": "2023-08-22T06:37:52.410238Z", - "shell.execute_reply": "2023-08-22T06:37:52.398096Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3032,12 +2817,7 @@ "execution_count": 44, "id": "3a875b78", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:52.428640Z", - "iopub.status.busy": "2023-08-22T06:37:52.428508Z", - "iopub.status.idle": "2023-08-22T06:37:54.669809Z", - "shell.execute_reply": "2023-08-22T06:37:54.669487Z" - } + "execution": {} }, "outputs": [ { @@ -3100,12 +2880,7 @@ "execution_count": 45, "id": "2f035d83", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:54.671428Z", - "iopub.status.busy": "2023-08-22T06:37:54.671322Z", - "iopub.status.idle": "2023-08-22T06:37:54.674968Z", - "shell.execute_reply": "2023-08-22T06:37:54.674733Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -3128,12 +2903,7 @@ "execution_count": 46, "id": "2cd67ad8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:37:54.676335Z", - "iopub.status.busy": "2023-08-22T06:37:54.676230Z", - "iopub.status.idle": "2023-08-22T06:38:31.495310Z", - "shell.execute_reply": "2023-08-22T06:38:31.495001Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3635,12 +3405,7 @@ "execution_count": 47, "id": "3900d16e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:31.497398Z", - "iopub.status.busy": "2023-08-22T06:38:31.497283Z", - "iopub.status.idle": "2023-08-22T06:38:33.741306Z", - "shell.execute_reply": "2023-08-22T06:38:33.740988Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3702,12 +3467,7 @@ "execution_count": 48, "id": "679f2ea5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:33.742928Z", - "iopub.status.busy": "2023-08-22T06:38:33.742820Z", - "iopub.status.idle": "2023-08-22T06:38:33.744700Z", - "shell.execute_reply": "2023-08-22T06:38:33.744472Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -3739,12 +3499,7 @@ "execution_count": 49, "id": "e4af6604", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:33.746175Z", - "iopub.status.busy": "2023-08-22T06:38:33.746084Z", - "iopub.status.idle": "2023-08-22T06:38:35.260793Z", - "shell.execute_reply": "2023-08-22T06:38:35.260496Z" - } + "execution": {} }, "outputs": [ { @@ -3769,12 +3524,7 @@ "execution_count": 50, "id": "2b613ecc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:35.262479Z", - "iopub.status.busy": "2023-08-22T06:38:35.262391Z", - "iopub.status.idle": "2023-08-22T06:38:36.005488Z", - "shell.execute_reply": "2023-08-22T06:38:36.005166Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -3807,12 +3557,7 @@ "execution_count": 51, "id": "4b325cb4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:36.007353Z", - "iopub.status.busy": "2023-08-22T06:38:36.007234Z", - "iopub.status.idle": "2023-08-22T06:38:36.010064Z", - "shell.execute_reply": "2023-08-22T06:38:36.009819Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -3837,12 +3582,7 @@ "execution_count": 52, "id": "cb3d00cb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:36.011610Z", - "iopub.status.busy": "2023-08-22T06:38:36.011502Z", - "iopub.status.idle": "2023-08-22T06:38:38.616192Z", - "shell.execute_reply": "2023-08-22T06:38:38.615836Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3882,12 +3622,7 @@ "execution_count": 53, "id": "60d09656", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:38.618165Z", - "iopub.status.busy": "2023-08-22T06:38:38.618040Z", - "iopub.status.idle": "2023-08-22T06:38:38.959064Z", - "shell.execute_reply": "2023-08-22T06:38:38.950625Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -3938,12 +3673,7 @@ "execution_count": 54, "id": "f823da11", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:38.970097Z", - "iopub.status.busy": "2023-08-22T06:38:38.969929Z", - "iopub.status.idle": "2023-08-22T06:38:38.990599Z", - "shell.execute_reply": "2023-08-22T06:38:38.982099Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -3990,12 +3720,7 @@ "execution_count": 55, "id": "1a172f7e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:39.009337Z", - "iopub.status.busy": "2023-08-22T06:38:39.007564Z", - "iopub.status.idle": "2023-08-22T06:38:39.027768Z", - "shell.execute_reply": "2023-08-22T06:38:39.017688Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -4033,12 +3758,7 @@ "execution_count": 56, "id": "651e62b4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:39.041161Z", - "iopub.status.busy": "2023-08-22T06:38:39.040974Z", - "iopub.status.idle": "2023-08-22T06:38:39.147687Z", - "shell.execute_reply": "2023-08-22T06:38:39.147402Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -4136,12 +3856,7 @@ "execution_count": 57, "id": "63f2650e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:39.149388Z", - "iopub.status.busy": "2023-08-22T06:38:39.149267Z", - "iopub.status.idle": "2023-08-22T06:38:39.152471Z", - "shell.execute_reply": "2023-08-22T06:38:39.152156Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -4157,12 +3872,7 @@ "execution_count": 58, "id": "a3e4bc28", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:38:39.153978Z", - "iopub.status.busy": "2023-08-22T06:38:39.153895Z", - "iopub.status.idle": "2023-08-22T06:41:13.243974Z", - "shell.execute_reply": "2023-08-22T06:41:13.243600Z" - } + "execution": {} }, "outputs": [ { @@ -4670,12 +4380,7 @@ "execution_count": 59, "id": "6b161d93", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:41:13.246757Z", - "iopub.status.busy": "2023-08-22T06:41:13.246644Z", - "iopub.status.idle": "2023-08-22T06:41:13.338213Z", - "shell.execute_reply": "2023-08-22T06:41:13.337367Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -4716,12 +4421,7 @@ "execution_count": 60, "id": "ab8a91dc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:41:13.343721Z", - "iopub.status.busy": "2023-08-22T06:41:13.343026Z", - "iopub.status.idle": "2023-08-22T06:41:15.701168Z", - "shell.execute_reply": "2023-08-22T06:41:15.700777Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -4792,12 +4492,7 @@ "execution_count": 61, "id": "6d9962ae", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:41:15.702808Z", - "iopub.status.busy": "2023-08-22T06:41:15.702702Z", - "iopub.status.idle": "2023-08-22T06:44:01.467525Z", - "shell.execute_reply": "2023-08-22T06:44:01.467145Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5350,12 +5045,7 @@ "execution_count": 62, "id": "a71c9acb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:01.469991Z", - "iopub.status.busy": "2023-08-22T06:44:01.469875Z", - "iopub.status.idle": "2023-08-22T06:44:01.935872Z", - "shell.execute_reply": "2023-08-22T06:44:01.935582Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -5395,12 +5085,7 @@ "execution_count": 63, "id": "4f890244", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:01.937487Z", - "iopub.status.busy": "2023-08-22T06:44:01.937384Z", - "iopub.status.idle": "2023-08-22T06:44:02.437287Z", - "shell.execute_reply": "2023-08-22T06:44:02.436974Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5625,12 +5310,7 @@ "execution_count": 64, "id": "c4be9922", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.438850Z", - "iopub.status.busy": "2023-08-22T06:44:02.438741Z", - "iopub.status.idle": "2023-08-22T06:44:02.441925Z", - "shell.execute_reply": "2023-08-22T06:44:02.441612Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -5841,12 +5521,7 @@ "execution_count": 65, "id": "2dc63d85", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.443425Z", - "iopub.status.busy": "2023-08-22T06:44:02.443344Z", - "iopub.status.idle": "2023-08-22T06:44:02.567717Z", - "shell.execute_reply": "2023-08-22T06:44:02.567412Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -5869,12 +5544,7 @@ "execution_count": 66, "id": "711d5ba7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.569455Z", - "iopub.status.busy": "2023-08-22T06:44:02.569371Z", - "iopub.status.idle": "2023-08-22T06:44:02.571608Z", - "shell.execute_reply": "2023-08-22T06:44:02.571356Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -5895,12 +5565,7 @@ "execution_count": 67, "id": "b22f70d8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.573175Z", - "iopub.status.busy": "2023-08-22T06:44:02.573082Z", - "iopub.status.idle": "2023-08-22T06:44:02.580482Z", - "shell.execute_reply": "2023-08-22T06:44:02.580237Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -5927,12 +5592,7 @@ "execution_count": 68, "id": "b19c6bd1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.581982Z", - "iopub.status.busy": "2023-08-22T06:44:02.581889Z", - "iopub.status.idle": "2023-08-22T06:44:02.593476Z", - "shell.execute_reply": "2023-08-22T06:44:02.593210Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -5999,12 +5659,7 @@ "execution_count": 69, "id": "ba80b615", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.594912Z", - "iopub.status.busy": "2023-08-22T06:44:02.594816Z", - "iopub.status.idle": "2023-08-22T06:44:02.596527Z", - "shell.execute_reply": "2023-08-22T06:44:02.596344Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -6049,12 +5704,7 @@ "execution_count": 70, "id": "ba6d2d2c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.597905Z", - "iopub.status.busy": "2023-08-22T06:44:02.597817Z", - "iopub.status.idle": "2023-08-22T06:44:02.626372Z", - "shell.execute_reply": "2023-08-22T06:44:02.626104Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -6100,12 +5750,7 @@ "execution_count": 71, "id": "93bda908", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.627866Z", - "iopub.status.busy": "2023-08-22T06:44:02.627766Z", - "iopub.status.idle": "2023-08-22T06:44:02.638183Z", - "shell.execute_reply": "2023-08-22T06:44:02.637892Z" - } + "execution": {} }, "outputs": [ { @@ -6141,12 +5786,7 @@ "execution_count": 72, "id": "40943b7d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:02.639670Z", - "iopub.status.busy": "2023-08-22T06:44:02.639577Z", - "iopub.status.idle": "2023-08-22T06:44:03.265220Z", - "shell.execute_reply": "2023-08-22T06:44:03.264917Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -6174,12 +5814,7 @@ "execution_count": 73, "id": "2117fd9f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:03.267054Z", - "iopub.status.busy": "2023-08-22T06:44:03.266963Z", - "iopub.status.idle": "2023-08-22T06:44:03.269380Z", - "shell.execute_reply": "2023-08-22T06:44:03.269155Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -6217,12 +5852,7 @@ "execution_count": 74, "id": "66d0b710", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:03.270876Z", - "iopub.status.busy": "2023-08-22T06:44:03.270774Z", - "iopub.status.idle": "2023-08-22T06:44:04.097412Z", - "shell.execute_reply": "2023-08-22T06:44:04.097126Z" - } + "execution": {} }, "outputs": [ { @@ -6286,12 +5916,7 @@ "execution_count": 75, "id": "9df8b4cf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:04.101984Z", - "iopub.status.busy": "2023-08-22T06:44:04.101529Z", - "iopub.status.idle": "2023-08-22T06:44:04.111524Z", - "shell.execute_reply": "2023-08-22T06:44:04.110929Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -6316,12 +5941,7 @@ "execution_count": 76, "id": "73684c66", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:04.113582Z", - "iopub.status.busy": "2023-08-22T06:44:04.113437Z", - "iopub.status.idle": "2023-08-22T06:44:22.590794Z", - "shell.execute_reply": "2023-08-22T06:44:22.590448Z" - } + "execution": {} }, "outputs": [ { @@ -6831,12 +6451,7 @@ "execution_count": 77, "id": "01c6e5ff", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:22.593099Z", - "iopub.status.busy": "2023-08-22T06:44:22.592980Z", - "iopub.status.idle": "2023-08-22T06:44:24.381045Z", - "shell.execute_reply": "2023-08-22T06:44:24.380564Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -6899,12 +6514,7 @@ "execution_count": 78, "id": "4d5b9d1d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:24.382775Z", - "iopub.status.busy": "2023-08-22T06:44:24.382660Z", - "iopub.status.idle": "2023-08-22T06:44:24.491042Z", - "shell.execute_reply": "2023-08-22T06:44:24.490723Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -6930,12 +6540,7 @@ "execution_count": 79, "id": "e2a88e57", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:24.492855Z", - "iopub.status.busy": "2023-08-22T06:44:24.492752Z", - "iopub.status.idle": "2023-08-22T06:44:24.497193Z", - "shell.execute_reply": "2023-08-22T06:44:24.496916Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -6961,12 +6566,7 @@ "execution_count": 80, "id": "9a3cf7a3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:24.498888Z", - "iopub.status.busy": "2023-08-22T06:44:24.498790Z", - "iopub.status.idle": "2023-08-22T06:44:24.500775Z", - "shell.execute_reply": "2023-08-22T06:44:24.500516Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -6991,12 +6591,7 @@ "execution_count": 81, "id": "b46f02c2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:24.502208Z", - "iopub.status.busy": "2023-08-22T06:44:24.502114Z", - "iopub.status.idle": "2023-08-22T06:44:43.491232Z", - "shell.execute_reply": "2023-08-22T06:44:43.490911Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7024,12 +6619,7 @@ "execution_count": 82, "id": "e5fb6afa", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.492990Z", - "iopub.status.busy": "2023-08-22T06:44:43.492881Z", - "iopub.status.idle": "2023-08-22T06:44:43.495136Z", - "shell.execute_reply": "2023-08-22T06:44:43.494898Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -7052,12 +6642,7 @@ "execution_count": 83, "id": "cad28f1a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.496615Z", - "iopub.status.busy": "2023-08-22T06:44:43.496512Z", - "iopub.status.idle": "2023-08-22T06:44:43.817649Z", - "shell.execute_reply": "2023-08-22T06:44:43.804167Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -7101,12 +6686,7 @@ "execution_count": 84, "id": "a66ecdd8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.829522Z", - "iopub.status.busy": "2023-08-22T06:44:43.829394Z", - "iopub.status.idle": "2023-08-22T06:44:43.970259Z", - "shell.execute_reply": "2023-08-22T06:44:43.969880Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7154,12 +6734,7 @@ "execution_count": 85, "id": "62440c1c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.972104Z", - "iopub.status.busy": "2023-08-22T06:44:43.971981Z", - "iopub.status.idle": "2023-08-22T06:44:43.973750Z", - "shell.execute_reply": "2023-08-22T06:44:43.973468Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -7206,12 +6781,7 @@ "execution_count": 86, "id": "c73d6e28", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.975482Z", - "iopub.status.busy": "2023-08-22T06:44:43.975361Z", - "iopub.status.idle": "2023-08-22T06:44:43.977735Z", - "shell.execute_reply": "2023-08-22T06:44:43.977461Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7256,12 +6826,7 @@ "execution_count": 87, "id": "cc9bbd00", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.979333Z", - "iopub.status.busy": "2023-08-22T06:44:43.979219Z", - "iopub.status.idle": "2023-08-22T06:44:43.981720Z", - "shell.execute_reply": "2023-08-22T06:44:43.981436Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -7293,12 +6858,7 @@ "execution_count": 88, "id": "5c9ffb46", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:43.983706Z", - "iopub.status.busy": "2023-08-22T06:44:43.983605Z", - "iopub.status.idle": "2023-08-22T06:44:44.006133Z", - "shell.execute_reply": "2023-08-22T06:44:44.005857Z" - } + "execution": {} }, "outputs": [ { @@ -7352,12 +6912,7 @@ "execution_count": 89, "id": "a2d6ddfd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:44.007842Z", - "iopub.status.busy": "2023-08-22T06:44:44.007718Z", - "iopub.status.idle": "2023-08-22T06:44:44.010586Z", - "shell.execute_reply": "2023-08-22T06:44:44.010323Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7370,12 +6925,7 @@ "execution_count": 90, "id": "1d76f970", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:44:44.012129Z", - "iopub.status.busy": "2023-08-22T06:44:44.012007Z", - "iopub.status.idle": "2023-08-22T06:57:52.592058Z", - "shell.execute_reply": "2023-08-22T06:57:52.591679Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -7738,12 +7288,7 @@ "execution_count": 91, "id": "d8a60d35", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:52.595337Z", - "iopub.status.busy": "2023-08-22T06:57:52.595214Z", - "iopub.status.idle": "2023-08-22T06:57:55.788029Z", - "shell.execute_reply": "2023-08-22T06:57:55.787703Z" - } + "execution": {} }, "outputs": [ { @@ -7800,12 +7345,7 @@ "execution_count": 92, "id": "65d7276c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.789720Z", - "iopub.status.busy": "2023-08-22T06:57:55.789606Z", - "iopub.status.idle": "2023-08-22T06:57:55.884354Z", - "shell.execute_reply": "2023-08-22T06:57:55.882420Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -7847,12 +7387,7 @@ "execution_count": 93, "id": "c6f2d6c4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.889361Z", - "iopub.status.busy": "2023-08-22T06:57:55.889040Z", - "iopub.status.idle": "2023-08-22T06:57:55.894226Z", - "shell.execute_reply": "2023-08-22T06:57:55.893514Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -7881,12 +7416,7 @@ "execution_count": 94, "id": "f3e17682", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.899236Z", - "iopub.status.busy": "2023-08-22T06:57:55.898584Z", - "iopub.status.idle": "2023-08-22T06:57:55.919645Z", - "shell.execute_reply": "2023-08-22T06:57:55.918698Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7913,12 +7443,7 @@ "execution_count": 95, "id": "78707eda", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.924653Z", - "iopub.status.busy": "2023-08-22T06:57:55.924212Z", - "iopub.status.idle": "2023-08-22T06:57:55.941488Z", - "shell.execute_reply": "2023-08-22T06:57:55.940914Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -7945,12 +7470,7 @@ "execution_count": 96, "id": "4d894824", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.946619Z", - "iopub.status.busy": "2023-08-22T06:57:55.946232Z", - "iopub.status.idle": "2023-08-22T06:57:55.957091Z", - "shell.execute_reply": "2023-08-22T06:57:55.956345Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -7989,12 +7509,7 @@ "execution_count": 97, "id": "4d7f5ce0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:55.961811Z", - "iopub.status.busy": "2023-08-22T06:57:55.961399Z", - "iopub.status.idle": "2023-08-22T06:57:56.102250Z", - "shell.execute_reply": "2023-08-22T06:57:56.100744Z" - } + "execution": {} }, "outputs": [ { @@ -8029,12 +7544,7 @@ "execution_count": 98, "id": "a6b371bb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.107157Z", - "iopub.status.busy": "2023-08-22T06:57:56.106829Z", - "iopub.status.idle": "2023-08-22T06:57:56.120860Z", - "shell.execute_reply": "2023-08-22T06:57:56.120304Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -8059,12 +7569,7 @@ "execution_count": 99, "id": "a2a8cc85", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.124686Z", - "iopub.status.busy": "2023-08-22T06:57:56.124536Z", - "iopub.status.idle": "2023-08-22T06:57:56.148874Z", - "shell.execute_reply": "2023-08-22T06:57:56.148350Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8117,12 +7622,7 @@ "execution_count": 100, "id": "8ee6e6a3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.154237Z", - "iopub.status.busy": "2023-08-22T06:57:56.153271Z", - "iopub.status.idle": "2023-08-22T06:57:56.164612Z", - "shell.execute_reply": "2023-08-22T06:57:56.162355Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8163,12 +7663,7 @@ "execution_count": 101, "id": "d35ceb54", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.168885Z", - "iopub.status.busy": "2023-08-22T06:57:56.168313Z", - "iopub.status.idle": "2023-08-22T06:57:56.177028Z", - "shell.execute_reply": "2023-08-22T06:57:56.174770Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8207,12 +7702,7 @@ "execution_count": 102, "id": "9e3dc6d5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.180875Z", - "iopub.status.busy": "2023-08-22T06:57:56.180571Z", - "iopub.status.idle": "2023-08-22T06:57:56.188877Z", - "shell.execute_reply": "2023-08-22T06:57:56.188074Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -8251,12 +7741,7 @@ "execution_count": 103, "id": "df5e5ab6", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.192921Z", - "iopub.status.busy": "2023-08-22T06:57:56.192198Z", - "iopub.status.idle": "2023-08-22T06:57:56.205860Z", - "shell.execute_reply": "2023-08-22T06:57:56.203593Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -8281,12 +7766,7 @@ "execution_count": 104, "id": "d7f49bec", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.209732Z", - "iopub.status.busy": "2023-08-22T06:57:56.209439Z", - "iopub.status.idle": "2023-08-22T06:57:56.224094Z", - "shell.execute_reply": "2023-08-22T06:57:56.221572Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -8340,12 +7820,7 @@ "execution_count": 105, "id": "ea7ce0f4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.228022Z", - "iopub.status.busy": "2023-08-22T06:57:56.227434Z", - "iopub.status.idle": "2023-08-22T06:57:56.236333Z", - "shell.execute_reply": "2023-08-22T06:57:56.234101Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -8370,12 +7845,7 @@ "execution_count": 106, "id": "ccd77738", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:56.242815Z", - "iopub.status.busy": "2023-08-22T06:57:56.242259Z", - "iopub.status.idle": "2023-08-22T06:57:57.426177Z", - "shell.execute_reply": "2023-08-22T06:57:57.425792Z" - } + "execution": {} }, "outputs": [ { @@ -8411,12 +7881,7 @@ "execution_count": 107, "id": "96e04e3f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:57.428165Z", - "iopub.status.busy": "2023-08-22T06:57:57.428026Z", - "iopub.status.idle": "2023-08-22T06:57:57.431868Z", - "shell.execute_reply": "2023-08-22T06:57:57.431594Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -8441,12 +7906,7 @@ "execution_count": 108, "id": "fc6ba2ca", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T06:57:57.433417Z", - "iopub.status.busy": "2023-08-22T06:57:57.433307Z", - "iopub.status.idle": "2023-08-22T07:00:40.275665Z", - "shell.execute_reply": "2023-08-22T07:00:40.275338Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -11373,12 +10833,7 @@ "execution_count": 109, "id": "c60876d7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:40.277902Z", - "iopub.status.busy": "2023-08-22T07:00:40.277770Z", - "iopub.status.idle": "2023-08-22T07:00:40.284106Z", - "shell.execute_reply": "2023-08-22T07:00:40.283818Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -11404,12 +10859,7 @@ "execution_count": 110, "id": "282f7e1c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:40.285727Z", - "iopub.status.busy": "2023-08-22T07:00:40.285637Z", - "iopub.status.idle": "2023-08-22T07:00:40.287708Z", - "shell.execute_reply": "2023-08-22T07:00:40.287434Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -11433,12 +10883,7 @@ "execution_count": 111, "id": "038fea74", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:40.289256Z", - "iopub.status.busy": "2023-08-22T07:00:40.289169Z", - "iopub.status.idle": "2023-08-22T07:00:40.291814Z", - "shell.execute_reply": "2023-08-22T07:00:40.291551Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -11459,12 +10904,7 @@ "execution_count": 112, "id": "68d309b2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:40.293426Z", - "iopub.status.busy": "2023-08-22T07:00:40.293319Z", - "iopub.status.idle": "2023-08-22T07:00:40.296658Z", - "shell.execute_reply": "2023-08-22T07:00:40.296393Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -11490,12 +10930,7 @@ "execution_count": 113, "id": "9fc113a1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:40.298197Z", - "iopub.status.busy": "2023-08-22T07:00:40.298117Z", - "iopub.status.idle": "2023-08-22T07:00:54.837234Z", - "shell.execute_reply": "2023-08-22T07:00:54.836928Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch11-surv-lab.ipynb b/Ch11-surv-lab.ipynb index afc93f4..70c27d5 100644 --- a/Ch11-surv-lab.ipynb +++ b/Ch11-surv-lab.ipynb @@ -33,12 +33,7 @@ "execution_count": 1, "id": "d2d71add", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:50.337731Z", - "iopub.status.busy": "2023-08-22T07:00:50.337629Z", - "iopub.status.idle": "2023-08-22T07:00:51.436060Z", - "shell.execute_reply": "2023-08-22T07:00:51.435683Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -63,12 +58,7 @@ "execution_count": 2, "id": "994efc94", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.438092Z", - "iopub.status.busy": "2023-08-22T07:00:51.437918Z", - "iopub.status.idle": "2023-08-22T07:00:51.535762Z", - "shell.execute_reply": "2023-08-22T07:00:51.535441Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -96,12 +86,7 @@ "execution_count": 3, "id": "9d41ddea", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.537713Z", - "iopub.status.busy": "2023-08-22T07:00:51.537591Z", - "iopub.status.idle": "2023-08-22T07:00:51.544098Z", - "shell.execute_reply": "2023-08-22T07:00:51.543823Z" - } + "execution": {} }, "outputs": [ { @@ -134,12 +119,7 @@ "execution_count": 4, "id": "2bece782", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.545870Z", - "iopub.status.busy": "2023-08-22T07:00:51.545663Z", - "iopub.status.idle": "2023-08-22T07:00:51.548757Z", - "shell.execute_reply": "2023-08-22T07:00:51.548485Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -165,12 +145,7 @@ "execution_count": 5, "id": "9ca465e5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.550308Z", - "iopub.status.busy": "2023-08-22T07:00:51.550187Z", - "iopub.status.idle": "2023-08-22T07:00:51.553059Z", - "shell.execute_reply": "2023-08-22T07:00:51.552776Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -198,12 +173,7 @@ "execution_count": 6, "id": "33bc4d3c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.554804Z", - "iopub.status.busy": "2023-08-22T07:00:51.554671Z", - "iopub.status.idle": "2023-08-22T07:00:51.557626Z", - "shell.execute_reply": "2023-08-22T07:00:51.557320Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -254,12 +224,7 @@ "execution_count": 7, "id": "0b6dba70", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.559244Z", - "iopub.status.busy": "2023-08-22T07:00:51.559137Z", - "iopub.status.idle": "2023-08-22T07:00:51.665338Z", - "shell.execute_reply": "2023-08-22T07:00:51.665014Z" - } + "execution": {} }, "outputs": [ { @@ -320,12 +285,7 @@ "execution_count": 8, "id": "9e6f2e70", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.667255Z", - "iopub.status.busy": "2023-08-22T07:00:51.667124Z", - "iopub.status.idle": "2023-08-22T07:00:51.776746Z", - "shell.execute_reply": "2023-08-22T07:00:51.776283Z" - } + "execution": {} }, "outputs": [ { @@ -365,12 +325,7 @@ "execution_count": 9, "id": "c135f7aa", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.778810Z", - "iopub.status.busy": "2023-08-22T07:00:51.778673Z", - "iopub.status.idle": "2023-08-22T07:00:51.828367Z", - "shell.execute_reply": "2023-08-22T07:00:51.827978Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -478,12 +433,7 @@ "execution_count": 10, "id": "5f9303dd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.830679Z", - "iopub.status.busy": "2023-08-22T07:00:51.830375Z", - "iopub.status.idle": "2023-08-22T07:00:51.855011Z", - "shell.execute_reply": "2023-08-22T07:00:51.854602Z" - } + "execution": {} }, "outputs": [ { @@ -571,12 +521,7 @@ "execution_count": 11, "id": "bcc8470c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.857128Z", - "iopub.status.busy": "2023-08-22T07:00:51.856972Z", - "iopub.status.idle": "2023-08-22T07:00:51.862953Z", - "shell.execute_reply": "2023-08-22T07:00:51.862477Z" - } + "execution": {} }, "outputs": [ { @@ -677,12 +622,7 @@ "execution_count": 12, "id": "c26a3499", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.865156Z", - "iopub.status.busy": "2023-08-22T07:00:51.864917Z", - "iopub.status.idle": "2023-08-22T07:00:51.902771Z", - "shell.execute_reply": "2023-08-22T07:00:51.902284Z" - } + "execution": {} }, "outputs": [ { @@ -825,12 +765,7 @@ "execution_count": 13, "id": "8d999f26", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.904821Z", - "iopub.status.busy": "2023-08-22T07:00:51.904683Z", - "iopub.status.idle": "2023-08-22T07:00:51.908678Z", - "shell.execute_reply": "2023-08-22T07:00:51.908230Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -858,12 +793,7 @@ "execution_count": 14, "id": "a1f6b355", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.910559Z", - "iopub.status.busy": "2023-08-22T07:00:51.910451Z", - "iopub.status.idle": "2023-08-22T07:00:51.916316Z", - "shell.execute_reply": "2023-08-22T07:00:51.915990Z" - } + "execution": {} }, "outputs": [ { @@ -986,12 +916,7 @@ "execution_count": 15, "id": "a1a9d5b3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.918281Z", - "iopub.status.busy": "2023-08-22T07:00:51.918144Z", - "iopub.status.idle": "2023-08-22T07:00:51.927845Z", - "shell.execute_reply": "2023-08-22T07:00:51.927490Z" - } + "execution": {} }, "outputs": [ { @@ -1128,12 +1053,7 @@ "execution_count": 16, "id": "1a18b56a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.929658Z", - "iopub.status.busy": "2023-08-22T07:00:51.929522Z", - "iopub.status.idle": "2023-08-22T07:00:51.936112Z", - "shell.execute_reply": "2023-08-22T07:00:51.935793Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1289,12 +1209,7 @@ "execution_count": 17, "id": "ff3de29c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:51.937659Z", - "iopub.status.busy": "2023-08-22T07:00:51.937539Z", - "iopub.status.idle": "2023-08-22T07:00:52.033442Z", - "shell.execute_reply": "2023-08-22T07:00:52.032997Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1332,12 +1247,7 @@ "execution_count": 18, "id": "cd9060c1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.035515Z", - "iopub.status.busy": "2023-08-22T07:00:52.035365Z", - "iopub.status.idle": "2023-08-22T07:00:52.186180Z", - "shell.execute_reply": "2023-08-22T07:00:52.185871Z" - } + "execution": {} }, "outputs": [ { @@ -1377,12 +1287,7 @@ "execution_count": 19, "id": "6af7106e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.188568Z", - "iopub.status.busy": "2023-08-22T07:00:52.188400Z", - "iopub.status.idle": "2023-08-22T07:00:52.221771Z", - "shell.execute_reply": "2023-08-22T07:00:52.221413Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1466,12 +1371,7 @@ "execution_count": 20, "id": "b6ebefa7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.223735Z", - "iopub.status.busy": "2023-08-22T07:00:52.223584Z", - "iopub.status.idle": "2023-08-22T07:00:52.263558Z", - "shell.execute_reply": "2023-08-22T07:00:52.263236Z" - } + "execution": {} }, "outputs": [ { @@ -1610,12 +1510,7 @@ "execution_count": 21, "id": "098f42ea", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.265430Z", - "iopub.status.busy": "2023-08-22T07:00:52.265309Z", - "iopub.status.idle": "2023-08-22T07:00:52.269361Z", - "shell.execute_reply": "2023-08-22T07:00:52.268968Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1648,12 +1543,7 @@ "execution_count": 22, "id": "26d5d0d0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.271325Z", - "iopub.status.busy": "2023-08-22T07:00:52.271227Z", - "iopub.status.idle": "2023-08-22T07:00:52.280726Z", - "shell.execute_reply": "2023-08-22T07:00:52.280283Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1680,12 +1570,7 @@ "execution_count": 23, "id": "77500663", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.282793Z", - "iopub.status.busy": "2023-08-22T07:00:52.282661Z", - "iopub.status.idle": "2023-08-22T07:00:52.287078Z", - "shell.execute_reply": "2023-08-22T07:00:52.286749Z" - } + "execution": {} }, "outputs": [ { @@ -1792,12 +1677,7 @@ "execution_count": 24, "id": "74324a56", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.289254Z", - "iopub.status.busy": "2023-08-22T07:00:52.289116Z", - "iopub.status.idle": "2023-08-22T07:00:52.327077Z", - "shell.execute_reply": "2023-08-22T07:00:52.313280Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1839,12 +1719,7 @@ "execution_count": 25, "id": "d4be10c2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.360673Z", - "iopub.status.busy": "2023-08-22T07:00:52.360466Z", - "iopub.status.idle": "2023-08-22T07:00:52.386485Z", - "shell.execute_reply": "2023-08-22T07:00:52.383597Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1870,12 +1745,7 @@ "execution_count": 26, "id": "c98d396f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.411166Z", - "iopub.status.busy": "2023-08-22T07:00:52.410817Z", - "iopub.status.idle": "2023-08-22T07:00:52.535664Z", - "shell.execute_reply": "2023-08-22T07:00:52.534128Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1899,12 +1769,7 @@ "execution_count": 27, "id": "caf627bc", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.538055Z", - "iopub.status.busy": "2023-08-22T07:00:52.537880Z", - "iopub.status.idle": "2023-08-22T07:00:52.547315Z", - "shell.execute_reply": "2023-08-22T07:00:52.546097Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2007,12 +1872,7 @@ "execution_count": 28, "id": "e63242f9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.553567Z", - "iopub.status.busy": "2023-08-22T07:00:52.553399Z", - "iopub.status.idle": "2023-08-22T07:00:52.556617Z", - "shell.execute_reply": "2023-08-22T07:00:52.556076Z" - } + "execution": {} }, "outputs": [ { @@ -2043,12 +1903,7 @@ "execution_count": 29, "id": "338db71d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.558893Z", - "iopub.status.busy": "2023-08-22T07:00:52.558778Z", - "iopub.status.idle": "2023-08-22T07:00:52.706054Z", - "shell.execute_reply": "2023-08-22T07:00:52.705654Z" - } + "execution": {} }, "outputs": [ { @@ -2095,12 +1950,7 @@ "execution_count": 30, "id": "c1db6e15", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.707873Z", - "iopub.status.busy": "2023-08-22T07:00:52.707772Z", - "iopub.status.idle": "2023-08-22T07:00:52.850431Z", - "shell.execute_reply": "2023-08-22T07:00:52.849948Z" - } + "execution": {} }, "outputs": [ { @@ -2151,12 +2001,7 @@ "execution_count": 31, "id": "02ea4212", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.852333Z", - "iopub.status.busy": "2023-08-22T07:00:52.852184Z", - "iopub.status.idle": "2023-08-22T07:00:52.869743Z", - "shell.execute_reply": "2023-08-22T07:00:52.869438Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2258,12 +2103,7 @@ "execution_count": 32, "id": "0ac610d5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.871905Z", - "iopub.status.busy": "2023-08-22T07:00:52.871758Z", - "iopub.status.idle": "2023-08-22T07:00:52.889214Z", - "shell.execute_reply": "2023-08-22T07:00:52.888915Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2368,12 +2208,7 @@ "execution_count": 33, "id": "107cedad", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:52.891264Z", - "iopub.status.busy": "2023-08-22T07:00:52.891105Z", - "iopub.status.idle": "2023-08-22T07:00:52.999600Z", - "shell.execute_reply": "2023-08-22T07:00:52.999278Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2473,12 +2308,7 @@ "execution_count": 34, "id": "334eb331", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:53.001288Z", - "iopub.status.busy": "2023-08-22T07:00:53.001160Z", - "iopub.status.idle": "2023-08-22T07:00:53.112657Z", - "shell.execute_reply": "2023-08-22T07:00:53.112061Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2581,12 +2411,7 @@ "execution_count": 35, "id": "421811c5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:53.115234Z", - "iopub.status.busy": "2023-08-22T07:00:53.114902Z", - "iopub.status.idle": "2023-08-22T07:00:53.349069Z", - "shell.execute_reply": "2023-08-22T07:00:53.326280Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ diff --git a/Ch12-unsup-lab.ipynb b/Ch12-unsup-lab.ipynb index d9a9a1e..db5293d 100644 --- a/Ch12-unsup-lab.ipynb +++ b/Ch12-unsup-lab.ipynb @@ -21,12 +21,7 @@ "execution_count": 1, "id": "6d5ba583", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:56.821728Z", - "iopub.status.busy": "2023-08-22T07:00:56.821428Z", - "iopub.status.idle": "2023-08-22T07:00:57.569366Z", - "shell.execute_reply": "2023-08-22T07:00:57.569068Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -54,12 +49,7 @@ "execution_count": 2, "id": "64c83257", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:57.571332Z", - "iopub.status.busy": "2023-08-22T07:00:57.571181Z", - "iopub.status.idle": "2023-08-22T07:00:59.834786Z", - "shell.execute_reply": "2023-08-22T07:00:59.834273Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -91,12 +81,7 @@ "execution_count": 3, "id": "04ec4481", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:00:59.837457Z", - "iopub.status.busy": "2023-08-22T07:00:59.837321Z", - "iopub.status.idle": "2023-08-22T07:01:01.128712Z", - "shell.execute_reply": "2023-08-22T07:01:01.128206Z" - } + "execution": {} }, "outputs": [ { @@ -558,12 +543,7 @@ "execution_count": 4, "id": "1b66036a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.131204Z", - "iopub.status.busy": "2023-08-22T07:01:01.130984Z", - "iopub.status.idle": "2023-08-22T07:01:01.135700Z", - "shell.execute_reply": "2023-08-22T07:01:01.134242Z" - } + "execution": {} }, "outputs": [ { @@ -594,12 +574,7 @@ "execution_count": 5, "id": "52e900fd", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.141963Z", - "iopub.status.busy": "2023-08-22T07:01:01.141493Z", - "iopub.status.idle": "2023-08-22T07:01:01.148106Z", - "shell.execute_reply": "2023-08-22T07:01:01.147604Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -637,12 +612,7 @@ "execution_count": 6, "id": "68684f78", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.156074Z", - "iopub.status.busy": "2023-08-22T07:01:01.154480Z", - "iopub.status.idle": "2023-08-22T07:01:01.168063Z", - "shell.execute_reply": "2023-08-22T07:01:01.167370Z" - } + "execution": {} }, "outputs": [ { @@ -691,12 +661,7 @@ "execution_count": 7, "id": "d2b7caf9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.171694Z", - "iopub.status.busy": "2023-08-22T07:01:01.171419Z", - "iopub.status.idle": "2023-08-22T07:01:01.175704Z", - "shell.execute_reply": "2023-08-22T07:01:01.174949Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -721,12 +686,7 @@ "execution_count": 8, "id": "de8f57fa", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.179112Z", - "iopub.status.busy": "2023-08-22T07:01:01.178950Z", - "iopub.status.idle": "2023-08-22T07:01:01.181409Z", - "shell.execute_reply": "2023-08-22T07:01:01.180781Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -750,12 +710,7 @@ "execution_count": 9, "id": "26c45f1e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.184888Z", - "iopub.status.busy": "2023-08-22T07:01:01.184710Z", - "iopub.status.idle": "2023-08-22T07:01:01.188530Z", - "shell.execute_reply": "2023-08-22T07:01:01.188252Z" - } + "execution": {} }, "outputs": [ { @@ -791,12 +746,7 @@ "execution_count": 10, "id": "3097e99d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.190309Z", - "iopub.status.busy": "2023-08-22T07:01:01.190146Z", - "iopub.status.idle": "2023-08-22T07:01:01.193028Z", - "shell.execute_reply": "2023-08-22T07:01:01.192570Z" - } + "execution": {} }, "outputs": [ { @@ -828,12 +778,7 @@ "execution_count": 11, "id": "c071a242", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.196049Z", - "iopub.status.busy": "2023-08-22T07:01:01.195747Z", - "iopub.status.idle": "2023-08-22T07:01:01.198277Z", - "shell.execute_reply": "2023-08-22T07:01:01.197846Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -857,12 +802,7 @@ "execution_count": 12, "id": "c9bcab06", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.200305Z", - "iopub.status.busy": "2023-08-22T07:01:01.200177Z", - "iopub.status.idle": "2023-08-22T07:01:01.202888Z", - "shell.execute_reply": "2023-08-22T07:01:01.202483Z" - } + "execution": {} }, "outputs": [ { @@ -900,12 +840,7 @@ "execution_count": 13, "id": "7375ab13", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.204941Z", - "iopub.status.busy": "2023-08-22T07:01:01.204821Z", - "iopub.status.idle": "2023-08-22T07:01:01.305551Z", - "shell.execute_reply": "2023-08-22T07:01:01.304502Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -950,12 +885,7 @@ "execution_count": 14, "id": "4c1988de", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.308684Z", - "iopub.status.busy": "2023-08-22T07:01:01.308547Z", - "iopub.status.idle": "2023-08-22T07:01:01.398261Z", - "shell.execute_reply": "2023-08-22T07:01:01.397687Z" - } + "execution": {} }, "outputs": [ { @@ -997,12 +927,7 @@ "execution_count": 15, "id": "965c6320", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.400814Z", - "iopub.status.busy": "2023-08-22T07:01:01.400674Z", - "iopub.status.idle": "2023-08-22T07:01:01.404022Z", - "shell.execute_reply": "2023-08-22T07:01:01.403489Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1035,12 +960,7 @@ "execution_count": 16, "id": "cd5e1663", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.405922Z", - "iopub.status.busy": "2023-08-22T07:01:01.405818Z", - "iopub.status.idle": "2023-08-22T07:01:01.409000Z", - "shell.execute_reply": "2023-08-22T07:01:01.408413Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1073,12 +993,7 @@ "execution_count": 17, "id": "e711d1be", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.410782Z", - "iopub.status.busy": "2023-08-22T07:01:01.410676Z", - "iopub.status.idle": "2023-08-22T07:01:01.413542Z", - "shell.execute_reply": "2023-08-22T07:01:01.413036Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1114,12 +1029,7 @@ "execution_count": 18, "id": "e122eb41", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.415587Z", - "iopub.status.busy": "2023-08-22T07:01:01.415405Z", - "iopub.status.idle": "2023-08-22T07:01:01.537691Z", - "shell.execute_reply": "2023-08-22T07:01:01.537297Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1150,12 +1060,7 @@ "execution_count": 19, "id": "bef47d90", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.540279Z", - "iopub.status.busy": "2023-08-22T07:01:01.539986Z", - "iopub.status.idle": "2023-08-22T07:01:01.632911Z", - "shell.execute_reply": "2023-08-22T07:01:01.632328Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1198,12 +1103,7 @@ "execution_count": 20, "id": "f3300d9e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.635302Z", - "iopub.status.busy": "2023-08-22T07:01:01.634975Z", - "iopub.status.idle": "2023-08-22T07:01:01.638324Z", - "shell.execute_reply": "2023-08-22T07:01:01.637831Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1247,12 +1147,7 @@ "execution_count": 21, "id": "20e6009f", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.640494Z", - "iopub.status.busy": "2023-08-22T07:01:01.640389Z", - "iopub.status.idle": "2023-08-22T07:01:01.643841Z", - "shell.execute_reply": "2023-08-22T07:01:01.643438Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1288,12 +1183,7 @@ "execution_count": 22, "id": "7d9937cf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.646567Z", - "iopub.status.busy": "2023-08-22T07:01:01.646396Z", - "iopub.status.idle": "2023-08-22T07:01:01.649238Z", - "shell.execute_reply": "2023-08-22T07:01:01.648799Z" - } + "execution": {} }, "outputs": [ { @@ -1319,12 +1209,7 @@ "execution_count": 23, "id": "e58f83a3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.651066Z", - "iopub.status.busy": "2023-08-22T07:01:01.650908Z", - "iopub.status.idle": "2023-08-22T07:01:01.653787Z", - "shell.execute_reply": "2023-08-22T07:01:01.653263Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1359,12 +1244,7 @@ "execution_count": 24, "id": "5c4f9b34", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.656687Z", - "iopub.status.busy": "2023-08-22T07:01:01.656390Z", - "iopub.status.idle": "2023-08-22T07:01:01.659789Z", - "shell.execute_reply": "2023-08-22T07:01:01.659269Z" - } + "execution": {} }, "outputs": [ { @@ -1389,12 +1269,7 @@ "execution_count": 25, "id": "0ce84f1b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.661783Z", - "iopub.status.busy": "2023-08-22T07:01:01.661671Z", - "iopub.status.idle": "2023-08-22T07:01:01.664431Z", - "shell.execute_reply": "2023-08-22T07:01:01.664078Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1434,12 +1309,7 @@ "execution_count": 26, "id": "cd8b4bed", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.666675Z", - "iopub.status.busy": "2023-08-22T07:01:01.666540Z", - "iopub.status.idle": "2023-08-22T07:01:01.669352Z", - "shell.execute_reply": "2023-08-22T07:01:01.668883Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1474,12 +1344,7 @@ "execution_count": 27, "id": "7f3bc8f9", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.671494Z", - "iopub.status.busy": "2023-08-22T07:01:01.671325Z", - "iopub.status.idle": "2023-08-22T07:01:01.673688Z", - "shell.execute_reply": "2023-08-22T07:01:01.673299Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1507,12 +1372,7 @@ "execution_count": 28, "id": "771a46a7", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.675631Z", - "iopub.status.busy": "2023-08-22T07:01:01.675424Z", - "iopub.status.idle": "2023-08-22T07:01:01.678059Z", - "shell.execute_reply": "2023-08-22T07:01:01.677393Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1535,12 +1395,7 @@ "execution_count": 29, "id": "1416f048", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.680424Z", - "iopub.status.busy": "2023-08-22T07:01:01.680179Z", - "iopub.status.idle": "2023-08-22T07:01:01.682713Z", - "shell.execute_reply": "2023-08-22T07:01:01.682431Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1575,12 +1430,7 @@ "execution_count": 30, "id": "9eff34aa", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.684370Z", - "iopub.status.busy": "2023-08-22T07:01:01.684237Z", - "iopub.status.idle": "2023-08-22T07:01:01.688888Z", - "shell.execute_reply": "2023-08-22T07:01:01.688576Z" - } + "execution": {} }, "outputs": [ { @@ -1630,12 +1480,7 @@ "execution_count": 31, "id": "7815b948", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.690940Z", - "iopub.status.busy": "2023-08-22T07:01:01.690758Z", - "iopub.status.idle": "2023-08-22T07:01:01.694473Z", - "shell.execute_reply": "2023-08-22T07:01:01.694113Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1688,12 +1533,7 @@ "execution_count": 32, "id": "f63cf4b8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.697098Z", - "iopub.status.busy": "2023-08-22T07:01:01.696989Z", - "iopub.status.idle": "2023-08-22T07:01:01.699944Z", - "shell.execute_reply": "2023-08-22T07:01:01.699302Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1717,12 +1557,7 @@ "execution_count": 33, "id": "f973c2d4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:01.701419Z", - "iopub.status.busy": "2023-08-22T07:01:01.701312Z", - "iopub.status.idle": "2023-08-22T07:01:02.037824Z", - "shell.execute_reply": "2023-08-22T07:01:02.037051Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -1745,12 +1580,7 @@ "execution_count": 34, "id": "e980954b", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.040614Z", - "iopub.status.busy": "2023-08-22T07:01:02.040437Z", - "iopub.status.idle": "2023-08-22T07:01:02.044054Z", - "shell.execute_reply": "2023-08-22T07:01:02.043563Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1787,12 +1617,7 @@ "execution_count": 35, "id": "a94d452c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.046357Z", - "iopub.status.busy": "2023-08-22T07:01:02.046208Z", - "iopub.status.idle": "2023-08-22T07:01:02.149266Z", - "shell.execute_reply": "2023-08-22T07:01:02.148849Z" - } + "execution": {} }, "outputs": [ { @@ -1834,12 +1659,7 @@ "execution_count": 36, "id": "94ff654c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.151742Z", - "iopub.status.busy": "2023-08-22T07:01:02.151594Z", - "iopub.status.idle": "2023-08-22T07:01:02.271388Z", - "shell.execute_reply": "2023-08-22T07:01:02.270932Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1883,12 +1703,7 @@ "execution_count": 37, "id": "b3561317", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.274358Z", - "iopub.status.busy": "2023-08-22T07:01:02.273928Z", - "iopub.status.idle": "2023-08-22T07:01:02.290763Z", - "shell.execute_reply": "2023-08-22T07:01:02.290332Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1956,12 +1771,7 @@ "execution_count": 38, "id": "be9e4f9c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.293285Z", - "iopub.status.busy": "2023-08-22T07:01:02.293108Z", - "iopub.status.idle": "2023-08-22T07:01:02.297337Z", - "shell.execute_reply": "2023-08-22T07:01:02.296824Z" - } + "execution": {} }, "outputs": [ { @@ -2003,12 +1813,7 @@ "execution_count": 39, "id": "f80d8563", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.299662Z", - "iopub.status.busy": "2023-08-22T07:01:02.299457Z", - "iopub.status.idle": "2023-08-22T07:01:02.303357Z", - "shell.execute_reply": "2023-08-22T07:01:02.302779Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2036,12 +1841,7 @@ "execution_count": 40, "id": "83e7ccf8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.305759Z", - "iopub.status.busy": "2023-08-22T07:01:02.305577Z", - "iopub.status.idle": "2023-08-22T07:01:02.310695Z", - "shell.execute_reply": "2023-08-22T07:01:02.310382Z" - } + "execution": {} }, "outputs": [ { @@ -2096,12 +1896,7 @@ "execution_count": 41, "id": "56ee8cbf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.312692Z", - "iopub.status.busy": "2023-08-22T07:01:02.312323Z", - "iopub.status.idle": "2023-08-22T07:01:02.538970Z", - "shell.execute_reply": "2023-08-22T07:01:02.538582Z" - } + "execution": {} }, "outputs": [ { @@ -2141,12 +1936,7 @@ "execution_count": 42, "id": "10f4fc97", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.541376Z", - "iopub.status.busy": "2023-08-22T07:01:02.541208Z", - "iopub.status.idle": "2023-08-22T07:01:02.758968Z", - "shell.execute_reply": "2023-08-22T07:01:02.758508Z" - } + "execution": {} }, "outputs": [ { @@ -2183,12 +1973,7 @@ "execution_count": 43, "id": "3aed342a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.761325Z", - "iopub.status.busy": "2023-08-22T07:01:02.761152Z", - "iopub.status.idle": "2023-08-22T07:01:02.765136Z", - "shell.execute_reply": "2023-08-22T07:01:02.764674Z" - } + "execution": {} }, "outputs": [ { @@ -2225,12 +2010,7 @@ "execution_count": 44, "id": "49c6db0c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.767317Z", - "iopub.status.busy": "2023-08-22T07:01:02.767155Z", - "iopub.status.idle": "2023-08-22T07:01:02.771483Z", - "shell.execute_reply": "2023-08-22T07:01:02.771020Z" - } + "execution": {} }, "outputs": [ { @@ -2311,12 +2091,7 @@ "execution_count": 45, "id": "0ef4b7ec", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:02.773805Z", - "iopub.status.busy": "2023-08-22T07:01:02.773647Z", - "iopub.status.idle": "2023-08-22T07:01:03.002349Z", - "shell.execute_reply": "2023-08-22T07:01:03.001396Z" - } + "execution": {} }, "outputs": [ { @@ -2366,12 +2141,7 @@ "execution_count": 46, "id": "51761ef3", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.007714Z", - "iopub.status.busy": "2023-08-22T07:01:03.007387Z", - "iopub.status.idle": "2023-08-22T07:01:03.189542Z", - "shell.execute_reply": "2023-08-22T07:01:03.189234Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2418,12 +2188,7 @@ "execution_count": 47, "id": "3dbe7baf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.191496Z", - "iopub.status.busy": "2023-08-22T07:01:03.191325Z", - "iopub.status.idle": "2023-08-22T07:01:03.200433Z", - "shell.execute_reply": "2023-08-22T07:01:03.199967Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2451,12 +2216,7 @@ "execution_count": 48, "id": "8f4e9db0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.206306Z", - "iopub.status.busy": "2023-08-22T07:01:03.206039Z", - "iopub.status.idle": "2023-08-22T07:01:03.211349Z", - "shell.execute_reply": "2023-08-22T07:01:03.210526Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2488,12 +2248,7 @@ "execution_count": 49, "id": "6373db4d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.215280Z", - "iopub.status.busy": "2023-08-22T07:01:03.215107Z", - "iopub.status.idle": "2023-08-22T07:01:03.220745Z", - "shell.execute_reply": "2023-08-22T07:01:03.220268Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -2544,12 +2299,7 @@ "execution_count": 50, "id": "9f185f83", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.224010Z", - "iopub.status.busy": "2023-08-22T07:01:03.223805Z", - "iopub.status.idle": "2023-08-22T07:01:03.756454Z", - "shell.execute_reply": "2023-08-22T07:01:03.755090Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2576,12 +2326,7 @@ "execution_count": 51, "id": "b044b197", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:03.760531Z", - "iopub.status.busy": "2023-08-22T07:01:03.759964Z", - "iopub.status.idle": "2023-08-22T07:01:04.106389Z", - "shell.execute_reply": "2023-08-22T07:01:04.105861Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2646,12 +2391,7 @@ "execution_count": 52, "id": "b2450bb2", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:04.108911Z", - "iopub.status.busy": "2023-08-22T07:01:04.108756Z", - "iopub.status.idle": "2023-08-22T07:01:04.295709Z", - "shell.execute_reply": "2023-08-22T07:01:04.295142Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2719,12 +2459,7 @@ "execution_count": 53, "id": "f3f85512", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:04.298506Z", - "iopub.status.busy": "2023-08-22T07:01:04.298369Z", - "iopub.status.idle": "2023-08-22T07:01:04.301034Z", - "shell.execute_reply": "2023-08-22T07:01:04.300583Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -2757,12 +2492,7 @@ "execution_count": 54, "id": "5cbeeb19", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:04.303691Z", - "iopub.status.busy": "2023-08-22T07:01:04.303453Z", - "iopub.status.idle": "2023-08-22T07:01:05.507632Z", - "shell.execute_reply": "2023-08-22T07:01:05.507177Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -2810,12 +2540,7 @@ "execution_count": 55, "id": "1eb3c92e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:05.509745Z", - "iopub.status.busy": "2023-08-22T07:01:05.509610Z", - "iopub.status.idle": "2023-08-22T07:01:05.520162Z", - "shell.execute_reply": "2023-08-22T07:01:05.519790Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -3004,12 +2729,7 @@ "execution_count": 56, "id": "e3c2841c", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:05.522420Z", - "iopub.status.busy": "2023-08-22T07:01:05.522186Z", - "iopub.status.idle": "2023-08-22T07:01:05.914218Z", - "shell.execute_reply": "2023-08-22T07:01:05.913893Z" - } + "execution": {} }, "outputs": [ { @@ -3053,12 +2773,7 @@ "execution_count": 57, "id": "94dfe5a0", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:05.915828Z", - "iopub.status.busy": "2023-08-22T07:01:05.915706Z", - "iopub.status.idle": "2023-08-22T07:01:06.390699Z", - "shell.execute_reply": "2023-08-22T07:01:06.390367Z" - } + "execution": {} }, "outputs": [ { @@ -3178,12 +2893,7 @@ "execution_count": 58, "id": "abd51940", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:06.404283Z", - "iopub.status.busy": "2023-08-22T07:01:06.404155Z", - "iopub.status.idle": "2023-08-22T07:01:06.897582Z", - "shell.execute_reply": "2023-08-22T07:01:06.897221Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ diff --git a/Ch13-multiple-lab.ipynb b/Ch13-multiple-lab.ipynb index 0e8886d..9ed586b 100644 --- a/Ch13-multiple-lab.ipynb +++ b/Ch13-multiple-lab.ipynb @@ -25,12 +25,7 @@ "execution_count": 1, "id": "7cc4fbeb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:10.471948Z", - "iopub.status.busy": "2023-08-22T07:01:10.471668Z", - "iopub.status.idle": "2023-08-22T07:01:11.350943Z", - "shell.execute_reply": "2023-08-22T07:01:11.350643Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -55,12 +50,7 @@ "execution_count": 2, "id": "595efc18", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.352807Z", - "iopub.status.busy": "2023-08-22T07:01:11.352663Z", - "iopub.status.idle": "2023-08-22T07:01:11.354553Z", - "shell.execute_reply": "2023-08-22T07:01:11.354339Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [], @@ -94,12 +84,7 @@ "execution_count": 3, "id": "985d1d6e", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.355962Z", - "iopub.status.busy": "2023-08-22T07:01:11.355865Z", - "iopub.status.idle": "2023-08-22T07:01:11.357829Z", - "shell.execute_reply": "2023-08-22T07:01:11.357602Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -124,12 +109,7 @@ "execution_count": 4, "id": "753d612a", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.359164Z", - "iopub.status.busy": "2023-08-22T07:01:11.359072Z", - "iopub.status.idle": "2023-08-22T07:01:11.362315Z", - "shell.execute_reply": "2023-08-22T07:01:11.362065Z" - } + "execution": {} }, "outputs": [ { @@ -171,12 +151,7 @@ "execution_count": 5, "id": "facd6569", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.363675Z", - "iopub.status.busy": "2023-08-22T07:01:11.363598Z", - "iopub.status.idle": "2023-08-22T07:01:11.382551Z", - "shell.execute_reply": "2023-08-22T07:01:11.382313Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [], @@ -207,12 +182,7 @@ "execution_count": 6, "id": "e89ef3eb", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.384012Z", - "iopub.status.busy": "2023-08-22T07:01:11.383929Z", - "iopub.status.idle": "2023-08-22T07:01:11.390854Z", - "shell.execute_reply": "2023-08-22T07:01:11.390622Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -308,12 +278,7 @@ "execution_count": 7, "id": "ae184aaf", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.392278Z", - "iopub.status.busy": "2023-08-22T07:01:11.392193Z", - "iopub.status.idle": "2023-08-22T07:01:11.414541Z", - "shell.execute_reply": "2023-08-22T07:01:11.414284Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -420,12 +385,7 @@ "execution_count": 8, "id": "0295fe68", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.416013Z", - "iopub.status.busy": "2023-08-22T07:01:11.415934Z", - "iopub.status.idle": "2023-08-22T07:01:11.601337Z", - "shell.execute_reply": "2023-08-22T07:01:11.601050Z" - } + "execution": {} }, "outputs": [ { @@ -476,12 +436,7 @@ "execution_count": 9, "id": "406e59a8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.603043Z", - "iopub.status.busy": "2023-08-22T07:01:11.602922Z", - "iopub.status.idle": "2023-08-22T07:01:11.637677Z", - "shell.execute_reply": "2023-08-22T07:01:11.637393Z" - } + "execution": {} }, "outputs": [ { @@ -544,12 +499,7 @@ "execution_count": 10, "id": "d4f6a247", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.639421Z", - "iopub.status.busy": "2023-08-22T07:01:11.639308Z", - "iopub.status.idle": "2023-08-22T07:01:11.641724Z", - "shell.execute_reply": "2023-08-22T07:01:11.641464Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -583,12 +533,7 @@ "execution_count": 11, "id": "01a29d71", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.643173Z", - "iopub.status.busy": "2023-08-22T07:01:11.643074Z", - "iopub.status.idle": "2023-08-22T07:01:11.645284Z", - "shell.execute_reply": "2023-08-22T07:01:11.645035Z" - } + "execution": {} }, "outputs": [ { @@ -625,12 +570,7 @@ "execution_count": 12, "id": "95454eb4", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.646828Z", - "iopub.status.busy": "2023-08-22T07:01:11.646723Z", - "iopub.status.idle": "2023-08-22T07:01:11.681328Z", - "shell.execute_reply": "2023-08-22T07:01:11.681006Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -665,12 +605,7 @@ "execution_count": 13, "id": "1f1ac764", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.683039Z", - "iopub.status.busy": "2023-08-22T07:01:11.682931Z", - "iopub.status.idle": "2023-08-22T07:01:11.685981Z", - "shell.execute_reply": "2023-08-22T07:01:11.685726Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -709,12 +644,7 @@ "execution_count": 14, "id": "298d975d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.687516Z", - "iopub.status.busy": "2023-08-22T07:01:11.687436Z", - "iopub.status.idle": "2023-08-22T07:01:11.690137Z", - "shell.execute_reply": "2023-08-22T07:01:11.689879Z" - } + "execution": {} }, "outputs": [ { @@ -761,12 +691,7 @@ "execution_count": 15, "id": "be117713", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:11.691729Z", - "iopub.status.busy": "2023-08-22T07:01:11.691643Z", - "iopub.status.idle": "2023-08-22T07:01:12.083351Z", - "shell.execute_reply": "2023-08-22T07:01:12.083006Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -821,12 +746,7 @@ "execution_count": 16, "id": "537c4ea8", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.085028Z", - "iopub.status.busy": "2023-08-22T07:01:12.084925Z", - "iopub.status.idle": "2023-08-22T07:01:12.158318Z", - "shell.execute_reply": "2023-08-22T07:01:12.158031Z" - } + "execution": {} }, "outputs": [ { @@ -862,12 +782,7 @@ "execution_count": 17, "id": "2c88ec87", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.160012Z", - "iopub.status.busy": "2023-08-22T07:01:12.159900Z", - "iopub.status.idle": "2023-08-22T07:01:12.510866Z", - "shell.execute_reply": "2023-08-22T07:01:12.510573Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -891,12 +806,7 @@ "execution_count": 18, "id": "b6d56819", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.512518Z", - "iopub.status.busy": "2023-08-22T07:01:12.512432Z", - "iopub.status.idle": "2023-08-22T07:01:12.514982Z", - "shell.execute_reply": "2023-08-22T07:01:12.514769Z" - } + "execution": {} }, "outputs": [ { @@ -936,12 +846,7 @@ "execution_count": 19, "id": "b00da3a1", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.516361Z", - "iopub.status.busy": "2023-08-22T07:01:12.516283Z", - "iopub.status.idle": "2023-08-22T07:01:12.518438Z", - "shell.execute_reply": "2023-08-22T07:01:12.518191Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -980,12 +885,7 @@ "execution_count": 20, "id": "1c230117", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.519863Z", - "iopub.status.busy": "2023-08-22T07:01:12.519780Z", - "iopub.status.idle": "2023-08-22T07:01:12.521828Z", - "shell.execute_reply": "2023-08-22T07:01:12.521610Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1030,12 +930,7 @@ "execution_count": 21, "id": "62289650", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.523116Z", - "iopub.status.busy": "2023-08-22T07:01:12.523043Z", - "iopub.status.idle": "2023-08-22T07:01:12.525236Z", - "shell.execute_reply": "2023-08-22T07:01:12.525021Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1064,12 +959,7 @@ "execution_count": 22, "id": "18b3c0ed", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.526613Z", - "iopub.status.busy": "2023-08-22T07:01:12.526539Z", - "iopub.status.idle": "2023-08-22T07:01:12.740275Z", - "shell.execute_reply": "2023-08-22T07:01:12.739986Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1114,12 +1004,7 @@ "execution_count": 23, "id": "eb79e606", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.742002Z", - "iopub.status.busy": "2023-08-22T07:01:12.741882Z", - "iopub.status.idle": "2023-08-22T07:01:12.844984Z", - "shell.execute_reply": "2023-08-22T07:01:12.844724Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1165,12 +1050,7 @@ "execution_count": 24, "id": "1afbcf47", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.846468Z", - "iopub.status.busy": "2023-08-22T07:01:12.846384Z", - "iopub.status.idle": "2023-08-22T07:01:12.849714Z", - "shell.execute_reply": "2023-08-22T07:01:12.849454Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1218,12 +1098,7 @@ "execution_count": 25, "id": "f73f4c6d", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:12.851134Z", - "iopub.status.busy": "2023-08-22T07:01:12.851053Z", - "iopub.status.idle": "2023-08-22T07:01:14.848052Z", - "shell.execute_reply": "2023-08-22T07:01:14.847788Z" - }, + "execution": {}, "lines_to_next_cell": 2 }, "outputs": [ @@ -1269,12 +1144,7 @@ "execution_count": 26, "id": "062daf19", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:14.849560Z", - "iopub.status.busy": "2023-08-22T07:01:14.849477Z", - "iopub.status.idle": "2023-08-22T07:01:14.990286Z", - "shell.execute_reply": "2023-08-22T07:01:14.989980Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ @@ -1329,12 +1199,7 @@ "execution_count": 27, "id": "6d14fcad", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:01:14.992440Z", - "iopub.status.busy": "2023-08-22T07:01:14.992326Z", - "iopub.status.idle": "2023-08-22T07:04:36.802040Z", - "shell.execute_reply": "2023-08-22T07:04:36.801740Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1375,12 +1240,7 @@ "execution_count": 28, "id": "8f0ec909", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:04:36.803805Z", - "iopub.status.busy": "2023-08-22T07:04:36.803712Z", - "iopub.status.idle": "2023-08-22T07:04:36.913862Z", - "shell.execute_reply": "2023-08-22T07:04:36.913579Z" - } + "execution": {} }, "outputs": [], "source": [ @@ -1416,12 +1276,7 @@ "execution_count": 29, "id": "f11339e5", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:04:36.915631Z", - "iopub.status.busy": "2023-08-22T07:04:36.915542Z", - "iopub.status.idle": "2023-08-22T07:04:36.918059Z", - "shell.execute_reply": "2023-08-22T07:04:36.917797Z" - } + "execution": {} }, "outputs": [ { @@ -1471,12 +1326,7 @@ "execution_count": 30, "id": "d2600773", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:04:36.919428Z", - "iopub.status.busy": "2023-08-22T07:04:36.919345Z", - "iopub.status.idle": "2023-08-22T07:04:36.921649Z", - "shell.execute_reply": "2023-08-22T07:04:36.921430Z" - } + "execution": {} }, "outputs": [ { @@ -1539,12 +1389,7 @@ "execution_count": 31, "id": "924b7705", "metadata": { - "execution": { - "iopub.execute_input": "2023-08-22T07:04:36.923042Z", - "iopub.status.busy": "2023-08-22T07:04:36.922969Z", - "iopub.status.idle": "2023-08-22T07:04:36.986633Z", - "shell.execute_reply": "2023-08-22T07:04:36.986366Z" - }, + "execution": {}, "lines_to_next_cell": 0 }, "outputs": [ From 58c0fa0b098e908cfe6dfa3971c5a7a5fd07792e Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Tue, 22 Aug 2023 00:20:09 -0700 Subject: [PATCH 16/18] stripped output --- Ch02-statlearn-lab.ipynb | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/Ch02-statlearn-lab.ipynb b/Ch02-statlearn-lab.ipynb index e3cf777..1ad4eec 100644 --- a/Ch02-statlearn-lab.ipynb +++ b/Ch02-statlearn-lab.ipynb @@ -1107,16 +1107,16 @@ { "data": { "text/plain": [ - "array([-0.83511556, 0.43461482, -1.3810022 , -0.64162363, -0.86270682,\n", - " 0.6660104 , 0.17543353, 0.68220139, -0.20392851, -1.47534629,\n", - " 0.18438201, 1.50157883, 0.47473968, -1.33062844, 1.57614184,\n", - " -0.25596784, 0.66848396, -1.5410464 , 0.25298297, -0.79118181,\n", - " -0.49399731, -1.45139182, 0.71261617, 1.19862796, 0.52772362,\n", - " 0.57343239, -0.01577204, 2.56032683, -0.18936979, -0.09651695,\n", - " -1.74331796, 0.11390389, 0.27595492, 1.2606086 , 0.49282705,\n", - " 0.60603827, 0.24699795, 0.28636264, 0.54683924, 0.45133321,\n", - " 0.92563958, 1.20847512, 0.40993092, 0.01951345, 0.27271415,\n", - " 0.94231124, 0.47471813, 2.12851232, 0.128139 , -0.56681371])" + "array([ 0.37697843, -0.1714562 , -0.07387699, 0.88289542, 0.42403407,\n", + " -1.25834631, -0.56281024, 0.96180301, -0.81464709, -0.18611985,\n", + " 1.55473926, 0.90549152, -1.36748952, -0.04172983, 1.33669081,\n", + " 0.4353957 , 1.14591958, 0.0858525 , 0.72945623, -0.57270057,\n", + " 1.30960282, 0.10564808, 0.32318427, 0.73300473, -1.16608308,\n", + " -1.76114586, 0.69877186, -0.30159982, -1.16892964, 0.49920879,\n", + " -0.04008576, 0.99724065, 0.41002051, 0.83231347, -0.42308487,\n", + " -2.17126985, 1.84862662, 0.40182298, -0.03440717, 0.05143581,\n", + " 2.01972242, -0.41715298, -1.02696106, 0.80886424, 0.93826288,\n", + " -1.08741113, -1.0994228 , 0.39633369, 0.29890158, -0.51821285])" ] }, "execution_count": 28, @@ -1170,8 +1170,8 @@ { "data": { "text/plain": [ - "array([[1. , 0.65985439],\n", - " [0.65985439, 1. ]])" + "array([[1. , 0.65421904],\n", + " [0.65421904, 1. ]])" ] }, "execution_count": 30, @@ -1207,8 +1207,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "[ 6.33922704 -0.66068102]\n", - "[-6.96104352 18.61644142]\n" + "[-5.49291495 2.33352471]\n", + "[8.45050027 0.00908238]\n" ] } ], @@ -1677,7 +1677,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 43, @@ -7711,6 +7711,11 @@ "formats": "Rmd,ipynb", "main_language": "python" }, + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, "language_info": { "codemirror_mode": { "name": "ipython", From 8a59c868d28d5c252d3417b3cf108c88fad5b6c1 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Tue, 22 Aug 2023 00:21:22 -0700 Subject: [PATCH 17/18] Ch02 Rmd --- Ch02-statlearn-lab.Rmd | 1 - 1 file changed, 1 deletion(-) diff --git a/Ch02-statlearn-lab.Rmd b/Ch02-statlearn-lab.Rmd index 67c88ef..65fb279 100644 --- a/Ch02-statlearn-lab.Rmd +++ b/Ch02-statlearn-lab.Rmd @@ -3,7 +3,6 @@ jupyter: jupytext: cell_metadata_filter: -all formats: Rmd,ipynb - main_language: python text_representation: extension: .Rmd format_name: rmarkdown From f4ecee2e614dcd34c13e573568b02dcfc5da99b4 Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Tue, 22 Aug 2023 00:25:12 -0700 Subject: [PATCH 18/18] updating README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e3d1f97..515e560 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ISLP_labs -[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/intro-stat-learning/ISLP_labs/v2.1) +[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/intro-stat-learning/ISLP_labs/v2.1.2) Up-to-date version of labs for ISLP. @@ -12,7 +12,7 @@ intent is that building a conda environment with To install the current version of the requirements run ``` -pip install -r https://raw.githubusercontent.com/intro-stat-learning/ISLP_labs/v2.1/requirements.txt; +pip install -r https://raw.githubusercontent.com/intro-stat-learning/ISLP_labs/v2.1.2/requirements.txt; ``` The labs can now be run from this directory: